mirror of
				https://github.com/yiisoft/yii2.git
				synced 2025-11-04 06:37:55 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			190 lines
		
	
	
		
			5.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			190 lines
		
	
	
		
			5.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * @link http://www.yiiframework.com/
 | 
						|
 * @copyright Copyright (c) 2008 Yii Software LLC
 | 
						|
 * @license http://www.yiiframework.com/license/
 | 
						|
 */
 | 
						|
 | 
						|
namespace yiiunit\framework\console\controllers;
 | 
						|
 | 
						|
use Yii;
 | 
						|
use yii\db\Connection;
 | 
						|
 | 
						|
/**
 | 
						|
 * Tests that [[\yii\console\controllers\MessageController]] works as expected with DB message format.
 | 
						|
 *
 | 
						|
 * @group db
 | 
						|
 * @group mysql
 | 
						|
 */
 | 
						|
class DbMessageControllerTest extends BaseMessageControllerTest
 | 
						|
{
 | 
						|
    protected static $driverName = 'mysql';
 | 
						|
    protected static $database;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @var Connection
 | 
						|
     */
 | 
						|
    protected static $db;
 | 
						|
 | 
						|
    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(),
 | 
						|
                ],
 | 
						|
            ]);
 | 
						|
        }
 | 
						|
 | 
						|
        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 static function setUpBeforeClass()
 | 
						|
    {
 | 
						|
        parent::setUpBeforeClass();
 | 
						|
        $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/i18n/migrations/', 'interactive' => false]);
 | 
						|
    }
 | 
						|
 | 
						|
    public static function tearDownAfterClass()
 | 
						|
    {
 | 
						|
        static::runConsoleAction('migrate/down', ['migrationPath' => '@yii/i18n/migrations/', 'interactive' => false]);
 | 
						|
        if (static::$db) {
 | 
						|
            static::$db->close();
 | 
						|
        }
 | 
						|
        Yii::$app = null;
 | 
						|
        parent::tearDownAfterClass();
 | 
						|
    }
 | 
						|
 | 
						|
    public function tearDown()
 | 
						|
    {
 | 
						|
        parent::tearDown();
 | 
						|
        Yii::$app = null;
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @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;
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * {@inheritdoc}
 | 
						|
     */
 | 
						|
    protected function getDefaultConfig()
 | 
						|
    {
 | 
						|
        return [
 | 
						|
            'format' => 'db',
 | 
						|
            'languages' => [$this->language],
 | 
						|
            'sourcePath' => $this->sourcePath,
 | 
						|
            'overwrite' => true,
 | 
						|
            'db' => static::$db,
 | 
						|
        ];
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * {@inheritdoc}
 | 
						|
     */
 | 
						|
    protected function saveMessages($messages, $category)
 | 
						|
    {
 | 
						|
        static::$db->createCommand()->checkIntegrity(false, '', 'message')->execute();
 | 
						|
        static::$db->createCommand()->truncateTable('message')->execute();
 | 
						|
        static::$db->createCommand()->truncateTable('source_message')->execute();
 | 
						|
        static::$db->createCommand()->checkIntegrity(true, '', 'message')->execute();
 | 
						|
        foreach ($messages as $source => $translation) {
 | 
						|
            $lastPk = static::$db->schema->insert('source_message', [
 | 
						|
                'category' => $category,
 | 
						|
                'message' => $source,
 | 
						|
            ]);
 | 
						|
            static::$db->createCommand()->insert('message', [
 | 
						|
                'id' => $lastPk['id'],
 | 
						|
                'language' => $this->language,
 | 
						|
                'translation' => $translation,
 | 
						|
            ])->execute();
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * {@inheritdoc}
 | 
						|
     */
 | 
						|
    protected function loadMessages($category)
 | 
						|
    {
 | 
						|
        return \yii\helpers\ArrayHelper::map((new \yii\db\Query())
 | 
						|
            ->select(['message' => 't1.message', 'translation' => 't2.translation'])
 | 
						|
            ->from(['t1' => 'source_message', 't2' => 'message'])
 | 
						|
            ->where([
 | 
						|
                't1.id' => new \yii\db\Expression('[[t2.id]]'),
 | 
						|
                't1.category' => $category,
 | 
						|
                't2.language' => $this->language,
 | 
						|
            ])->all(static::$db), 'message', 'translation');
 | 
						|
    }
 | 
						|
 | 
						|
    // DbMessage tests variants:
 | 
						|
 | 
						|
    /**
 | 
						|
     * Source is marked instead of translation.
 | 
						|
     * @depends testMerge
 | 
						|
     */
 | 
						|
    public function testMarkObsoleteMessages()
 | 
						|
    {
 | 
						|
        $category = 'category';
 | 
						|
 | 
						|
        $obsoleteMessage = 'obsolete message';
 | 
						|
        $obsoleteTranslation = 'obsolete translation';
 | 
						|
        $this->saveMessages([$obsoleteMessage => $obsoleteTranslation], $category);
 | 
						|
 | 
						|
        $sourceFileContent = "Yii::t('{$category}', 'any new message');";
 | 
						|
        $this->createSourceFile($sourceFileContent);
 | 
						|
 | 
						|
        $this->saveConfigFile($this->getConfig(['removeUnused' => false]));
 | 
						|
        $out = $this->runMessageControllerAction('extract', [$this->configFileName]);
 | 
						|
 | 
						|
        $obsoleteMessage = '@@obsolete message@@';
 | 
						|
 | 
						|
        $messages = $this->loadMessages($category);
 | 
						|
 | 
						|
        $this->assertArrayHasKey($obsoleteMessage, $messages, "Obsolete message should not be removed. Command output:\n\n" . $out);
 | 
						|
        $this->assertEquals($obsoleteTranslation, $messages[$obsoleteMessage], "Obsolete message was not marked properly. Command output:\n\n" . $out);
 | 
						|
    }
 | 
						|
}
 |