@@ -21,8 +21,8 @@ |
||
21 | 21 | { |
22 | 22 | parent::setUp(); |
23 | 23 | |
24 | - $this->importCSVDataSet(__DIR__ . '/../../Fixtures/Common/libraries.csv'); |
|
25 | - $this->importCSVDataSet(__DIR__ . '/../../Fixtures/Common/metadata.csv'); |
|
24 | + $this->importCSVDataSet(__DIR__.'/../../Fixtures/Common/libraries.csv'); |
|
25 | + $this->importCSVDataSet(__DIR__.'/../../Fixtures/Common/metadata.csv'); |
|
26 | 26 | } |
27 | 27 | |
28 | 28 | /** |
@@ -21,11 +21,11 @@ |
||
21 | 21 | class SolrSearchTest extends FunctionalTestCase |
22 | 22 | { |
23 | 23 | private static array $databaseFixtures = [ |
24 | - __DIR__ . '/../../Fixtures/Common/solrcores.csv' |
|
24 | + __DIR__.'/../../Fixtures/Common/solrcores.csv' |
|
25 | 25 | ]; |
26 | 26 | |
27 | 27 | private static array $solrFixtures = [ |
28 | - __DIR__ . '/../../Fixtures/Common/documents_1.solr.json' |
|
28 | + __DIR__.'/../../Fixtures/Common/documents_1.solr.json' |
|
29 | 29 | ]; |
30 | 30 | |
31 | 31 | private Solr $solr; |
@@ -45,9 +45,9 @@ discard block |
||
45 | 45 | $this->documentRepository = $this->initializeRepository(DocumentRepository::class, 20000); |
46 | 46 | $this->solrCoreRepository = $this->initializeRepository(SolrCoreRepository::class, 20000); |
47 | 47 | |
48 | - $this->importCSVDataSet(__DIR__ . '/../../Fixtures/Common/documents_1.csv'); |
|
49 | - $this->importCSVDataSet(__DIR__ . '/../../Fixtures/Common/libraries.csv'); |
|
50 | - $this->importCSVDataSet(__DIR__ . '/../../Fixtures/Common/metadata.csv'); |
|
48 | + $this->importCSVDataSet(__DIR__.'/../../Fixtures/Common/documents_1.csv'); |
|
49 | + $this->importCSVDataSet(__DIR__.'/../../Fixtures/Common/libraries.csv'); |
|
50 | + $this->importCSVDataSet(__DIR__.'/../../Fixtures/Common/metadata.csv'); |
|
51 | 51 | } |
52 | 52 | |
53 | 53 | /** |
@@ -128,9 +128,9 @@ discard block |
||
128 | 128 | { |
129 | 129 | $core = $this->createSolrCore(); |
130 | 130 | |
131 | - $this->importCSVDataSet(__DIR__ . '/../../Fixtures/Common/documents_fulltext.csv'); |
|
132 | - $this->importSolrDocuments($core->solr, __DIR__ . '/../../Fixtures/Common/documents_1.solr.json'); |
|
133 | - $this->importSolrDocuments($core->solr, __DIR__ . '/../../Fixtures/Common/documents_fulltext.solr.json'); |
|
131 | + $this->importCSVDataSet(__DIR__.'/../../Fixtures/Common/documents_fulltext.csv'); |
|
132 | + $this->importSolrDocuments($core->solr, __DIR__.'/../../Fixtures/Common/documents_1.solr.json'); |
|
133 | + $this->importSolrDocuments($core->solr, __DIR__.'/../../Fixtures/Common/documents_fulltext.solr.json'); |
|
134 | 134 | |
135 | 135 | $collections = $this->collectionRepository->findCollectionsBySettings([ |
136 | 136 | 'index_name' => ['Musik', 'Projekt: Dresdner Hefte'], |
@@ -23,13 +23,13 @@ |
||
23 | 23 | private $solrCoreRepository; |
24 | 24 | |
25 | 25 | private static array $databaseFixtures = [ |
26 | - __DIR__ . '/../../Fixtures/Common/documents_1.csv', |
|
27 | - __DIR__ . '/../../Fixtures/Common/pages.csv', |
|
28 | - __DIR__ . '/../../Fixtures/Common/solrcores.csv' |
|
26 | + __DIR__.'/../../Fixtures/Common/documents_1.csv', |
|
27 | + __DIR__.'/../../Fixtures/Common/pages.csv', |
|
28 | + __DIR__.'/../../Fixtures/Common/solrcores.csv' |
|
29 | 29 | ]; |
30 | 30 | |
31 | 31 | private static array $solrFixtures = [ |
32 | - __DIR__ . '/../../Fixtures/Common/documents_1.solr.json' |
|
32 | + __DIR__.'/../../Fixtures/Common/documents_1.solr.json' |
|
33 | 33 | ]; |
34 | 34 | |
35 | 35 | public function setUp(): void |
@@ -21,13 +21,13 @@ |
||
21 | 21 | { |
22 | 22 | |
23 | 23 | private static array $databaseFixtures = [ |
24 | - __DIR__ . '/../../Fixtures/Common/documents_1.csv', |
|
25 | - __DIR__ . '/../../Fixtures/Common/pages.csv', |
|
26 | - __DIR__ . '/../../Fixtures/Common/solrcores.csv' |
|
24 | + __DIR__.'/../../Fixtures/Common/documents_1.csv', |
|
25 | + __DIR__.'/../../Fixtures/Common/pages.csv', |
|
26 | + __DIR__.'/../../Fixtures/Common/solrcores.csv' |
|
27 | 27 | ]; |
28 | 28 | |
29 | 29 | private static array $solrFixtures = [ |
30 | - __DIR__ . '/../../Fixtures/Common/documents_1.solr.json' |
|
30 | + __DIR__.'/../../Fixtures/Common/documents_1.solr.json' |
|
31 | 31 | ]; |
32 | 32 | |
33 | 33 | /** |
@@ -98,7 +98,7 @@ discard block |
||
98 | 98 | $this->configurationToUseInTestInstance['EXTENSIONS']['dlf'] = $this->getDlfConfiguration(); |
99 | 99 | |
100 | 100 | if ($this->disableJsonWrappedResponse) { |
101 | - $this->frameworkExtensionsToLoad = array_filter($this->frameworkExtensionsToLoad, function ($ext) { |
|
101 | + $this->frameworkExtensionsToLoad = array_filter($this->frameworkExtensionsToLoad, function($ext) { |
|
102 | 102 | return $ext !== 'Resources/Core/Functional/Extensions/json_response'; |
103 | 103 | }); |
104 | 104 | } |
@@ -111,9 +111,9 @@ discard block |
||
111 | 111 | $this->objectManager = GeneralUtility::makeInstance(ObjectManager::class); |
112 | 112 | $this->persistenceManager = GeneralUtility::makeInstance(PersistenceManager::class); |
113 | 113 | |
114 | - $this->baseUrl = 'http://web:8000/public/typo3temp/var/tests/functional-' . $this->identifier . '/'; |
|
114 | + $this->baseUrl = 'http://web:8000/public/typo3temp/var/tests/functional-'.$this->identifier.'/'; |
|
115 | 115 | $this->httpClient = new HttpClient([ |
116 | - 'base_uri' => $this->baseUrl . 'index.php', |
|
116 | + 'base_uri' => $this->baseUrl.'index.php', |
|
117 | 117 | 'http_errors' => false, |
118 | 118 | ]); |
119 | 119 | |
@@ -164,13 +164,13 @@ discard block |
||
164 | 164 | |
165 | 165 | protected function addSiteConfig($identifier) |
166 | 166 | { |
167 | - $siteConfig = Yaml::parseFile(__DIR__ . '/../Fixtures/siteconfig.yaml'); |
|
167 | + $siteConfig = Yaml::parseFile(__DIR__.'/../Fixtures/siteconfig.yaml'); |
|
168 | 168 | $siteConfig['base'] = $this->baseUrl; |
169 | 169 | $siteConfig['languages'][0]['base'] = $this->baseUrl; |
170 | 170 | |
171 | - $siteConfigPath = $this->instancePath . '/typo3conf/sites/' . $identifier; |
|
171 | + $siteConfigPath = $this->instancePath.'/typo3conf/sites/'.$identifier; |
|
172 | 172 | @mkdir($siteConfigPath, 0775, true); |
173 | - file_put_contents($siteConfigPath . '/config.yaml', Yaml::dump($siteConfig)); |
|
173 | + file_put_contents($siteConfigPath.'/config.yaml', Yaml::dump($siteConfig)); |
|
174 | 174 | } |
175 | 175 | |
176 | 176 | protected function initializeRepository(string $className, int $storagePid) |
@@ -189,7 +189,7 @@ discard block |
||
189 | 189 | $jsonDocuments = json_decode(file_get_contents($path), true); |
190 | 190 | |
191 | 191 | $updateQuery = $solr->service->createUpdate(); |
192 | - $documents = array_map(function ($jsonDoc) use ($updateQuery) { |
|
192 | + $documents = array_map(function($jsonDoc) use ($updateQuery) { |
|
193 | 193 | $document = $updateQuery->createDocument(); |
194 | 194 | foreach ($jsonDoc as $key => $value) { |
195 | 195 | $document->setField($key, $value); |
@@ -99,7 +99,7 @@ discard block |
||
99 | 99 | $this->renderToolByName('renderSearchInDocumentTool'); |
100 | 100 | break; |
101 | 101 | default: |
102 | - $this->logger->warning('Incorrect tool configuration: "' . $this->settings['tools'] . '". Tool "' . $tool . '" does not exist.'); |
|
102 | + $this->logger->warning('Incorrect tool configuration: "'.$this->settings['tools'].'". Tool "'.$tool.'" does not exist.'); |
|
103 | 103 | } |
104 | 104 | } |
105 | 105 | } |
@@ -262,7 +262,7 @@ discard block |
||
262 | 262 | } |
263 | 263 | break; |
264 | 264 | } else { |
265 | - $this->logger->warning('File not found in fileGrp "' . $fileGrp . '"'); |
|
265 | + $this->logger->warning('File not found in fileGrp "'.$fileGrp.'"'); |
|
266 | 266 | } |
267 | 267 | } |
268 | 268 | return $image; |
@@ -346,7 +346,7 @@ discard block |
||
346 | 346 | empty($firstPageLink) |
347 | 347 | && empty($secondPageLink) |
348 | 348 | ) { |
349 | - $this->logger->warning('File not found in fileGrps "' . $this->extConf['files']['fileGrpDownload'] . '"'); |
|
349 | + $this->logger->warning('File not found in fileGrps "'.$this->extConf['files']['fileGrpDownload'].'"'); |
|
350 | 350 | } |
351 | 351 | |
352 | 352 | if (!empty($firstPageLink)) { |
@@ -384,7 +384,7 @@ discard block |
||
384 | 384 | } |
385 | 385 | } |
386 | 386 | if (empty($workLink)) { |
387 | - $this->logger->warning('File not found in fileGrps "' . $this->extConf['files']['fileGrpDownload'] . '"'); |
|
387 | + $this->logger->warning('File not found in fileGrps "'.$this->extConf['files']['fileGrpDownload'].'"'); |
|
388 | 388 | } |
389 | 389 | return $workLink; |
390 | 390 | } |
@@ -119,11 +119,11 @@ discard block |
||
119 | 119 | $fulltext['mimetype'] = $file['mimeType']; |
120 | 120 | break; |
121 | 121 | } else { |
122 | - $this->logger->notice('No full-text file found for page "' . $page . '" in fileGrp "' . $fileGrpFulltext . '"'); |
|
122 | + $this->logger->notice('No full-text file found for page "'.$page.'" in fileGrp "'.$fileGrpFulltext.'"'); |
|
123 | 123 | } |
124 | 124 | } |
125 | 125 | if (empty($fulltext)) { |
126 | - $this->logger->notice('No full-text file found for page "' . $page . '" in fileGrps "' . $this->extConf['files']['fileGrpFulltext'] . '"'); |
|
126 | + $this->logger->notice('No full-text file found for page "'.$page.'" in fileGrps "'.$this->extConf['files']['fileGrpFulltext'].'"'); |
|
127 | 127 | } |
128 | 128 | return $fulltext; |
129 | 129 | } |
@@ -141,13 +141,13 @@ discard block |
||
141 | 141 | $viewerConfiguration = '$(document).ready(function() { |
142 | 142 | if (dlfUtils.exists(dlfViewer)) { |
143 | 143 | tx_dlf_viewer = new dlfViewer({ |
144 | - controls: ["' . implode('", "', $this->controls) . '"], |
|
145 | - div: "' . $this->settings['elementId'] . '", |
|
146 | - progressElementId: "' . $this->settings['progressElementId'] . '", |
|
147 | - images: ' . json_encode($this->images) . ', |
|
148 | - fulltexts: ' . json_encode($this->fulltexts) . ', |
|
149 | - annotationContainers: ' . json_encode($this->annotationContainers) . ', |
|
150 | - useInternalProxy: ' . ($this->settings['useInternalProxy'] ? 1 : 0) . ' |
|
144 | + controls: ["' . implode('", "', $this->controls).'"], |
|
145 | + div: "' . $this->settings['elementId'].'", |
|
146 | + progressElementId: "' . $this->settings['progressElementId'].'", |
|
147 | + images: ' . json_encode($this->images).', |
|
148 | + fulltexts: ' . json_encode($this->fulltexts).', |
|
149 | + annotationContainers: ' . json_encode($this->annotationContainers).', |
|
150 | + useInternalProxy: ' . ($this->settings['useInternalProxy'] ? 1 : 0).' |
|
151 | 151 | }); |
152 | 152 | } |
153 | 153 | });'; |
@@ -240,11 +240,11 @@ discard block |
||
240 | 240 | } |
241 | 241 | break; |
242 | 242 | } else { |
243 | - $this->logger->notice('No image file found for page "' . $page . '" in fileGrp "' . $fileGrpImages . '"'); |
|
243 | + $this->logger->notice('No image file found for page "'.$page.'" in fileGrp "'.$fileGrpImages.'"'); |
|
244 | 244 | } |
245 | 245 | } |
246 | 246 | if (empty($image)) { |
247 | - $this->logger->warning('No image file found for page "' . $page . '" in fileGrps "' . $this->extConf['files']['fileGrpImages'] . '"'); |
|
247 | + $this->logger->warning('No image file found for page "'.$page.'" in fileGrps "'.$this->extConf['files']['fileGrpImages'].'"'); |
|
248 | 248 | } |
249 | 249 | return $image; |
250 | 250 | } |
@@ -21,14 +21,14 @@ |
||
21 | 21 | { |
22 | 22 | parent::setUp(); |
23 | 23 | |
24 | - $this->importCSVDataSet(__DIR__ . '/../../Fixtures/Common/documents_1.csv'); |
|
25 | - $this->importCSVDataSet(__DIR__ . '/../../Fixtures/Common/metadata.csv'); |
|
26 | - $this->importCSVDataSet(__DIR__ . '/../../Fixtures/MetsDocument/metadata_mets.csv'); |
|
24 | + $this->importCSVDataSet(__DIR__.'/../../Fixtures/Common/documents_1.csv'); |
|
25 | + $this->importCSVDataSet(__DIR__.'/../../Fixtures/Common/metadata.csv'); |
|
26 | + $this->importCSVDataSet(__DIR__.'/../../Fixtures/MetsDocument/metadata_mets.csv'); |
|
27 | 27 | } |
28 | 28 | |
29 | 29 | protected function doc(string $file) |
30 | 30 | { |
31 | - $url = 'http://web:8001/Tests/Fixtures/MetsDocument/' . $file; |
|
31 | + $url = 'http://web:8001/Tests/Fixtures/MetsDocument/'.$file; |
|
32 | 32 | $doc = AbstractDocument::getInstance($url, ['general' => ['useExternalApisForMetadata' => 0]]); |
33 | 33 | self::assertNotNull($doc); |
34 | 34 | return $doc; |