2010-05-07 22:36:17 +00:00
|
|
|
<?php
|
2010-05-08 22:20:55 +00:00
|
|
|
/**
|
|
|
|
* A factory class to manage the life cycle of test fixtures
|
|
|
|
*
|
|
|
|
* PHP 5
|
|
|
|
*
|
|
|
|
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
|
2011-05-29 21:31:39 +00:00
|
|
|
* Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2010-05-08 22:20:55 +00:00
|
|
|
*
|
|
|
|
* Licensed under The MIT License
|
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
2011-05-29 21:31:39 +00:00
|
|
|
* @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2010-05-08 22:20:55 +00:00
|
|
|
* @link http://cakephp.org CakePHP(tm) Project
|
2011-07-26 06:16:14 +00:00
|
|
|
* @package Cake.TestSuite.Fixture
|
2010-05-08 22:20:55 +00:00
|
|
|
* @since CakePHP(tm) v 2.0
|
|
|
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
|
|
|
*/
|
2010-12-11 05:47:55 +00:00
|
|
|
App::uses('ConnectionManager', 'Model');
|
|
|
|
App::uses('ClassRegistry', 'Utility');
|
|
|
|
|
2010-05-07 22:36:17 +00:00
|
|
|
class CakeFixtureManager {
|
2010-05-08 22:20:55 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Was this class already initialized?
|
|
|
|
*
|
|
|
|
* @var boolean
|
|
|
|
*/
|
2010-05-08 20:22:11 +00:00
|
|
|
protected $_initialized = false;
|
2010-05-08 22:20:55 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Default datasource to use
|
|
|
|
*
|
|
|
|
* @var DataSource
|
|
|
|
*/
|
2010-05-08 20:22:11 +00:00
|
|
|
protected $_db = null;
|
2010-05-08 22:20:55 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Holds the fixture classes that where instantiated
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
2010-05-08 20:22:11 +00:00
|
|
|
protected $_loaded = array();
|
2010-05-08 22:20:55 +00:00
|
|
|
|
|
|
|
/**
|
2011-12-02 05:58:09 +00:00
|
|
|
* Holds the fixture classes that where instantiated indexed by class name
|
2010-05-08 22:20:55 +00:00
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
2010-05-08 20:22:11 +00:00
|
|
|
protected $_fixtureMap = array();
|
|
|
|
|
2010-05-08 22:20:55 +00:00
|
|
|
/**
|
|
|
|
* Inspects the test to look for unloaded fixtures and loads them
|
|
|
|
*
|
|
|
|
* @param CakeTestCase $test the test case to inspect
|
|
|
|
* @return void
|
|
|
|
*/
|
2010-12-08 06:19:36 +00:00
|
|
|
public function fixturize($test) {
|
2010-05-08 20:22:11 +00:00
|
|
|
if (empty($test->fixtures) || !empty($this->_processed[get_class($test)])) {
|
|
|
|
$test->db = $this->_db;
|
2010-05-07 22:36:17 +00:00
|
|
|
return;
|
|
|
|
}
|
2010-05-08 20:22:11 +00:00
|
|
|
$this->_initDb();
|
|
|
|
$test->db = $this->_db;
|
2010-05-07 22:36:17 +00:00
|
|
|
if (!is_array($test->fixtures)) {
|
|
|
|
$test->fixtures = array_map('trim', explode(',', $test->fixtures));
|
|
|
|
}
|
|
|
|
if (isset($test->fixtures)) {
|
2010-05-08 20:22:11 +00:00
|
|
|
$this->_loadFixtures($test->fixtures);
|
2010-05-07 22:36:17 +00:00
|
|
|
}
|
2010-05-08 20:22:11 +00:00
|
|
|
|
|
|
|
$this->_processed[get_class($test)] = true;
|
2010-05-07 22:36:17 +00:00
|
|
|
}
|
|
|
|
|
2010-05-08 22:20:55 +00:00
|
|
|
/**
|
|
|
|
* Initializes this class with a DataSource object to use as default for all fixtures
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2010-05-08 20:22:11 +00:00
|
|
|
protected function _initDb() {
|
|
|
|
if ($this->_initialized) {
|
|
|
|
return;
|
|
|
|
}
|
2010-12-08 06:19:36 +00:00
|
|
|
$db = ConnectionManager::getDataSource('test');
|
2011-10-12 02:10:09 +00:00
|
|
|
$db->cacheSources = false;
|
2010-09-20 02:41:31 +00:00
|
|
|
$this->_db = $db;
|
2011-11-05 06:55:59 +00:00
|
|
|
ClassRegistry::config(array('ds' => 'test', 'testing' => true));
|
2010-05-08 20:22:11 +00:00
|
|
|
$this->_initialized = true;
|
2010-05-07 22:36:17 +00:00
|
|
|
}
|
|
|
|
|
2010-05-08 22:20:55 +00:00
|
|
|
/**
|
|
|
|
* Looks for fixture files and instantiates the classes accordingly
|
|
|
|
*
|
|
|
|
* @param array $fixtures the fixture names to load using the notation {type}.{name}
|
|
|
|
* @return void
|
|
|
|
*/
|
2010-05-08 20:22:11 +00:00
|
|
|
protected function _loadFixtures($fixtures) {
|
2010-05-07 22:36:17 +00:00
|
|
|
foreach ($fixtures as $index => $fixture) {
|
|
|
|
$fixtureFile = null;
|
|
|
|
$fixtureIndex = $fixture;
|
2010-05-08 20:22:11 +00:00
|
|
|
if (isset($this->_loaded[$fixture])) {
|
2010-05-07 22:36:17 +00:00
|
|
|
continue;
|
|
|
|
}
|
2010-12-11 05:47:55 +00:00
|
|
|
|
2010-05-07 22:36:17 +00:00
|
|
|
if (strpos($fixture, 'core.') === 0) {
|
|
|
|
$fixture = substr($fixture, strlen('core.'));
|
2011-04-17 10:35:21 +00:00
|
|
|
$fixturePaths[] = CAKE . 'Test' . DS . 'Fixture';
|
2010-05-07 22:36:17 +00:00
|
|
|
} elseif (strpos($fixture, 'app.') === 0) {
|
|
|
|
$fixture = substr($fixture, strlen('app.'));
|
|
|
|
$fixturePaths = array(
|
2011-04-11 00:38:24 +00:00
|
|
|
TESTS . 'Fixture'
|
2010-05-07 22:36:17 +00:00
|
|
|
);
|
|
|
|
} elseif (strpos($fixture, 'plugin.') === 0) {
|
|
|
|
$parts = explode('.', $fixture, 3);
|
|
|
|
$pluginName = $parts[1];
|
|
|
|
$fixture = $parts[2];
|
|
|
|
$fixturePaths = array(
|
2011-05-19 20:12:15 +00:00
|
|
|
CakePlugin::path(Inflector::camelize($pluginName)) . 'Test' . DS . 'Fixture',
|
2011-04-11 00:38:24 +00:00
|
|
|
TESTS . 'Fixture'
|
2010-05-07 22:36:17 +00:00
|
|
|
);
|
|
|
|
} else {
|
|
|
|
$fixturePaths = array(
|
2011-04-11 00:38:24 +00:00
|
|
|
TESTS . 'Fixture',
|
2011-05-17 23:00:00 +00:00
|
|
|
CAKE . 'Test' . DS . 'Fixture'
|
2010-05-07 22:36:17 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($fixturePaths as $path) {
|
2011-04-11 00:38:24 +00:00
|
|
|
$className = Inflector::camelize($fixture);
|
|
|
|
if (is_readable($path . DS . $className . 'Fixture.php')) {
|
|
|
|
$fixtureFile = $path . DS . $className . 'Fixture.php';
|
|
|
|
require_once($fixtureFile);
|
|
|
|
$fixtureClass = $className . 'Fixture';
|
2011-11-05 06:55:59 +00:00
|
|
|
$this->_loaded[$fixtureIndex] = new $fixtureClass();
|
2011-04-11 00:38:24 +00:00
|
|
|
$this->_fixtureMap[$fixtureClass] = $this->_loaded[$fixtureIndex];
|
2010-05-07 22:36:17 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-05-08 22:20:55 +00:00
|
|
|
/**
|
2011-10-12 02:10:09 +00:00
|
|
|
* Runs the drop and create commands on the fixtures if necessary.
|
2010-05-08 22:20:55 +00:00
|
|
|
*
|
|
|
|
* @param CakeTestFixture $fixture the fixture object to create
|
|
|
|
* @param DataSource $db the datasource instance to use
|
|
|
|
* @param boolean $drop whether drop the fixture if it is already created or not
|
|
|
|
* @return void
|
|
|
|
*/
|
2010-05-08 20:22:11 +00:00
|
|
|
protected function _setupTable($fixture, $db = null, $drop = true) {
|
2010-05-07 22:36:17 +00:00
|
|
|
if (!$db) {
|
2011-10-20 04:24:10 +00:00
|
|
|
if (!empty($fixture->useDbConfig)) {
|
|
|
|
$db = ClassRegistry::getDataSource($fixture->useDbConfig);
|
|
|
|
} else {
|
|
|
|
$db = $this->_db;
|
|
|
|
}
|
2010-05-07 22:36:17 +00:00
|
|
|
}
|
2011-10-20 04:24:10 +00:00
|
|
|
if (!empty($fixture->created) && in_array($db->configKeyName, $fixture->created)) {
|
2011-05-24 17:32:38 +00:00
|
|
|
return;
|
|
|
|
}
|
2010-05-07 22:36:17 +00:00
|
|
|
|
|
|
|
$sources = $db->listSources();
|
|
|
|
$table = $db->config['prefix'] . $fixture->table;
|
|
|
|
|
|
|
|
if ($drop && in_array($table, $sources)) {
|
|
|
|
$fixture->drop($db);
|
|
|
|
$fixture->create($db);
|
|
|
|
} elseif (!in_array($table, $sources)) {
|
|
|
|
$fixture->create($db);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-05-08 22:20:55 +00:00
|
|
|
/**
|
|
|
|
* Crates the fixtures tables and inserts data on them
|
|
|
|
*
|
|
|
|
* @param CakeTestCase $test the test to inspect for fixture loading
|
|
|
|
* @return void
|
|
|
|
*/
|
2010-05-08 20:22:11 +00:00
|
|
|
public function load(CakeTestCase $test) {
|
2010-05-07 22:36:17 +00:00
|
|
|
if (empty($test->fixtures)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
$fixtures = $test->fixtures;
|
|
|
|
if (empty($fixtures) || $test->autoFixtures == false) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-11-17 03:44:48 +00:00
|
|
|
$test->db->begin();
|
2010-05-07 22:36:17 +00:00
|
|
|
foreach ($fixtures as $f) {
|
2010-05-08 20:22:11 +00:00
|
|
|
if (!empty($this->_loaded[$f])) {
|
|
|
|
$fixture = $this->_loaded[$f];
|
2011-10-20 04:24:10 +00:00
|
|
|
$db = ConnectionManager::getDataSource($fixture->useDbConfig);
|
|
|
|
$this->_setupTable($fixture, $db, $test->dropTables);
|
|
|
|
$fixture->insert($db);
|
2010-05-07 22:36:17 +00:00
|
|
|
}
|
|
|
|
}
|
2010-11-17 03:44:48 +00:00
|
|
|
$test->db->commit();
|
2010-05-07 22:36:17 +00:00
|
|
|
}
|
|
|
|
|
2010-05-08 22:20:55 +00:00
|
|
|
/**
|
2011-12-02 05:58:09 +00:00
|
|
|
* Truncates the fixtures tables
|
2010-05-08 22:20:55 +00:00
|
|
|
*
|
|
|
|
* @param CakeTestCase $test the test to inspect for fixture unloading
|
|
|
|
* @return void
|
|
|
|
*/
|
2010-05-08 20:22:11 +00:00
|
|
|
public function unload(CakeTestCase $test) {
|
2010-09-25 23:45:26 +00:00
|
|
|
$fixtures = !empty($test->fixtures) ? $test->fixtures : array();
|
2011-07-25 19:14:23 +00:00
|
|
|
foreach (array_reverse($fixtures) as $f) {
|
2010-05-08 20:22:11 +00:00
|
|
|
if (isset($this->_loaded[$f])) {
|
|
|
|
$fixture = $this->_loaded[$f];
|
2010-05-07 22:36:17 +00:00
|
|
|
if (!empty($fixture->created)) {
|
2011-10-20 04:24:10 +00:00
|
|
|
foreach ($fixture->created as $ds) {
|
|
|
|
$db = ConnectionManager::getDataSource($ds);
|
|
|
|
$fixture->truncate($db);
|
|
|
|
}
|
2010-05-07 22:36:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-05-08 22:20:55 +00:00
|
|
|
/**
|
2011-12-02 05:58:09 +00:00
|
|
|
* Truncates the fixtures tables
|
2010-05-08 22:20:55 +00:00
|
|
|
*
|
|
|
|
* @param CakeTestCase $test the test to inspect for fixture unloading
|
|
|
|
* @return void
|
|
|
|
* @throws UnexpectedValueException if $name is not a previously loaded class
|
|
|
|
*/
|
2010-05-08 20:22:11 +00:00
|
|
|
public function loadSingle($name, $db = null) {
|
2010-05-07 22:36:17 +00:00
|
|
|
$name .= 'Fixture';
|
2010-05-08 20:22:11 +00:00
|
|
|
if (isset($this->_fixtureMap[$name])) {
|
2011-10-20 04:24:10 +00:00
|
|
|
$fixture = $this->_fixtureMap[$name];
|
2010-05-07 22:36:17 +00:00
|
|
|
if (!$db) {
|
2011-10-20 04:24:10 +00:00
|
|
|
$db = ConnectionManager::getDataSource($fixture->useDbConfig);
|
2010-05-07 22:36:17 +00:00
|
|
|
}
|
2010-06-01 04:19:18 +00:00
|
|
|
$this->_setupTable($fixture, $db);
|
2010-05-07 22:36:17 +00:00
|
|
|
$fixture->truncate($db);
|
|
|
|
$fixture->insert($db);
|
|
|
|
} else {
|
2011-03-20 15:35:43 +00:00
|
|
|
throw new UnexpectedValueException(__d('cake_dev', 'Referenced fixture class %s not found', $name));
|
2010-05-07 22:36:17 +00:00
|
|
|
}
|
|
|
|
}
|
2010-05-08 20:22:11 +00:00
|
|
|
|
2010-05-08 22:20:55 +00:00
|
|
|
/**
|
|
|
|
* Drop all fixture tables loaded by this class
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2010-05-08 20:22:11 +00:00
|
|
|
public function shutDown() {
|
|
|
|
foreach ($this->_loaded as $fixture) {
|
|
|
|
if (!empty($fixture->created)) {
|
2011-10-20 04:24:10 +00:00
|
|
|
foreach ($fixture->created as $ds) {
|
|
|
|
$db = ConnectionManager::getDataSource($ds);
|
|
|
|
$fixture->drop($db);
|
|
|
|
}
|
2010-05-08 20:22:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-10-20 04:24:10 +00:00
|
|
|
|
2011-04-17 10:35:21 +00:00
|
|
|
}
|