mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2024-12-23 17:12:41 +00:00
107 lines
3.9 KiB
PHP
107 lines
3.9 KiB
PHP
<?php
|
|
/** @license MIT
|
|
* Copyright 2017 J. King, Dustin Wilson et al.
|
|
* See LICENSE and AUTHORS files for details */
|
|
|
|
declare(strict_types=1);
|
|
namespace JKingWeb\Arsse;
|
|
|
|
use JKingWeb\Arsse\Db\Statement;
|
|
|
|
/**
|
|
* @covers \JKingWeb\Arsse\Db\SQLite3\Statement<extended>
|
|
* @covers \JKingWeb\Arsse\Db\SQLite3\ExceptionBuilder */
|
|
class TestDbStatementSQLite3 extends Test\AbstractTest {
|
|
use Test\Db\BindingTests;
|
|
|
|
protected $c;
|
|
protected static $imp = Db\SQLite3\Statement::class;
|
|
|
|
public function setUp() {
|
|
$this->clearData();
|
|
if (!extension_loaded("sqlite3")) {
|
|
$this->markTestSkipped("SQLite extension not loaded");
|
|
}
|
|
$c = new \SQLite3(":memory:");
|
|
$c->enableExceptions(true);
|
|
$this->c = $c;
|
|
}
|
|
|
|
public function tearDown() {
|
|
$this->c->close();
|
|
unset($this->c);
|
|
}
|
|
|
|
protected function checkBinding($input, array $expectations, bool $strict = false) {
|
|
$nativeStatement = $this->c->prepare("SELECT ? as value");
|
|
$s = new self::$imp($this->c, $nativeStatement);
|
|
$types = array_unique(Statement::TYPES);
|
|
foreach ($types as $type) {
|
|
$s->rebindArray([$strict ? "strict $type" : $type]);
|
|
$val = $s->runArray([$input])->getRow()['value'];
|
|
$this->assertSame($expectations[$type], $val, "Binding from type $type failed comparison.");
|
|
$s->rebind(...[$strict ? "strict $type" : $type]);
|
|
$val = $s->run(...[$input])->getRow()['value'];
|
|
$this->assertSame($expectations[$type], $val, "Binding from type $type failed comparison.");
|
|
}
|
|
}
|
|
|
|
public function testConstructStatement() {
|
|
$nativeStatement = $this->c->prepare("SELECT ? as value");
|
|
$this->assertInstanceOf(Statement::class, new Db\SQLite3\Statement($this->c, $nativeStatement));
|
|
}
|
|
|
|
public function testBindMissingValue() {
|
|
$nativeStatement = $this->c->prepare("SELECT ? as value");
|
|
$s = new self::$imp($this->c, $nativeStatement);
|
|
$val = $s->runArray()->getRow()['value'];
|
|
$this->assertSame(null, $val);
|
|
}
|
|
|
|
public function testBindMultipleValues() {
|
|
$exp = [
|
|
'one' => 1,
|
|
'two' => 2,
|
|
];
|
|
$nativeStatement = $this->c->prepare("SELECT ? as one, ? as two");
|
|
$s = new self::$imp($this->c, $nativeStatement, ["int", "int"]);
|
|
$val = $s->runArray([1,2])->getRow();
|
|
$this->assertSame($exp, $val);
|
|
}
|
|
|
|
public function testBindRecursively() {
|
|
$exp = [
|
|
'one' => 1,
|
|
'two' => 2,
|
|
'three' => 3,
|
|
'four' => 4,
|
|
];
|
|
$nativeStatement = $this->c->prepare("SELECT ? as one, ? as two, ? as three, ? as four");
|
|
$s = new self::$imp($this->c, $nativeStatement, ["int", ["int", "int"], "int"]);
|
|
$val = $s->runArray([1, [2, 3], 4])->getRow();
|
|
$this->assertSame($exp, $val);
|
|
}
|
|
|
|
public function testBindWithoutType() {
|
|
$nativeStatement = $this->c->prepare("SELECT ? as value");
|
|
$this->assertException("paramTypeMissing", "Db");
|
|
$s = new self::$imp($this->c, $nativeStatement, []);
|
|
$s->runArray([1]);
|
|
}
|
|
|
|
public function testViolateConstraint() {
|
|
$this->c->exec("CREATE TABLE test(id integer not null)");
|
|
$nativeStatement = $this->c->prepare("INSERT INTO test(id) values(?)");
|
|
$s = new self::$imp($this->c, $nativeStatement, ["int"]);
|
|
$this->assertException("constraintViolation", "Db", "ExceptionInput");
|
|
$s->runArray([null]);
|
|
}
|
|
|
|
public function testMismatchTypes() {
|
|
$this->c->exec("CREATE TABLE test(id integer primary key)");
|
|
$nativeStatement = $this->c->prepare("INSERT INTO test(id) values(?)");
|
|
$s = new self::$imp($this->c, $nativeStatement, ["str"]);
|
|
$this->assertException("typeViolation", "Db", "ExceptionInput");
|
|
$s->runArray(['ook']);
|
|
}
|
|
}
|