Query/tests/Drivers/SQLite/SQLiteQueryBuilderTest.php

126 lines
2.6 KiB
PHP
Raw Normal View History

2016-10-12 22:12:25 -04:00
<?php declare(strict_types=1);
/**
2016-10-12 22:12:25 -04:00
* Query
*
2016-10-12 22:12:25 -04:00
* SQL Query Builder / Database Abstraction Layer
*
2019-12-11 16:49:42 -05:00
* PHP version 7.2
2016-10-12 22:12:25 -04:00
*
* @package Query
* @author Timothy J. Warren <tim@timshomepage.net>
* @copyright 2012 - 2019 Timothy J. Warren
2016-10-12 22:12:25 -04:00
* @license http://www.opensource.org/licenses/mit-license.html MIT License
2019-12-11 16:49:42 -05:00
* @link https://git.timshomepage.net/aviat/Query
* @version 3.0.0
*/
namespace Query\Tests\Drivers\SQLite;
use PDO;
use Query\Tests\BaseQueryBuilderTest;
2016-10-12 22:12:25 -04:00
/**
* Class for testing Query Builder with SQLite
*
* @requires extension pdo_sqlite
*/
class SQLiteQueryBuilderTest extends BaseQueryBuilderTest {
2019-12-10 12:17:40 -05:00
public static function setUpBeforeClass(): void
{
// Defined in the SQLiteTest.php file
self::$db = Query('test_sqlite');
}
2019-12-10 12:17:40 -05:00
public function testQueryFunctionAlias(): void
{
$db = Query('test_sqlite');
2018-01-26 08:39:30 -05:00
$this->assertTrue(self::$db === $db, 'Alias passed into query function gives the original object back');
}
2019-12-10 12:17:40 -05:00
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);
2018-01-26 08:39:30 -05:00
$expectedPossibilities = [];
2018-01-26 08:39:30 -05:00
$expectedPossibilities[] = [
[
'order' => '0',
'from' => '0',
'detail' => 'TABLE create_test USING PRIMARY KEY',
2018-01-26 08:39:30 -05:00
]
];
2018-01-26 08:39:30 -05:00
$expectedPossibilities[] = [
[
'selectid' => '0',
'order' => '0',
'from' => '0',
'detail' => 'SEARCH TABLE create_test USING INTEGER PRIMARY KEY (rowid>? AND rowid<?) (~60000 rows)',
2018-01-26 08:39:30 -05:00
],
];
2018-01-26 08:39:30 -05:00
$expectedPossibilities[] = [
[
'selectid' => '0',
'order' => '0',
'from' => '0',
'detail' => 'SEARCH TABLE create_test USING INTEGER PRIMARY KEY (rowid>? AND rowid<?)',
2018-01-26 08:39:30 -05:00
],
];
2018-01-26 08:39:30 -05:00
$expectedPossibilities[] = [
[
'selectid' => '0',
'order' => '0',
'from' => '0',
'detail' => 'SEARCH TABLE create_test USING INTEGER PRIMARY KEY (rowid>? AND rowid<?) (~62500 rows)',
2018-01-26 08:39:30 -05:00
],
];
2019-12-10 12:17:40 -05:00
$expectedPossibilities[] = [
[
'id' => '6',
'parent' => '0',
'notused' => '0',
'detail' => 'SEARCH TABLE create_test USING INTEGER PRIMARY KEY (rowid>? AND rowid<?)',
],
];
$passed = FALSE;
// Check for a matching possibility
2016-10-13 21:55:23 -04:00
foreach($expectedPossibilities as $ep)
{
2018-01-26 08:39:30 -05:00
if ($res === $ep)
{
$this->assertTrue(TRUE);
$passed = TRUE;
}
}
// Well, apparently not an expected possibility
if ( ! $passed)
{
var_export($res);
$this->assertTrue(FALSE);
}
}
public function testInsertReturning(): void
{
$this->markTestSkipped();
}
public function testUpdateReturning(): void
{
$this->markTestSkipped();
}
}