本文整理汇总了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();
}
}
}