TYPO3 CMS  TYPO3_7-6
ImportInFilledDatabaseTest.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 {
23  '/fileadmin/user_upload'
24  ];
25 
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->testFilesToDelete[] = PATH_site . 'fileadmin/user_upload/typo3_image2.jpg';
49  $this->testFilesToDelete[] = PATH_site . 'fileadmin/user_upload/typo3_image2_01.jpg';
50 
51  $this->assertAssertionDataSet('importPagesAndRelatedTtContentWithDifferentImageToExistingData');
52 
53  $this->assertFileEquals(__DIR__ . '/../../Fixtures/Folders/fileadmin/user_upload/typo3_image2.jpg', PATH_site . 'fileadmin/user_upload/typo3_image2.jpg');
54  $this->assertFileEquals(__DIR__ . '/Folders/Assertion/fileadmin/user_upload/typo3_image2_01.jpg', PATH_site . 'fileadmin/user_upload/typo3_image2_01.jpg');
55  }
56 
61  {
62  $this->importDataSet(__DIR__ . '/../../Fixtures/Database/pages.xml');
63  $this->importDataSet(__DIR__ . '/../../Fixtures/Database/tt_content-with-image.xml');
64  $this->importDataSet(__DIR__ . '/../../Fixtures/Database/sys_language.xml');
65  $this->importDataSet(__DIR__ . '/../../Fixtures/Database/sys_file.xml');
66  $this->importDataSet(__DIR__ . '/../../Fixtures/Database/sys_file_metadata.xml');
67  $this->importDataSet(__DIR__ . '/../../Fixtures/Database/sys_file_reference.xml');
68  $this->importDataSet(__DIR__ . '/../../Fixtures/Database/sys_file_storage.xml');
69 
70  $this->import->loadFile(__DIR__ . '/ImportExportXml/pages-and-ttcontent-with-existing-same-image.xml', 1);
71  $this->import->importData(0);
72 
73  $this->testFilesToDelete[] = PATH_site . 'fileadmin/user_upload/typo3_image2.jpg';
74 
75  $this->assertAssertionDataSet('importPagesAndRelatedTtContentWithSameImageToExistingData');
76 
77  $this->assertFileEquals(__DIR__ . '/../../Fixtures/Folders/fileadmin/user_upload/typo3_image2.jpg', PATH_site . 'fileadmin/user_upload/typo3_image2.jpg');
78  }
79 }