TYPO3  7.6
ImportInFilledDatabaseTest.php
Go to the documentation of this file.
1 <?php
2 namespace TYPO3\CMS\Impexp\Tests\Functional\Import\PagesAndTtContentWithImages;
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 $additionalFoldersToCreate = array(
23  '/fileadmin/user_upload'
24  );
25 
26  protected $pathsToLinkInTestInstance = array(
27  'typo3/sysext/impexp/Tests/Functional/Fixtures/Folders/fileadmin/user_upload/typo3_image2.jpg' => 'fileadmin/user_upload/typo3_image2.jpg',
28  );
29 
30  protected $assertionDataSetDirectory = 'typo3/sysext/impexp/Tests/Functional/Import/PagesAndTtContentWithImages/DataSet/Assertion/';
31 
36  {
37  $this->importDataSet(__DIR__ . '/../../Fixtures/Database/pages.xml');
38  $this->importDataSet(__DIR__ . '/../../Fixtures/Database/tt_content-with-image.xml');
39  $this->importDataSet(__DIR__ . '/../../Fixtures/Database/sys_language.xml');
40  $this->importDataSet(__DIR__ . '/../../Fixtures/Database/sys_file.xml');
41  $this->importDataSet(__DIR__ . '/../../Fixtures/Database/sys_file_metadata.xml');
42  $this->importDataSet(__DIR__ . '/../../Fixtures/Database/sys_file_reference.xml');
43  $this->importDataSet(__DIR__ . '/../../Fixtures/Database/sys_file_storage.xml');
44 
45  $this->import->loadFile(__DIR__ . '/ImportExportXml/pages-and-ttcontent-with-existing-different-image.xml', 1);
46  $this->import->importData(0);
47 
48  $this->assertAssertionDataSet('importPagesAndRelatedTtContentWithDifferentImageToExistingData');
49 
50  $this->assertFileEquals(__DIR__ . '/../../Fixtures/Folders/fileadmin/user_upload/typo3_image2.jpg', PATH_site . 'fileadmin/user_upload/typo3_image2.jpg');
51  $this->assertFileEquals(__DIR__ . '/Folders/Assertion/fileadmin/user_upload/typo3_image2_01.jpg', PATH_site . 'fileadmin/user_upload/typo3_image2_01.jpg');
52  }
53 
58  {
59  $this->importDataSet(__DIR__ . '/../../Fixtures/Database/pages.xml');
60  $this->importDataSet(__DIR__ . '/../../Fixtures/Database/tt_content-with-image.xml');
61  $this->importDataSet(__DIR__ . '/../../Fixtures/Database/sys_language.xml');
62  $this->importDataSet(__DIR__ . '/../../Fixtures/Database/sys_file.xml');
63  $this->importDataSet(__DIR__ . '/../../Fixtures/Database/sys_file_metadata.xml');
64  $this->importDataSet(__DIR__ . '/../../Fixtures/Database/sys_file_reference.xml');
65  $this->importDataSet(__DIR__ . '/../../Fixtures/Database/sys_file_storage.xml');
66 
67  $this->import->loadFile(__DIR__ . '/ImportExportXml/pages-and-ttcontent-with-existing-same-image.xml', 1);
68  $this->import->importData(0);
69 
70  $this->assertAssertionDataSet('importPagesAndRelatedTtContentWithSameImageToExistingData');
71 
72  $this->assertFileEquals(__DIR__ . '/../../Fixtures/Folders/fileadmin/user_upload/typo3_image2.jpg', PATH_site . 'fileadmin/user_upload/typo3_image2.jpg');
73  }
74 }