mirror of
https://github.com/yiisoft/yii2.git
synced 2025-08-16 07:11:19 +08:00
152 lines
4.3 KiB
PHP
152 lines
4.3 KiB
PHP
<?php
|
|
|
|
/**
|
|
* @link https://www.yiiframework.com/
|
|
* @copyright Copyright (c) 2008 Yii Software LLC
|
|
* @license https://www.yiiframework.com/license/
|
|
*/
|
|
|
|
namespace yiiunit\framework\db;
|
|
|
|
use yii\caching\DummyCache;
|
|
use yii\db\Connection;
|
|
use yiiunit\TestCase;
|
|
|
|
abstract class DatabaseTestCase extends TestCase
|
|
{
|
|
protected $database;
|
|
/**
|
|
* @var string the driver name of this test class. Must be set by a subclass.
|
|
*/
|
|
protected $driverName;
|
|
protected static string $driverNameStatic = '';
|
|
/**
|
|
* @var Connection
|
|
*/
|
|
private $_db;
|
|
|
|
|
|
protected function setUp(): void
|
|
{
|
|
if ($this->driverName === null) {
|
|
throw new \Exception('driverName is not set for a DatabaseTestCase.');
|
|
}
|
|
|
|
parent::setUp();
|
|
$databases = self::getParam('databases');
|
|
$this->database = $databases[$this->driverName];
|
|
$pdo_database = 'pdo_' . $this->driverName;
|
|
if ($this->driverName === 'oci') {
|
|
$pdo_database = 'oci8';
|
|
}
|
|
|
|
if (!\extension_loaded('pdo') || !\extension_loaded($pdo_database)) {
|
|
$this->markTestSkipped('pdo and ' . $pdo_database . ' extension are required.');
|
|
}
|
|
$this->mockApplication();
|
|
}
|
|
|
|
protected function tearDown(): void
|
|
{
|
|
if ($this->_db) {
|
|
$this->_db->close();
|
|
}
|
|
$this->destroyApplication();
|
|
}
|
|
|
|
/**
|
|
* @param bool $reset whether to clean up the test database
|
|
* @param bool $open whether to open and populate test database
|
|
* @return \yii\db\Connection
|
|
*/
|
|
public function getConnection($reset = true, $open = true)
|
|
{
|
|
if (!$reset && $this->_db) {
|
|
return $this->_db;
|
|
}
|
|
$config = $this->database;
|
|
if (isset($config['fixture'])) {
|
|
$fixture = $config['fixture'];
|
|
unset($config['fixture']);
|
|
} else {
|
|
$fixture = null;
|
|
}
|
|
try {
|
|
$this->_db = $this->prepareDatabase($config, $fixture, $open);
|
|
} catch (\Exception $e) {
|
|
$this->markTestSkipped('Something wrong when preparing database: ' . $e->getMessage());
|
|
}
|
|
|
|
return $this->_db;
|
|
}
|
|
|
|
public function prepareDatabase($config, $fixture, $open = true)
|
|
{
|
|
if (!isset($config['class'])) {
|
|
$config['class'] = 'yii\db\Connection';
|
|
}
|
|
/** @var \yii\db\Connection $db */
|
|
$db = \Yii::createObject($config);
|
|
if (!$open) {
|
|
return $db;
|
|
}
|
|
$db->open();
|
|
if ($fixture !== null) {
|
|
if ($this->driverName === 'oci') {
|
|
[$drops, $creates] = explode('/* STATEMENTS */', file_get_contents($fixture), 2);
|
|
[$statements, $triggers, $data] = explode('/* TRIGGERS */', $creates, 3);
|
|
$lines = array_merge(explode('--', $drops), explode(';', $statements), explode('/', $triggers), explode(';', $data));
|
|
} else {
|
|
$lines = explode(';', file_get_contents($fixture));
|
|
}
|
|
foreach ($lines as $line) {
|
|
if (trim($line) !== '') {
|
|
$db->pdo->exec($line);
|
|
}
|
|
}
|
|
}
|
|
|
|
return $db;
|
|
}
|
|
|
|
/**
|
|
* Adjust dbms specific escaping.
|
|
*
|
|
* @param string $sql SQL to adjust.
|
|
*
|
|
* @return string Adjusted SQL.
|
|
*/
|
|
protected static function replaceQuotes(string $sql): string
|
|
{
|
|
return match (static::$driverNameStatic) {
|
|
'mysql', 'sqlite' => str_replace(['[[', ']]'], '`', $sql),
|
|
'oci' => str_replace(['[[', ']]'], '"', $sql),
|
|
'pgsql' => str_replace(['\\[', '\\]'], ['[', ']'], preg_replace('/(\[\[)|((?<!(\[))\]\])/', '"', $sql)),
|
|
'sqlsrv' => str_replace(['[[', ']]'], ['[', ']'], $sql),
|
|
default => $sql,
|
|
};
|
|
}
|
|
|
|
/**
|
|
* @return \yii\db\Connection
|
|
*/
|
|
protected function getConnectionWithInvalidSlave()
|
|
{
|
|
$config = array_merge($this->database, [
|
|
'serverStatusCache' => new DummyCache(),
|
|
'slaves' => [
|
|
[], // invalid config
|
|
],
|
|
]);
|
|
|
|
if (isset($config['fixture'])) {
|
|
$fixture = $config['fixture'];
|
|
unset($config['fixture']);
|
|
} else {
|
|
$fixture = null;
|
|
}
|
|
|
|
return $this->prepareDatabase($config, $fixture, true);
|
|
}
|
|
}
|