mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2024-12-23 09:02:41 +00:00
5d61ab0a57
Three test failures remain, but these are minor and will be resolved soon. Handling of binary data is also broken, but given that this works fine with the PDO driver, there is presumably some correct method.
32 lines
1 KiB
PHP
32 lines
1 KiB
PHP
<?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\MySQL;
|
|
|
|
/**
|
|
* @group slow
|
|
* @covers \JKingWeb\Arsse\Db\MySQL\Statement<extended> */
|
|
class TestStatement extends \JKingWeb\Arsse\TestCase\Db\BaseStatement {
|
|
use \JKingWeb\Arsse\TestCase\DatabaseDrivers\MySQL;
|
|
|
|
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":
|
|
return (substr($value, -2) === ".0") ? "'".substr($value, 0, strlen($value) - 2)."'" : "'$value'";
|
|
case "string":
|
|
if (preg_match("<^char\((\d+)\)$>", $value, $match)) {
|
|
return "'".\IntlChar::chr((int) $match[1])."'";
|
|
}
|
|
return $value;
|
|
default:
|
|
return $value;
|
|
}
|
|
}
|
|
}
|