forked from ezsystems/ezpublish-kernel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit-integration-legacy-solr.xml
65 lines (64 loc) · 3.76 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
<?xml version="1.0" encoding="utf-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="bootstrap.php"
processIsolation="false"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
colors="true"
>
<php>
<env name="setupFactory" value="eZ\Publish\API\Repository\Tests\SetupFactory\LegacySolr" />
<env name="backendVersion" value="5" />
<env name="fixtureDir" value="Solr" />
<env name="solrServer" value="http://localhost:8983/" />
</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.
-->
<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/SearchServiceAuthorizationTest.php</file>
<file>eZ/Publish/API/Repository/Tests/LimitationTest.php</file>
<directory>eZ/Publish/API/Repository/Tests/Values/User/Limitation</directory>
<directory>eZ/Publish/API/Repository/Tests/FieldType/</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>