@@ -51,15 +51,15 @@ discard block |
||
51 | 51 | { |
52 | 52 | parent::setUp(); |
53 | 53 | |
54 | - $this->oaiUrl = $this->baseUrl . 'index.php?id=' . $this->oaiPage; |
|
55 | - $this->oaiUrlNoStoragePid = $this->baseUrl . 'index.php?id=' . $this->oaiPageNoStoragePid; |
|
54 | + $this->oaiUrl = $this->baseUrl.'index.php?id='.$this->oaiPage; |
|
55 | + $this->oaiUrlNoStoragePid = $this->baseUrl.'index.php?id='.$this->oaiPageNoStoragePid; |
|
56 | 56 | |
57 | - $this->importCSVDataSet(__DIR__ . '/../../Fixtures/Common/documents_1.csv'); |
|
58 | - $this->importCSVDataSet(__DIR__ . '/../../Fixtures/Common/metadata.csv'); |
|
59 | - $this->importCSVDataSet(__DIR__ . '/../../Fixtures/Common/libraries.csv'); |
|
60 | - $this->importCSVDataSet(__DIR__ . '/../../Fixtures/Common/pages.csv'); |
|
61 | - $this->importDataSet(__DIR__ . '/../../Fixtures/OaiPmh/pages.xml'); |
|
62 | - $this->importCSVDataSet(__DIR__ . '/../../Fixtures/OaiPmh/solrcores.csv'); |
|
57 | + $this->importCSVDataSet(__DIR__.'/../../Fixtures/Common/documents_1.csv'); |
|
58 | + $this->importCSVDataSet(__DIR__.'/../../Fixtures/Common/metadata.csv'); |
|
59 | + $this->importCSVDataSet(__DIR__.'/../../Fixtures/Common/libraries.csv'); |
|
60 | + $this->importCSVDataSet(__DIR__.'/../../Fixtures/Common/pages.csv'); |
|
61 | + $this->importDataSet(__DIR__.'/../../Fixtures/OaiPmh/pages.xml'); |
|
62 | + $this->importCSVDataSet(__DIR__.'/../../Fixtures/OaiPmh/solrcores.csv'); |
|
63 | 63 | |
64 | 64 | $this->solrCoreRepository = $this->initializeRepository(SolrCoreRepository::class, 20000); |
65 | 65 | |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | $coreName = Solr::createCore(); |
76 | 76 | $solr = Solr::getInstance($coreName); |
77 | 77 | |
78 | - $this->importSolrDocuments($solr, __DIR__ . '/../../Fixtures/Common/documents_1.solr.json'); |
|
78 | + $this->importSolrDocuments($solr, __DIR__.'/../../Fixtures/Common/documents_1.solr.json'); |
|
79 | 79 | } |
80 | 80 | |
81 | 81 | $oaiCoreModel = $this->solrCoreRepository->findByUid(11001); |
@@ -21,8 +21,7 @@ discard block |
||
21 | 21 | use Phpoaipmh\Exception\OaipmhException; |
22 | 22 | use SimpleXMLElement; |
23 | 23 | |
24 | -class OaiPmhTest extends FunctionalTestCase |
|
25 | -{ |
|
24 | +class OaiPmhTest extends FunctionalTestCase { |
|
26 | 25 | protected $disableJsonWrappedResponse = true; |
27 | 26 | |
28 | 27 | protected $coreExtensionsToLoad = [ |
@@ -66,8 +65,7 @@ discard block |
||
66 | 65 | $this->setUpOaiSolr(); |
67 | 66 | } |
68 | 67 | |
69 | - protected function setUpOaiSolr() |
|
70 | - { |
|
68 | + protected function setUpOaiSolr() { |
|
71 | 69 | // Setup Solr only once for all tests in this suite |
72 | 70 | static $solr = null; |
73 | 71 | |
@@ -87,8 +85,7 @@ discard block |
||
87 | 85 | /** |
88 | 86 | * @test |
89 | 87 | */ |
90 | - public function correctlyRespondsOnBadVerb() |
|
91 | - { |
|
88 | + public function correctlyRespondsOnBadVerb() { |
|
92 | 89 | $client = new HttpClient(); |
93 | 90 | $response = $client->get($this->baseUrl, [ |
94 | 91 | 'query' => [ |
@@ -113,8 +110,7 @@ discard block |
||
113 | 110 | /** |
114 | 111 | * @test |
115 | 112 | */ |
116 | - public function canIdentify() |
|
117 | - { |
|
113 | + public function canIdentify() { |
|
118 | 114 | $oai = Endpoint::build($this->oaiUrl); |
119 | 115 | $identity = $oai->identify(); |
120 | 116 | |
@@ -127,8 +123,7 @@ discard block |
||
127 | 123 | /** |
128 | 124 | * @test |
129 | 125 | */ |
130 | - public function identifyGivesFallbackDatestampWhenNoDocuments() |
|
131 | - { |
|
126 | + public function identifyGivesFallbackDatestampWhenNoDocuments() { |
|
132 | 127 | $oai = Endpoint::build($this->oaiUrlNoStoragePid); |
133 | 128 | $identity = $oai->identify(); |
134 | 129 | |
@@ -138,8 +133,7 @@ discard block |
||
138 | 133 | /** |
139 | 134 | * @test |
140 | 135 | */ |
141 | - public function canListMetadataFormats() |
|
142 | - { |
|
136 | + public function canListMetadataFormats() { |
|
143 | 137 | $oai = Endpoint::build($this->oaiUrl); |
144 | 138 | $formats = $oai->listMetadataFormats(); |
145 | 139 | |
@@ -154,8 +148,7 @@ discard block |
||
154 | 148 | /** |
155 | 149 | * @test |
156 | 150 | */ |
157 | - public function canListRecords() |
|
158 | - { |
|
151 | + public function canListRecords() { |
|
159 | 152 | $oai = Endpoint::build($this->oaiUrl); |
160 | 153 | $result = $oai->listRecords('mets'); |
161 | 154 | |
@@ -168,8 +161,7 @@ discard block |
||
168 | 161 | /** |
169 | 162 | * @test |
170 | 163 | */ |
171 | - public function noRecordsUntil1900() |
|
172 | - { |
|
164 | + public function noRecordsUntil1900() { |
|
173 | 165 | $this->expectException(OaipmhException::class); |
174 | 166 | $this->expectExceptionMessage('empty list'); |
175 | 167 | |
@@ -182,8 +174,7 @@ discard block |
||
182 | 174 | /** |
183 | 175 | * @test |
184 | 176 | */ |
185 | - public function canUseResumptionToken() |
|
186 | - { |
|
177 | + public function canUseResumptionToken() { |
|
187 | 178 | // NOTE: cursor and expirationDate are optional by the specification, |
188 | 179 | // but we include them in our implementation |
189 | 180 | |
@@ -241,8 +232,7 @@ discard block |
||
241 | 232 | /** |
242 | 233 | * @test |
243 | 234 | */ |
244 | - public function noResumptionTokenForCompleteList() |
|
245 | - { |
|
235 | + public function noResumptionTokenForCompleteList() { |
|
246 | 236 | $client = new HttpClient(); |
247 | 237 | |
248 | 238 | foreach (['ListIdentifiers', 'ListRecords'] as $verb) { |
@@ -264,8 +254,7 @@ discard block |
||
264 | 254 | /** |
265 | 255 | * @test |
266 | 256 | */ |
267 | - public function canListAndResumeIdentifiers() |
|
268 | - { |
|
257 | + public function canListAndResumeIdentifiers() { |
|
269 | 258 | $oai = Endpoint::build($this->oaiUrl); |
270 | 259 | $result = $oai->listIdentifiers('mets'); |
271 | 260 | |
@@ -278,18 +267,15 @@ discard block |
||
278 | 267 | self::assertEquals('oai:de:slub-dresden:db:id-476248086', $record->identifier); |
279 | 268 | } |
280 | 269 | |
281 | - protected function parseUtc(string $dateTime) |
|
282 | - { |
|
270 | + protected function parseUtc(string $dateTime) { |
|
283 | 271 | return DateTime::createFromFormat('Y-m-d\TH:i:s\Z', $dateTime); |
284 | 272 | } |
285 | 273 | |
286 | - protected function assertUtcDateString(string $dateTime) |
|
287 | - { |
|
274 | + protected function assertUtcDateString(string $dateTime) { |
|
288 | 275 | self::assertInstanceOf(DateTime::class, $this->parseUtc($dateTime)); |
289 | 276 | } |
290 | 277 | |
291 | - protected function assertInFuture(string $dateTime) |
|
292 | - { |
|
278 | + protected function assertInFuture(string $dateTime) { |
|
293 | 279 | self::assertGreaterThan(new DateTime(), $this->parseUtc($dateTime)); |
294 | 280 | } |
295 | 281 | } |
@@ -20,8 +20,7 @@ |
||
20 | 20 | /** |
21 | 21 | * @covers JsFooterViewHelper |
22 | 22 | */ |
23 | -class JsFooterViewHelperTest extends FunctionalTestCase |
|
24 | -{ |
|
23 | +class JsFooterViewHelperTest extends FunctionalTestCase { |
|
25 | 24 | /** |
26 | 25 | * @var bool Speed up this test case, it needs no database |
27 | 26 | */ |
@@ -25,7 +25,7 @@ |
||
25 | 25 | /** |
26 | 26 | * @var bool Speed up this test case, it needs no database |
27 | 27 | */ |
28 | - protected $initializeDatabase = false; |
|
28 | + protected $initializeDatabase = FALSE; |
|
29 | 29 | |
30 | 30 | /** |
31 | 31 | * @test |
@@ -34,7 +34,7 @@ |
||
34 | 34 | |
35 | 35 | $view->assign( |
36 | 36 | 'configObject', |
37 | - [ 'wrap' => 'all.wrap = <article class="shlb-metadata-text-item metadata-title">|</article> |
|
37 | + ['wrap' => 'all.wrap = <article class="shlb-metadata-text-item metadata-title">|</article> |
|
38 | 38 | key.wrap = <label>|</label> |
39 | 39 | value.required = 1 |
40 | 40 | value.wrap = <li>|</li>' |
@@ -18,8 +18,7 @@ |
||
18 | 18 | /** |
19 | 19 | * @covers MetadataWrapVariableViewHelper |
20 | 20 | */ |
21 | -class MetadataWrapVariableViewHelperTest extends FunctionalTestCase |
|
22 | -{ |
|
21 | +class MetadataWrapVariableViewHelperTest extends FunctionalTestCase { |
|
23 | 22 | /** |
24 | 23 | * @var bool Speed up this test case, it needs no database |
25 | 24 | */ |
@@ -25,7 +25,7 @@ |
||
25 | 25 | /** |
26 | 26 | * @var bool Speed up this test case, it needs no database |
27 | 27 | */ |
28 | - protected $initializeDatabase = false; |
|
28 | + protected $initializeDatabase = FALSE; |
|
29 | 29 | |
30 | 30 | /** |
31 | 31 | * @test |
@@ -18,8 +18,7 @@ |
||
18 | 18 | /** |
19 | 19 | * @covers StdWrapViewHelper |
20 | 20 | */ |
21 | -class StdWrapViewHelperTest extends FunctionalTestCase |
|
22 | -{ |
|
21 | +class StdWrapViewHelperTest extends FunctionalTestCase { |
|
23 | 22 | /** |
24 | 23 | * @var bool Speed up this test case, it needs no database |
25 | 24 | */ |
@@ -25,7 +25,7 @@ |
||
25 | 25 | /** |
26 | 26 | * @var bool Speed up this test case, it needs no database |
27 | 27 | */ |
28 | - protected $initializeDatabase = false; |
|
28 | + protected $initializeDatabase = FALSE; |
|
29 | 29 | |
30 | 30 | /** |
31 | 31 | * @test |
@@ -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 | /** |
@@ -15,8 +15,7 @@ discard block |
||
15 | 15 | use Kitodo\Dlf\Common\Helper; |
16 | 16 | use Kitodo\Dlf\Tests\Functional\FunctionalTestCase; |
17 | 17 | |
18 | -class HelperTest extends FunctionalTestCase |
|
19 | -{ |
|
18 | +class HelperTest extends FunctionalTestCase { |
|
20 | 19 | public function setUp(): void |
21 | 20 | { |
22 | 21 | parent::setUp(); |
@@ -28,8 +27,7 @@ discard block |
||
28 | 27 | /** |
29 | 28 | * @test |
30 | 29 | */ |
31 | - public function canGetIndexNameFromUid() |
|
32 | - { |
|
30 | + public function canGetIndexNameFromUid() { |
|
33 | 31 | // Repeat to make sure caching isn't broken |
34 | 32 | for ($n = 0; $n < 2; $n++) { |
35 | 33 | // Good UID, no PID |
@@ -78,8 +76,7 @@ discard block |
||
78 | 76 | * @test |
79 | 77 | * @group getLanguageName |
80 | 78 | */ |
81 | - public function canTranslateLanguageNameToEnglish() |
|
82 | - { |
|
79 | + public function canTranslateLanguageNameToEnglish() { |
|
83 | 80 | // NOTE: This only tests in BE mode |
84 | 81 | |
85 | 82 | $this->initLanguageService('default'); |
@@ -93,8 +90,7 @@ discard block |
||
93 | 90 | * @test |
94 | 91 | * @group getLanguageName |
95 | 92 | */ |
96 | - public function canTranslateLanguageNameToGerman() |
|
97 | - { |
|
93 | + public function canTranslateLanguageNameToGerman() { |
|
98 | 94 | // NOTE: This only tests in BE mode |
99 | 95 | |
100 | 96 | $this->initLanguageService('de'); |
@@ -15,14 +15,12 @@ |
||
15 | 15 | use Kitodo\Dlf\Common\IiifUrlReader; |
16 | 16 | use Kitodo\Dlf\Tests\Functional\FunctionalTestCase; |
17 | 17 | |
18 | -class IiifUrlReaderTest extends FunctionalTestCase |
|
19 | -{ |
|
18 | +class IiifUrlReaderTest extends FunctionalTestCase { |
|
20 | 19 | /** |
21 | 20 | * @test |
22 | 21 | * @group getContent |
23 | 22 | */ |
24 | - public function getContentCheck() |
|
25 | - { |
|
23 | + public function getContentCheck() { |
|
26 | 24 | $iiifUrlReader = new IiifUrlReader(); |
27 | 25 | |
28 | 26 | $correctUrl = 'http://web:8001/Tests/Fixtures/Common/correct.txt'; |
@@ -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; |
@@ -18,8 +18,7 @@ discard block |
||
18 | 18 | use Kitodo\Dlf\Domain\Repository\SolrCoreRepository; |
19 | 19 | use Kitodo\Dlf\Tests\Functional\FunctionalTestCase; |
20 | 20 | |
21 | -class SolrSearchTest extends FunctionalTestCase |
|
22 | -{ |
|
21 | +class SolrSearchTest extends FunctionalTestCase { |
|
23 | 22 | private static array $databaseFixtures = [ |
24 | 23 | __DIR__ . '/../../Fixtures/Common/solrcores.csv' |
25 | 24 | ]; |
@@ -41,8 +40,7 @@ discard block |
||
41 | 40 | /** |
42 | 41 | * @test |
43 | 42 | */ |
44 | - public function canPrepareAndSubmit() |
|
45 | - { |
|
43 | + public function canPrepareAndSubmit() { |
|
46 | 44 | $documentRepository = $this->initializeRepository(DocumentRepository::class, 0); |
47 | 45 | $solrCoreName = $this->solrCoreRepository->findByUid(5)->getIndexName(); |
48 | 46 | $settings = ['solrcore' => $solrCoreName, 'storagePid' => 0]; |
@@ -80,8 +78,7 @@ discard block |
||
80 | 78 | $this->initializeRepository(DocumentRepository::class, 0); |
81 | 79 | } |
82 | 80 | |
83 | - protected function setUpSolr($uid, $storagePid, $solrFixtures) |
|
84 | - { |
|
81 | + protected function setUpSolr($uid, $storagePid, $solrFixtures) { |
|
85 | 82 | $this->solrCoreRepository = $this->initializeRepository(SolrCoreRepository::class, $storagePid); |
86 | 83 | |
87 | 84 | // Setup Solr only once for all tests in this suite |
@@ -51,21 +51,21 @@ discard block |
||
51 | 51 | $this->assertCount(33, $resultSet); |
52 | 52 | |
53 | 53 | $params1 = ['query' => '*']; |
54 | - $search = new SolrSearch($documentRepository, null, $settings, $params1); |
|
54 | + $search = new SolrSearch($documentRepository, NULL, $settings, $params1); |
|
55 | 55 | $search->prepare(); |
56 | 56 | $this->assertEquals(33, $search->getNumFound()); |
57 | 57 | $this->assertEquals(3, $search->getSolrResults()['numberOfToplevels']); |
58 | 58 | $this->assertCount(15, $search->getSolrResults()['documents']); |
59 | 59 | |
60 | 60 | $params2 = ['query' => '10 Keyboard pieces']; |
61 | - $search2 = new SolrSearch($documentRepository, null, $settings, $params2); |
|
61 | + $search2 = new SolrSearch($documentRepository, NULL, $settings, $params2); |
|
62 | 62 | $search2->prepare(); |
63 | 63 | $this->assertEquals(1, $search2->getNumFound()); |
64 | 64 | $this->assertEquals(1, $search2->getSolrResults()['numberOfToplevels']); |
65 | 65 | $this->assertCount(1, $search2->getSolrResults()['documents']); |
66 | 66 | |
67 | 67 | $params3 = ['query' => 'foobar']; |
68 | - $search3 = new SolrSearch($documentRepository, null, $settings, $params3); |
|
68 | + $search3 = new SolrSearch($documentRepository, NULL, $settings, $params3); |
|
69 | 69 | $search3->prepare(); |
70 | 70 | $this->assertEquals(0, $search3->getNumFound()); |
71 | 71 | $this->assertEquals(0, $search3->getSolrResults()['numberOfToplevels']); |
@@ -85,9 +85,9 @@ discard block |
||
85 | 85 | $this->solrCoreRepository = $this->initializeRepository(SolrCoreRepository::class, $storagePid); |
86 | 86 | |
87 | 87 | // Setup Solr only once for all tests in this suite |
88 | - static $solr = null; |
|
88 | + static $solr = NULL; |
|
89 | 89 | |
90 | - if ($solr === null) { |
|
90 | + if ($solr === NULL) { |
|
91 | 91 | $coreName = Solr::createCore(); |
92 | 92 | $solr = Solr::getInstance($coreName); |
93 | 93 | foreach ($solrFixtures as $filePath) { |
@@ -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,8 +23,7 @@ discard block |
||
23 | 23 | use TYPO3\CMS\Core\Core\Bootstrap; |
24 | 24 | use TYPO3\CMS\Core\Utility\GeneralUtility; |
25 | 25 | |
26 | -class SolrIndexingTest extends FunctionalTestCase |
|
27 | -{ |
|
26 | +class SolrIndexingTest extends FunctionalTestCase { |
|
28 | 27 | /** @var CollectionRepository */ |
29 | 28 | protected $collectionRepository; |
30 | 29 | |
@@ -53,8 +52,7 @@ discard block |
||
53 | 52 | /** |
54 | 53 | * @test |
55 | 54 | */ |
56 | - public function canCreateCore() |
|
57 | - { |
|
55 | + public function canCreateCore() { |
|
58 | 56 | $coreName = uniqid('testCore'); |
59 | 57 | $solr = Solr::getInstance($coreName); |
60 | 58 | self::assertNull($solr->core); |
@@ -69,8 +67,7 @@ discard block |
||
69 | 67 | /** |
70 | 68 | * @test |
71 | 69 | */ |
72 | - public function canIndexAndSearchDocument() |
|
73 | - { |
|
70 | + public function canIndexAndSearchDocument() { |
|
74 | 71 | $core = $this->createSolrCore(); |
75 | 72 | |
76 | 73 | $document = $this->documentRepository->findByUid(1001); |
@@ -124,8 +121,7 @@ discard block |
||
124 | 121 | /** |
125 | 122 | * @test |
126 | 123 | */ |
127 | - public function canSearchInCollections() |
|
128 | - { |
|
124 | + public function canSearchInCollections() { |
|
129 | 125 | $core = $this->createSolrCore(); |
130 | 126 | |
131 | 127 | $this->importCSVDataSet(__DIR__ . '/../../Fixtures/Common/documents_fulltext.csv'); |
@@ -165,8 +161,7 @@ discard block |
||
165 | 161 | /** |
166 | 162 | * @test |
167 | 163 | */ |
168 | - public function canGetIndexFieldName() |
|
169 | - { |
|
164 | + public function canGetIndexFieldName() { |
|
170 | 165 | $this->assertEquals('title_usi', Indexer::getIndexFieldName('title', 20000)); |
171 | 166 | $this->assertEquals('year_uuu', Indexer::getIndexFieldName('year', 20000)); |
172 | 167 | $this->assertEquals('', Indexer::getIndexFieldName('title')); |
@@ -94,11 +94,11 @@ |
||
94 | 94 | self::assertEquals(15, $solrSearch->getNumFound()); |
95 | 95 | |
96 | 96 | // Check that the title stored in Solr matches the title of database entry |
97 | - $docTitleInSolr = false; |
|
97 | + $docTitleInSolr = FALSE; |
|
98 | 98 | foreach ($solrSearch->getSolrResults()['documents'] as $solrDoc) { |
99 | 99 | if ($solrDoc['toplevel'] && intval($solrDoc['uid']) === intval($document->getUid())) { |
100 | 100 | self::assertEquals($document->getTitle(), $solrDoc['title']); |
101 | - $docTitleInSolr = true; |
|
101 | + $docTitleInSolr = TRUE; |
|
102 | 102 | break; |
103 | 103 | } |
104 | 104 | } |
@@ -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 |
@@ -18,8 +18,7 @@ discard block |
||
18 | 18 | use Kitodo\Dlf\Domain\Repository\SolrCoreRepository; |
19 | 19 | use Kitodo\Dlf\Tests\Functional\FunctionalTestCase; |
20 | 20 | |
21 | -class SolrSearchQueryTest extends FunctionalTestCase |
|
22 | -{ |
|
21 | +class SolrSearchQueryTest extends FunctionalTestCase { |
|
23 | 22 | private $solrCoreRepository; |
24 | 23 | |
25 | 24 | private static array $databaseFixtures = [ |
@@ -43,8 +42,7 @@ discard block |
||
43 | 42 | * @test |
44 | 43 | * @ignore |
45 | 44 | */ |
46 | - public function canExecute() |
|
47 | - { |
|
45 | + public function canExecute() { |
|
48 | 46 | $documentRepository = $this->initializeRepository(DocumentRepository::class, 0); |
49 | 47 | $settings = ['solrcore' => 4, 'storagePid' => 0]; |
50 | 48 | |
@@ -68,8 +66,7 @@ discard block |
||
68 | 66 | $this->initializeRepository(DocumentRepository::class, 0); |
69 | 67 | } |
70 | 68 | |
71 | - protected function setUpSolr($uid, $storagePid, $solrFixtures) |
|
72 | - { |
|
69 | + protected function setUpSolr($uid, $storagePid, $solrFixtures) { |
|
73 | 70 | $this->solrCoreRepository = $this->initializeRepository(SolrCoreRepository::class, $storagePid); |
74 | 71 | |
75 | 72 | // Setup Solr only once for all tests in this suite |
@@ -73,9 +73,9 @@ |
||
73 | 73 | $this->solrCoreRepository = $this->initializeRepository(SolrCoreRepository::class, $storagePid); |
74 | 74 | |
75 | 75 | // Setup Solr only once for all tests in this suite |
76 | - static $solr = null; |
|
76 | + static $solr = NULL; |
|
77 | 77 | |
78 | - if ($solr === null) { |
|
78 | + if ($solr === NULL) { |
|
79 | 79 | $coreName = Solr::createCore(); |
80 | 80 | $solr = Solr::getInstance($coreName); |
81 | 81 | foreach ($solrFixtures as $filePath) { |