87 lines
1.9 KiB
PHP
87 lines
1.9 KiB
PHP
<?php declare(strict_types=1);
|
|
/**
|
|
* Query
|
|
*
|
|
* SQL Query Builder / Database Abstraction Layer
|
|
*
|
|
* PHP version 8.1
|
|
*
|
|
* @package Query
|
|
* @author Timothy J. Warren <tim@timshome.page>
|
|
* @copyright 2012 - 2023 Timothy J. Warren
|
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
|
* @link https://git.timshomepage.net/aviat/Query
|
|
* @version 4.0.0
|
|
*/
|
|
namespace Query\Tests\Drivers\SQLite;
|
|
|
|
use PDO;
|
|
use Query\Tests\BaseQueryBuilderTest;
|
|
|
|
/**
|
|
* Class for testing Query Builder with SQLite
|
|
*
|
|
* @requires extension pdo_sqlite
|
|
*/
|
|
class SQLiteQueryBuilderTest extends BaseQueryBuilderTest {
|
|
|
|
public static function setUpBeforeClass(): void
|
|
{
|
|
// Defined in the SQLiteTest.php file
|
|
self::$db = Query('test_sqlite');
|
|
}
|
|
|
|
public function testQueryFunctionAlias(): void
|
|
{
|
|
$db = Query('test_sqlite');
|
|
|
|
$this->assertTrue(self::$db === $db, 'Alias passed into query function gives the original object back');
|
|
}
|
|
|
|
public function testQueryExplain(): void
|
|
{
|
|
$query = self::$db->select('id, key as k, val')
|
|
->explain()
|
|
->where('id >', 1)
|
|
->where('id <', 900)
|
|
->get('create_test', 2, 1);
|
|
|
|
$res = $query->fetchAll(PDO::FETCH_ASSOC);
|
|
$actualDetail = $res[0]['detail'];
|
|
$this->assertTrue(is_string($actualDetail));
|
|
|
|
/* $expectedPossibilities = [
|
|
'TABLE create_test USING PRIMARY KEY',
|
|
'SEARCH TABLE create_test USING INTEGER PRIMARY KEY (rowid>? AND rowid<?)',
|
|
];
|
|
|
|
$passed = FALSE;
|
|
|
|
// Check for a matching possibility
|
|
foreach($expectedPossibilities as $ep)
|
|
{
|
|
if (stripos($actualDetail, $ep) !== FALSE)
|
|
{
|
|
$passed = TRUE;
|
|
}
|
|
}
|
|
|
|
// Well, apparently not an expected possibility
|
|
if ( ! $passed)
|
|
{
|
|
var_export($res);
|
|
}
|
|
|
|
// $this->assertTrue($passed); */
|
|
}
|
|
|
|
public function testInsertReturning(): void
|
|
{
|
|
$this->markTestSkipped('Not implemented');
|
|
}
|
|
|
|
public function testUpdateReturning(): void
|
|
{
|
|
$this->markTestSkipped('Not implemented');
|
|
}
|
|
} |