Yii2 framework backup
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

174 lines
5.0 KiB

<?php
/**
* @link http://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license http://www.yiiframework.com/license/
*/
namespace yiiunit\framework\log;
use Yii;
use yii\db\Connection;
use yii\db\Query;
use yii\log\Logger;
use yiiunit\framework\console\controllers\EchoMigrateController;
use yiiunit\TestCase;
/**
* @group db
* @group log
*/
abstract class DbTargetTest extends TestCase
{
protected static $database;
protected static $driverName = 'mysql';
/**
* @var Connection
*/
protected static $db;
protected static $logTable = '{{%log}}';
protected static function runConsoleAction($route, $params = [])
{
if (Yii::$app === null) {
new \yii\console\Application([
'id' => 'Migrator',
'basePath' => '@yiiunit',
'controllerMap' => [
'migrate' => EchoMigrateController::className(),
],
'components' => [
'db' => static::getConnection(),
'log' => [
'targets' => [
'db' => [
'class' => 'yii\log\DbTarget',
'levels' => ['warning'],
'logTable' => self::$logTable,
],
],
],
],
]);
}
ob_start();
$result = Yii::$app->runAction($route, $params);
echo 'Result is ' . $result;
if ($result !== \yii\console\Controller::EXIT_CODE_NORMAL) {
ob_end_flush();
} else {
ob_end_clean();
}
}
public function setUp()
{
parent::setUp();
$databases = static::getParam('databases');
static::$database = $databases[static::$driverName];
$pdo_database = 'pdo_' . static::$driverName;
if (!extension_loaded('pdo') || !extension_loaded($pdo_database)) {
static::markTestSkipped('pdo and ' . $pdo_database . ' extension are required.');
}
static::runConsoleAction('migrate/up', ['migrationPath' => '@yii/log/migrations/', 'interactive' => false]);
}
public function tearDown()
{
self::getConnection()->createCommand()->truncateTable(self::$logTable)->execute();
static::runConsoleAction('migrate/down', ['migrationPath' => '@yii/log/migrations/', 'interactive' => false]);
if (static::$db) {
static::$db->close();
}
parent::tearDown();
}
/**
* @throws \yii\base\InvalidParamException
* @throws \yii\db\Exception
* @throws \yii\base\InvalidConfigException
* @return \yii\db\Connection
*/
public static function getConnection()
{
if (static::$db == null) {
$db = new Connection();
$db->dsn = static::$database['dsn'];
if (isset(static::$database['username'])) {
$db->username = static::$database['username'];
$db->password = static::$database['password'];
}
if (isset(static::$database['attributes'])) {
$db->attributes = static::$database['attributes'];
}
if (!$db->isActive) {
$db->open();
}
static::$db = $db;
}
return static::$db;
}
/**
* Tests that precision isn't lost for log timestamps.
* @see https://github.com/yiisoft/yii2/issues/7384
*/
public function testTimestamp()
{
$logger = Yii::getLogger();
$time = 1424865393.0105;
// forming message data manually in order to set time
$messsageData = [
'test',
Logger::LEVEL_WARNING,
'test',
$time,
[],
];
$logger->messages[] = $messsageData;
$logger->flush(true);
$query = (new Query())->select('log_time')->from(self::$logTable)->where(['category' => 'test']);
$loggedTime = $query->createCommand(self::getConnection())->queryScalar();
static::assertEquals($time, $loggedTime);
}
public function testTransactionRollBack()
{
$db = self::getConnection();
$logger = Yii::getLogger();
$tx = $db->beginTransaction();
$messsageData = [
'test',
Logger::LEVEL_WARNING,
'test',
time(),
[],
];
$logger->messages[] = $messsageData;
$logger->flush(true);
// current db connection should still have a transaction
$this->assertNotNull($db->transaction);
// log db connection should not have transaction
$this->assertNull(Yii::$app->log->targets['db']->db->transaction);
$tx->rollBack();
$query = (new Query())->select('COUNT(*)')->from(self::$logTable)->where(['category' => 'test', 'message' => 'test']);
$count = $query->createCommand($db)->queryScalar();
static::assertEquals(1, $count);
}
}