Query/tests/Drivers/MySQL/MySQLDriverTest.php

183 lines
3.7 KiB
PHP

<?php declare(strict_types=1);
/**
* Query
*
* SQL Query Builder / Database Abstraction Layer
*
* PHP version 7.1
*
* @package Query
* @author Timothy J. Warren <tim@timshomepage.net>
* @copyright 2012 - 2018 Timothy J. Warren
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link https://git.timshomepage.net/aviat4ion/Query
*/
namespace Query\Tests\Drivers\MySQL;
use PDO;
use Query\Drivers\Mysql\Driver;
use Query\Tests\BaseDriverTest;
use TypeError;
/**
* MySQLTest class.
*
* @requires extension pdo_mysql
*/
class MySQLDriverTest extends BaseDriverTest {
public static function setUpBeforeClass()
{
$params = get_json_config();
if ($var = getenv('TRAVIS'))
{
self::$db = new Driver('host=127.0.0.1;port=3306;dbname=test', 'root');
}
// Attempt to connect, if there is a test config file
else if ($params !== FALSE)
{
$params = $params->mysql;
self::$db = new Driver("mysql:host={$params->host};dbname={$params->database}", $params->user, $params->pass, array(
PDO::ATTR_PERSISTENT => TRUE
));
}
self::$db->setTablePrefix('create_');
}
public function testExists()
{
$this->assertTrue(\in_array('mysql', PDO::getAvailableDrivers(), TRUE));
}
public function testConnection()
{
$this->assertIsA(self::$db, Driver::class);
}
public function testCreateTable()
{
self::$db->exec(file_get_contents(QTEST_DIR.'/db_files/mysql.sql'));
//Attempt to create the table
$sql = self::$db->getUtil()->createTable('test',
array(
'id' => 'int(10)',
'key' => 'TEXT',
'val' => 'TEXT',
),
array(
'id' => 'PRIMARY KEY'
)
);
self::$db->query($sql);
//Attempt to create the table
$sql = self::$db->getUtil()->createTable('join',
array(
'id' => 'int(10)',
'key' => 'TEXT',
'val' => 'TEXT',
),
array(
'id' => 'PRIMARY KEY'
)
);
self::$db->query($sql);
//Check
$dbs = self::$db->getTables();
$this->assertTrue(\in_array('create_test', $dbs, TRUE));
}
public function testTruncate()
{
self::$db->truncate('test');
$this->assertEquals(0, self::$db->countAll('test'));
self::$db->truncate('join');
$this->assertEquals(0, self::$db->countAll('join'));
}
public function testPreparedStatements()
{
$sql = <<<SQL
INSERT INTO `create_test` (`id`, `key`, `val`)
VALUES (?,?,?)
SQL;
$statement = self::$db->prepareQuery($sql, array(1,"boogers", "Gross"));
$res = $statement->execute();
$this->assertTrue($res);
}
public function testBadPreparedStatement()
{
$this->expectException(TypeError::class);
$sql = <<<SQL
INSERT INTO `create_test` (`id`, `key`, `val`)
VALUES (?,?,?)
SQL;
self::$db->prepareQuery($sql, 'foo');
}
public function testPrepareExecute()
{
$sql = <<<SQL
INSERT INTO `create_test` (`id`, `key`, `val`)
VALUES (?,?,?)
SQL;
$res = self::$db->prepareExecute($sql, array(
2, "works", 'also?'
));
$this->assertInstanceOf('PDOStatement', $res);
}
public function testCommitTransaction()
{
$res = self::$db->beginTransaction();
$sql = 'INSERT INTO `create_test` (`id`, `key`, `val`) VALUES (10, 12, 14)';
self::$db->query($sql);
$res = self::$db->commit();
$this->assertTrue($res);
}
public function testRollbackTransaction()
{
$res = self::$db->beginTransaction();
$sql = 'INSERT INTO `create_test` (`id`, `key`, `val`) VALUES (182, 96, 43)';
self::$db->query($sql);
$res = self::$db->rollback();
$this->assertTrue($res);
}
public function testGetSchemas()
{
$this->assertNull(self::$db->getSchemas());
}
public function testGetSequences()
{
$this->assertNull(self::$db->getSequences());
}
public function testBackup()
{
$this->assertTrue(is_string(self::$db->getUtil()->backupStructure()));
}
}