2017-03-02 00:00:14 +00:00
|
|
|
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace JKingWeb\NewsSync;
|
|
|
|
|
|
|
|
|
|
|
|
class TestDbResultSQLite3 extends \PHPUnit\Framework\TestCase {
|
|
|
|
use Test\Tools;
|
|
|
|
|
|
|
|
protected $c;
|
|
|
|
|
|
|
|
function setUp() {
|
|
|
|
$c = new \SQLite3(":memory:");
|
|
|
|
$c->enableExceptions(true);
|
|
|
|
$this->c = $c;
|
|
|
|
}
|
|
|
|
|
|
|
|
function tearDown() {
|
|
|
|
$this->c->close();
|
|
|
|
unset($this->c);
|
|
|
|
}
|
|
|
|
|
|
|
|
function testConstructResult() {
|
|
|
|
$set = $this->c->query("SELECT 1");
|
2017-03-07 23:01:13 +00:00
|
|
|
$this->assertInstanceOf(Db\Result::class, new Db\SQLite3\Result($set));
|
2017-03-02 00:00:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function testGetChangeCount() {
|
|
|
|
$this->c->query("CREATE TABLE test(col)");
|
|
|
|
$set = $this->c->query("INSERT INTO test(col) values(1)");
|
|
|
|
$rows = $this->c->changes();
|
2017-03-07 23:01:13 +00:00
|
|
|
$this->assertEquals($rows, (new Db\SQLite3\Result($set,$rows))->changes());
|
2017-03-02 00:00:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function testIterateOverResults() {
|
|
|
|
$set = $this->c->query("SELECT 1 as col union select 2 as col union select 3 as col");
|
|
|
|
$rows = [];
|
2017-03-07 23:01:13 +00:00
|
|
|
foreach(new Db\SQLite3\Result($set) as $row) {
|
2017-03-02 00:00:14 +00:00
|
|
|
$rows[] = $row['col'];
|
|
|
|
}
|
|
|
|
$this->assertEquals([1,2,3], $rows);
|
|
|
|
}
|
|
|
|
|
|
|
|
function testIterateOverResultsTwice() {
|
|
|
|
$set = $this->c->query("SELECT 1 as col union select 2 as col union select 3 as col");
|
|
|
|
$rows = [];
|
2017-03-07 23:01:13 +00:00
|
|
|
$test = new Db\SQLite3\Result($set);
|
2017-03-02 00:00:14 +00:00
|
|
|
foreach($test as $row) {
|
|
|
|
$rows[] = $row['col'];
|
|
|
|
}
|
|
|
|
foreach($test as $row) {
|
|
|
|
$rows[] = $row['col'];
|
|
|
|
}
|
|
|
|
$this->assertEquals([1,2,3,1,2,3], $rows);
|
|
|
|
}
|
|
|
|
|
|
|
|
function testGetSingleValues() {
|
|
|
|
$set = $this->c->query("SELECT 1867 as year union select 1970 as year union select 2112 as year");
|
2017-03-07 23:01:13 +00:00
|
|
|
$test = new Db\SQLite3\Result($set);
|
2017-03-06 21:34:38 +00:00
|
|
|
$this->assertEquals(1867, $test->getValue());
|
|
|
|
$this->assertEquals(1970, $test->getValue());
|
|
|
|
$this->assertEquals(2112, $test->getValue());
|
|
|
|
$this->assertSame(null, $test->getValue());
|
|
|
|
}
|
|
|
|
|
|
|
|
function testGetFirstValuesOnly() {
|
|
|
|
$set = $this->c->query("SELECT 1867 as year, 19 as century union select 1970 as year, 20 as century union select 2112 as year, 22 as century");
|
2017-03-07 23:01:13 +00:00
|
|
|
$test = new Db\SQLite3\Result($set);
|
2017-03-06 21:34:38 +00:00
|
|
|
$this->assertEquals(1867, $test->getValue());
|
|
|
|
$this->assertEquals(1970, $test->getValue());
|
|
|
|
$this->assertEquals(2112, $test->getValue());
|
|
|
|
$this->assertSame(null, $test->getValue());
|
2017-03-02 00:00:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function testGetRows() {
|
|
|
|
$set = $this->c->query("SELECT '2112' as album, '2112' as track union select 'Clockwork Angels' as album, 'The Wreckers' as track");
|
|
|
|
$rows = [
|
|
|
|
['album' => '2112', 'track' => '2112'],
|
|
|
|
['album' => 'Clockwork Angels', 'track' => 'The Wreckers'],
|
|
|
|
];
|
2017-03-07 23:01:13 +00:00
|
|
|
$test = new Db\SQLite3\Result($set);
|
2017-03-02 00:00:14 +00:00
|
|
|
$this->assertEquals($rows[0], $test->get());
|
|
|
|
$this->assertEquals($rows[1], $test->get());
|
|
|
|
$this->assertSame(null, $test->get());
|
2017-03-06 21:34:38 +00:00
|
|
|
$this->assertEquals($rows, $test->getAll());
|
2017-03-02 00:00:14 +00:00
|
|
|
}
|
|
|
|
}
|