-
Notifications
You must be signed in to change notification settings - Fork 203
/
phpunit-integration-legacy-solr.xml
77 lines (76 loc) · 4.58 KB
/
phpunit-integration-legacy-solr.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<?xml version = '1.0' encoding = 'utf-8'?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="bootstrap.php"
processIsolation="false"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
beStrictAboutTestsThatDoNotTestAnything="false"
colors="true"
failOnWarning="true"
>
<php>
<env name="setupFactory" value="EzSystems\EzPlatformSolrSearchEngine\Tests\SetupFactory\LegacySetupFactory" />
<env name="backendVersion" value="5" />
<env name="fixtureDir" value="Solr" />
<env name="solrServer" value="http://localhost:8983/" />
<env name="CORES_SETUP" value="dedicated" />
<ini name="error_reporting" value="-1" />
</php>
<testsuites>
<testsuite name="eZ\Publish\API\Repository">
<!-- Only the Solr Search tests differ from the other tests, so we
are skipping everything else
@todo: Search service is used all over the place, so we must test
all services here.
-->
<directory>eZ/Publish/API/Repository/Tests/Values/User/Limitation</directory>
<directory>eZ/Publish/API/Repository/Tests/FieldType/</directory>
<directory>eZ/Publish/API/Repository/Tests/SearchService/</directory>
<file>eZ/Publish/API/Repository/Tests/RepositoryTest.php</file>
<file>eZ/Publish/API/Repository/Tests/SectionServiceTest.php</file>
<file>eZ/Publish/API/Repository/Tests/LanguageServiceTest.php</file>
<file>eZ/Publish/API/Repository/Tests/LanguageServiceMaximumSupportedLanguagesTest.php</file>
<file>eZ/Publish/API/Repository/Tests/ContentTypeServiceTest.php</file>
<file>eZ/Publish/API/Repository/Tests/ContentServiceTest.php</file>
<file>eZ/Publish/API/Repository/Tests/NonRedundantFieldSetTest.php</file>
<file>eZ/Publish/API/Repository/Tests/LocationServiceTest.php</file>
<file>eZ/Publish/API/Repository/Tests/UserServiceTest.php</file>
<file>eZ/Publish/API/Repository/Tests/RoleServiceTest.php</file>
<file>eZ/Publish/API/Repository/Tests/TrashServiceTest.php</file>
<file>eZ/Publish/API/Repository/Tests/URLAliasServiceTest.php</file>
<file>eZ/Publish/API/Repository/Tests/URLWildcardServiceTest.php</file>
<file>eZ/Publish/API/Repository/Tests/ObjectStateServiceTest.php</file>
<file>eZ/Publish/API/Repository/Tests/SectionServiceAuthorizationTest.php</file>
<file>eZ/Publish/API/Repository/Tests/LanguageServiceAuthorizationTest.php</file>
<file>eZ/Publish/API/Repository/Tests/ContentTypeServiceAuthorizationTest.php</file>
<file>eZ/Publish/API/Repository/Tests/ContentServiceAuthorizationTest.php</file>
<file>eZ/Publish/API/Repository/Tests/LocationServiceAuthorizationTest.php</file>
<file>eZ/Publish/API/Repository/Tests/UserServiceAuthorizationTest.php</file>
<file>eZ/Publish/API/Repository/Tests/RoleServiceAuthorizationTest.php</file>
<file>eZ/Publish/API/Repository/Tests/TrashServiceAuthorizationTest.php</file>
<file>eZ/Publish/API/Repository/Tests/URLWildcardServiceAuthorizationTest.php</file>
<file>eZ/Publish/API/Repository/Tests/ObjectStateServiceAuthorizationTest.php</file>
<file>eZ/Publish/API/Repository/Tests/SearchServiceTest.php</file>
<file>eZ/Publish/API/Repository/Tests/SearchServiceFulltextTest.php</file>
<file>eZ/Publish/API/Repository/Tests/SearchServiceTranslationLanguageFallbackTest.php</file>
<file>eZ/Publish/API/Repository/Tests/SearchServiceLocationTest.php</file>
<file>eZ/Publish/API/Repository/Tests/SearchServiceAuthorizationTest.php</file>
<file>eZ/Publish/API/Repository/Tests/SearchEngineIndexingTest.php</file>
<file>eZ/Publish/API/Repository/Tests/FieldTypeServiceTest.php</file>
</testsuite>
<testsuite name="eZ\Publish\API\Repository\Tests\Regression">
<directory>eZ/Publish/API/Repository/Tests/Regression/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">eZ/Publish/API/Repository</directory>
<exclude>
<directory>eZ/Publish/API/Repository/Tests</directory>
<directory>eZ/Publish/API/Repository/Tutorials</directory>
</exclude>
</whitelist>
</filter>
</phpunit>