mirror of
				https://github.com/yiisoft/yii2.git
				synced 2025-11-04 06:37:55 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			38 lines
		
	
	
		
			813 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			813 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace yiiunit;
 | 
						|
 | 
						|
class MysqlTestCase extends TestCase
 | 
						|
{
 | 
						|
	protected function setUp()
 | 
						|
	{
 | 
						|
		parent::setUp();
 | 
						|
		if (!extension_loaded('pdo') || !extension_loaded('pdo_mysql')) {
 | 
						|
			$this->markTestSkipped('pdo and pdo_mysql extensions are required.');
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	/**
 | 
						|
	 * @param bool $reset whether to clean up the test database
 | 
						|
	 * @return \yii\db\Connection
 | 
						|
	 */
 | 
						|
	public function getConnection($reset = true)
 | 
						|
	{
 | 
						|
		$params = $this->getParam('mysql');
 | 
						|
		$db = new \yii\db\Connection;
 | 
						|
		$db->dsn = $params['dsn'];
 | 
						|
		$db->username = $params['username'];
 | 
						|
		$db->password = $params['password'];
 | 
						|
		if ($reset) {
 | 
						|
			$db->open();
 | 
						|
			$lines = explode(';', file_get_contents($params['fixture']));
 | 
						|
			foreach ($lines as $line) {
 | 
						|
				if (trim($line) !== '') {
 | 
						|
					$db->pdo->exec($line);
 | 
						|
				}
 | 
						|
			}
 | 
						|
		}
 | 
						|
		return $db;
 | 
						|
	}
 | 
						|
}
 |