2018-12-14 00:47:51 +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\PostgreSQL;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @group slow
|
2018-12-14 00:56:07 +00:00
|
|
|
* @covers \JKingWeb\Arsse\Db\PostgreSQL\Statement<extended>
|
2019-01-15 13:58:11 +00:00
|
|
|
* @covers \JKingWeb\Arsse\Db\PostgreSQL\Dispatch<extended>
|
|
|
|
* @covers \JKingWeb\Arsse\Db\SQLState */
|
2018-12-14 00:47:51 +00:00
|
|
|
class TestStatement extends \JKingWeb\Arsse\TestCase\Db\BaseStatement {
|
2019-01-12 17:43:06 +00:00
|
|
|
use \JKingWeb\Arsse\TestCase\DatabaseDrivers\PostgreSQL;
|
2018-12-14 00:47:51 +00:00
|
|
|
|
|
|
|
protected function makeStatement(string $q, array $types = []): array {
|
|
|
|
return [static::$interface, $q, $types];
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function decorateTypeSyntax(string $value, string $type): string {
|
|
|
|
switch ($type) {
|
|
|
|
case "float":
|
2019-01-11 15:38:06 +00:00
|
|
|
return (substr($value, -2) === ".0") ? "'".substr($value, 0, strlen($value) - 2)."'" : "'$value'";
|
2018-12-14 00:47:51 +00:00
|
|
|
case "string":
|
|
|
|
if (preg_match("<^char\((\d+)\)$>", $value, $match)) {
|
|
|
|
return "U&'\\+".str_pad(dechex((int) $match[1]), 6, "0", \STR_PAD_LEFT)."'";
|
|
|
|
}
|
|
|
|
return $value;
|
|
|
|
default:
|
|
|
|
return $value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function tearDownAfterClass() {
|
|
|
|
if (static::$interface) {
|
2019-01-12 17:43:06 +00:00
|
|
|
static::dbRaze(static::$interface);
|
2018-12-14 00:47:51 +00:00
|
|
|
@pg_close(static::$interface);
|
|
|
|
static::$interface = null;
|
|
|
|
}
|
|
|
|
parent::tearDownAfterClass();
|
|
|
|
}
|
|
|
|
}
|