TYPO3 CMS  TYPO3_8-7
PagesAndTtContentWithImagesInFilledDatabaseTest.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 
20 
25 {
30  '/fileadmin/user_upload'
31  ];
32 
37  'typo3/sysext/impexp/Tests/Functional/Fixtures/Folders/fileadmin/user_upload/typo3_image2.jpg' => 'fileadmin/user_upload/typo3_image2.jpg',
38  ];
39 
44  {
45  $subject = GeneralUtility::makeInstance(Import::class);
46  $subject->init();
47 
48  $this->importDataSet(__DIR__ . '/../Fixtures/DatabaseImports/pages.xml');
49  $this->importDataSet(__DIR__ . '/../Fixtures/DatabaseImports/tt_content-with-image.xml');
50  $this->importDataSet(__DIR__ . '/../Fixtures/DatabaseImports/sys_language.xml');
51  $this->importDataSet(__DIR__ . '/../Fixtures/DatabaseImports/sys_file.xml');
52  $this->importDataSet(__DIR__ . '/../Fixtures/DatabaseImports/sys_file_metadata.xml');
53  $this->importDataSet(__DIR__ . '/../Fixtures/DatabaseImports/sys_file_reference.xml');
54  $this->importDataSet(__DIR__ . '/../Fixtures/DatabaseImports/sys_file_storage.xml');
55 
56  $subject->loadFile(
57  __DIR__ . '/../Fixtures/XmlImports/pages-and-ttcontent-with-existing-different-image.xml',
58  1
59  );
60  $subject->importData(0);
61 
62  $this->testFilesToDelete[] = PATH_site . 'fileadmin/user_upload/typo3_image2.jpg';
63  $this->testFilesToDelete[] = PATH_site . 'fileadmin/user_upload/typo3_image2_01.jpg';
64 
65  $this->assertCSVDataSet('EXT:impexp/Tests/Functional/Fixtures/DatabaseAssertions/importPagesAndRelatedTtContentWithDifferentImageToExistingData.csv');
66 
67  $this->assertFileEquals(__DIR__ . '/../Fixtures/Folders/fileadmin/user_upload/typo3_image2.jpg', PATH_site . 'fileadmin/user_upload/typo3_image2.jpg');
68  $this->assertFileEquals(__DIR__ . '/../Fixtures/FileAssertions/typo3_image2_01.jpg', PATH_site . 'fileadmin/user_upload/typo3_image2_01.jpg');
69  }
70 
75  {
76  $subject = GeneralUtility::makeInstance(Import::class);
77  $subject->init();
78 
79  $this->importDataSet(__DIR__ . '/../Fixtures/DatabaseImports/pages.xml');
80  $this->importDataSet(__DIR__ . '/../Fixtures/DatabaseImports/tt_content-with-image.xml');
81  $this->importDataSet(__DIR__ . '/../Fixtures/DatabaseImports/sys_language.xml');
82  $this->importDataSet(__DIR__ . '/../Fixtures/DatabaseImports/sys_file.xml');
83  $this->importDataSet(__DIR__ . '/../Fixtures/DatabaseImports/sys_file_metadata.xml');
84  $this->importDataSet(__DIR__ . '/../Fixtures/DatabaseImports/sys_file_reference.xml');
85  $this->importDataSet(__DIR__ . '/../Fixtures/DatabaseImports/sys_file_storage.xml');
86 
87  $subject->loadFile(
88  __DIR__ . '/../Fixtures/XmlImports/pages-and-ttcontent-with-existing-same-image.xml',
89  1
90  );
91  $subject->importData(0);
92 
93  $this->testFilesToDelete[] = PATH_site . 'fileadmin/user_upload/typo3_image2.jpg';
94 
95  $this->assertCSVDataSet('EXT:impexp/Tests/Functional/Fixtures/DatabaseAssertions/importPagesAndRelatedTtContentWithSameImageToExistingData.csv');
96 
97  $this->assertFileEquals(__DIR__ . '/../Fixtures/Folders/fileadmin/user_upload/typo3_image2.jpg', PATH_site . 'fileadmin/user_upload/typo3_image2.jpg');
98  }
99 
125  {
126  $subject = GeneralUtility::makeInstance(Import::class);
127  $subject->init();
128 
129  // Have a single sys_file entry with uid 1
130  $this->importDataSet(__DIR__ . '/../Fixtures/DatabaseImports/sys_file_single_image.xml');
131  $this->importDataSet(__DIR__ . '/../Fixtures/DatabaseImports/sys_file_storage.xml');
132 
133  // Import file with sys_file:1 and sys_file:2, where sys_file:1 has one connected
134  // content element, and sys_file:2 has two connected content elements.
135  $subject->loadFile(
136  __DIR__ . '/../Fixtures/XmlImports/pages-and-ttcontent-with-two-images.xml',
137  1
138  );
139  $subject->importData(0);
140 
141  $this->testFilesToDelete[] = PATH_site . 'fileadmin/user_upload/typo3_image2.jpg';
142  $this->testFilesToDelete[] = PATH_site . 'fileadmin/user_upload/used-1.jpg';
143  $this->testFilesToDelete[] = PATH_site . 'fileadmin/user_upload/used-2.jpg';
144 
145  // Expect mapping is updated: one content element should still reference new sys_file:2,
146  // two others should reference new sys_file:3
147  $this->assertCSVDataSet('EXT:impexp/Tests/Functional/Fixtures/DatabaseAssertions/importPagesAndTtContentWithRemappingNewSysFileEntries.csv');
148  }
149 }
static makeInstance($className,... $constructorArguments)