TYPO3 CMS  TYPO3_7-6
ImportInEmptyDatabaseTest.php
Go to the documentation of this file.
1 <?php
3 
4 /*
5  * This file is part of the TYPO3 CMS project.
6  *
7  * It is free software; you can redistribute it and/or modify it under
8  * the terms of the GNU General Public License, either version 2
9  * of the License, or any later version.
10  *
11  * For the full copyright and license information, please read the
12  * LICENSE.txt file that was distributed with this source code.
13  *
14  * The TYPO3 project - inspiring people to share!
15  */
16 
21 {
22  protected $assertionDataSetDirectory = 'typo3/sysext/impexp/Tests/Functional/ImportFromVersionFourDotFive/PagesAndTtContentWithRteImagesAndFileLink/DataSet/Assertion/';
23 
27  protected function setUp()
28  {
29  parent::setUp();
30 
31  // Force the storage record to be caseSensitive "1" and prevent on-the-fly
32  // storage creation which is dependant on the OS .
33  $this->importDataSet(__DIR__ . '/../../Fixtures/Database/sys_file_storage.xml');
34  }
35 
40  {
41  $this->import->loadFile(__DIR__ . '/ImportExportXml/pages-and-ttcontent-with-rte-image-n-file-link.xml', 1);
42  $this->import->importData(0);
43 
44  $this->assertAssertionDataSet('importPagesAndRelatedTtContentWithRteImagesAndFileLink');
45 
46  $this->assertFileExists(PATH_site . 'fileadmin/user_upload/_imported/uploads/RTEmagicC_typo3_image2.jpg.jpg');
47  $this->assertFileEquals(__DIR__ . '/../../Fixtures/Folders/fileadmin/user_upload/typo3_image2.jpg', PATH_site . 'fileadmin/user_upload/_imported/RTEmagicP_typo3_image2.jpg');
48  $this->assertFileEquals(__DIR__ . '/../../Fixtures/Folders/fileadmin/user_upload/typo3_image3.jpg', PATH_site . 'fileadmin/user_upload/_imported/fileadmin/user_upload/typo3_image3.jpg');
49  $this->assertFileEquals(__DIR__ . '/../../Fixtures/Folders/uploads/tx_impexpgroupfiles/typo3_image4.jpg', PATH_site . 'fileadmin/user_upload/_imported/fileadmin/user_upload/typo3_image4.jpg');
50  }
51 }