1
1
Fork 0
mirror of https://code.mensbeam.com/MensBeam/Arsse.git synced 2024-12-23 09:02:41 +00:00
Arsse/tests/cases/Db/PostgreSQLPDO/TestResult.php

26 lines
897 B
PHP
Raw Normal View History

2018-12-06 22:46:00 +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\PostgreSQLPDO;
2018-12-06 22:46:00 +00:00
/**
2018-12-10 17:39:09 +00:00
* @group slow
* @covers \JKingWeb\Arsse\Db\PostgreSQL\PDOResult<extended>
2018-12-06 22:46:00 +00:00
*/
class TestResult extends \JKingWeb\Arsse\TestCase\Db\BaseResult {
use \JKingWeb\Arsse\Test\DatabaseDrivers\PostgreSQLPDO;
2018-12-06 22:46:00 +00:00
protected static $createMeta = "CREATE TABLE arsse_meta(key text primary key not null, value text)";
protected static $createTest = "CREATE TABLE arsse_test(id bigserial primary key)";
protected static $selectBlob = "SELECT '\\xDEADBEEF'::bytea as blob";
2020-11-09 21:49:42 +00:00
protected static $selectNullBlob = "SELECT null::bytea as blob";
2018-12-06 22:46:00 +00:00
protected function makeResult(string $q): array {
$set = static::$interface->query($q);
return [static::$interface, $set];
}
}