2018-11-23 00:55:54 +00:00
|
|
|
<?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\TestCase\Db\SQLite3;
|
|
|
|
|
|
|
|
use JKingWeb\Arsse\Test\DatabaseInformation;
|
|
|
|
|
2018-12-05 22:28:11 +00:00
|
|
|
/**
|
|
|
|
* @covers \JKingWeb\Arsse\Db\SQLite3\Result<extended>
|
2018-11-23 00:55:54 +00:00
|
|
|
*/
|
|
|
|
class TestResult extends \JKingWeb\Arsse\TestCase\Db\BaseResult {
|
2019-01-12 17:43:06 +00:00
|
|
|
use \JKingWeb\Arsse\TestCase\DatabaseDrivers\SQLite3;
|
|
|
|
|
2018-12-06 22:46:00 +00:00
|
|
|
protected static $createMeta = "CREATE TABLE arsse_meta(key text primary key not null, value text) without rowid";
|
|
|
|
protected static $createTest = "CREATE TABLE arsse_test(id integer primary key)";
|
2018-11-23 00:55:54 +00:00
|
|
|
|
2018-11-27 19:26:33 +00:00
|
|
|
public static function tearDownAfterClass() {
|
2018-12-10 18:17:04 +00:00
|
|
|
static::$interface->close();
|
|
|
|
static::$interface = null;
|
2018-11-27 19:26:33 +00:00
|
|
|
parent::tearDownAfterClass();
|
2018-11-23 00:55:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function makeResult(string $q): array {
|
2018-11-27 19:26:33 +00:00
|
|
|
$set = static::$interface->query($q);
|
|
|
|
$rows = static::$interface->changes();
|
|
|
|
$id = static::$interface->lastInsertRowID();
|
2018-11-23 00:55:54 +00:00
|
|
|
return [$set, [$rows, $id]];
|
|
|
|
}
|
|
|
|
}
|