本文整理匯總了PHP中TYPO3\CMS\Core\Tests\FunctionalTestCase::importDataSet方法的典型用法代碼示例。如果您正苦於以下問題:PHP FunctionalTestCase::importDataSet方法的具體用法?PHP FunctionalTestCase::importDataSet怎麽用?PHP FunctionalTestCase::importDataSet使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類TYPO3\CMS\Core\Tests\FunctionalTestCase
的用法示例。
在下文中一共展示了FunctionalTestCase::importDataSet方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: importDataSet
/**
* Imports a data set represented as XML into the test database,
*
* @param string $path Absolute path to the XML file containing the data set to load
* @return void
* @throws \Exception
*/
protected function importDataSet($path)
{
if (method_exists('\\TYPO3\\CMS\\Core\\Tests\\FunctionalTestCase', 'importDataSet')) {
parent::importDataSet($path);
return;
}
if (!is_file($path)) {
throw new \Exception('Fixture file ' . $path . ' not found', 1376746261);
}
$database = $this->getDatabaseConnection();
$xml = simplexml_load_file($path);
$foreignKeys = array();
/** @var $table \SimpleXMLElement */
foreach ($xml->children() as $table) {
$insertArray = array();
/** @var $column \SimpleXMLElement */
foreach ($table->children() as $column) {
$columnName = $column->getName();
$columnValue = NULL;
if (isset($column['ref'])) {
list($tableName, $elementId) = explode('#', $column['ref']);
$columnValue = $foreignKeys[$tableName][$elementId];
} elseif (isset($column['is-NULL']) && $column['is-NULL'] === 'yes') {
$columnValue = NULL;
} else {
$columnValue = (string) $table->{$columnName};
}
$insertArray[$columnName] = $columnValue;
}
$tableName = $table->getName();
$result = $database->exec_INSERTquery($tableName, $insertArray);
if ($result === FALSE) {
$this->markTestSkipped(sprintf('Error when processing fixture file: %s. Can not insert data to table %s: %s', $path, $tableName, $database->sql_error()));
}
if (isset($table['id'])) {
$elementId = (string) $table['id'];
$foreignKeys[$tableName][$elementId] = $database->sql_insert_id();
}
}
}