當前位置: 首頁>>代碼示例>>PHP>>正文


PHP FunctionalTestCase::importDataSet方法代碼示例

本文整理匯總了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();
         }
     }
 }
開發者ID:tritumRz,項目名稱:rest,代碼行數:47,代碼來源:AbstractCase.php


注:本文中的TYPO3\CMS\Core\Tests\FunctionalTestCase::importDataSet方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。