2018-11-23 04:18:20 +00:00
|
|
|
<?php
|
|
|
|
/** @license MIT
|
|
|
|
* Copyright 2017 J. King, Dustin Wilson et al.
|
|
|
|
* See LICENSE and AUTHORS files for details */
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
2021-04-14 15:17:01 +00:00
|
|
|
|
2018-11-23 04:18:20 +00:00
|
|
|
namespace JKingWeb\Arsse\TestCase\Db\SQLite3PDO;
|
|
|
|
|
2024-12-28 04:39:44 +00:00
|
|
|
use PHPUnit\Framework\Attributes\CoversClass;
|
|
|
|
|
|
|
|
#[CoversClass(\JKingWeb\Arsse\Db\PDOStatement::class)]
|
2018-11-23 04:18:20 +00:00
|
|
|
class TestStatement extends \JKingWeb\Arsse\TestCase\Db\BaseStatement {
|
2019-08-25 17:19:11 +00:00
|
|
|
use \JKingWeb\Arsse\Test\DatabaseDrivers\SQLite3PDO;
|
2018-11-23 04:18:20 +00:00
|
|
|
|
|
|
|
protected function makeStatement(string $q, array $types = []): array {
|
2018-12-21 17:35:10 +00:00
|
|
|
return [static::$interface, $q, $types];
|
2018-11-23 04:18:20 +00:00
|
|
|
}
|
|
|
|
|
2024-12-28 00:58:07 +00:00
|
|
|
protected static function decorateTypeSyntax(string $value, string $type): string {
|
2019-01-11 15:38:06 +00:00
|
|
|
if ($type === "float") {
|
|
|
|
return (substr($value, -2) === ".0") ? "'".substr($value, 0, strlen($value) - 2)."'" : "'$value'";
|
2018-11-23 04:18:20 +00:00
|
|
|
} else {
|
|
|
|
return $value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|