forked from shopware/shopware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml.dist
139 lines (131 loc) · 6.82 KB
/
phpunit.xml.dist
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.5/phpunit.xsd"
bootstrap="src/Core/TestBootstrap.php"
cacheResult="false"
executionOrder="random"
convertDeprecationsToExceptions="false">
<coverage cacheDirectory="var/cache/phpunit/" includeUncoveredFiles="false">
<include >
<!--
DO NOT change this to a more generic structure.
The phpunit file traversal is really inefficient for our test structure. A naive definition results in
more than 70000 files being traversed, which has to be done for each thread/process.
-->
<directory suffix=".php">src/Core/Framework</directory>
<directory suffix=".php">src/Core/Content</directory>
<directory suffix=".php">src/Core/Checkout</directory>
<directory suffix=".php">src/Core/DevOps</directory>
<directory suffix=".php">src/Core/Profiling</directory>
<directory suffix=".php">src/Core/System</directory>
<directory suffix=".php">src/Elasticsearch</directory>
<file>src/Core/Defaults.php</file>
<file>src/Core/HttpKernel.php</file>
<file>src/Core/HttpKernelResult.php</file>
<file>src/Core/Kernel.php</file>
<file>src/Core/PlatformRequest.php</file>
<file>src/Core/SalesChannelRequest.php</file>
<directory suffix=".php">src/Administration/Controller</directory>
<directory suffix=".php">src/Administration/DependencyInjection</directory>
<directory suffix=".php">src/Administration/Events</directory>
<directory suffix=".php">src/Administration/Framework</directory>
<directory suffix=".php">src/Administration/Service</directory>
<directory suffix=".php">src/Administration/Snippet</directory>
<file>src/Administration/Administration.php</file>
<directory suffix=".php">src/Storefront/Controller</directory>
<directory suffix=".php">src/Storefront/DependencyInjection</directory>
<directory suffix=".php">src/Storefront/Events</directory>
<directory suffix=".php">src/Storefront/Exception</directory>
<directory suffix=".php">src/Storefront/Framework</directory>
<directory suffix=".php">src/Storefront/Page</directory>
<directory suffix=".php">src/Storefront/Pagelet</directory>
<directory suffix=".php">src/Storefront/Theme</directory>
<file>src/Storefront/Storefront.php</file>
</include>
<exclude>
<directory suffix=".php">src/Core/Test</directory>
<directory suffix=".php">src/Core/Framework/Test</directory>
<directory suffix=".php">src/Core/Content/Test</directory>
<directory suffix=".php">src/Core/Checkout/Test</directory>
<directory suffix=".php">src/Core/DevOps/Test</directory>
<directory suffix=".php">src/Core/Migration</directory>
<directory suffix=".php">src/Core/Profiling/Test</directory>
<directory suffix=".php">src/Core/System/Test</directory>
<directory suffix=".php">src/Elasticsearch/Test</directory>
<directory suffix=".php">src/Administration/Test</directory>
<directory suffix=".php">src/Storefront/Test</directory>
</exclude>
</coverage>
<php>
<ini name="error_reporting" value="-1" />
<server name="KERNEL_CLASS" value="Shopware\Core\Kernel"/>
<env name="APP_ENV" value="test" />
<env name="APP_DEBUG" value="1" />
<env name="APP_SECRET" value="s$cretf0rt3st" />
<env name="SHELL_VERBOSITY" value="-1" />
<env name="SYMFONY_DEPRECATIONS_HELPER" value="disabled" />
<server name="MAILER_URL" value="null://localhost"/>
<server name="HTTPS" value="off"/>
<!--To see the full stackTrace of a Deprecation set the value to a regex matching the deprecation warning-->
<!--https://symfony.com/doc/current/components/phpunit_bridge.html#display-the-full-stack-trace-->
<!--<env name="SYMFONY_DEPRECATIONS_HELPER" value="/A tree builder without a root node is deprecated since Symfony 4\.2 and will not be supported anymore in 5\.0\./" />-->
</php>
<testsuites>
<testsuite name="administration">
<directory>src/Administration/Test</directory>
</testsuite>
<testsuite name="storefront">
<directory>src/Storefront/Test</directory>
</testsuite>
<testsuite name="checkout">
<directory>src/Core/Checkout/Test</directory>
</testsuite>
<testsuite name="content">
<directory>src/Core/Content/Test</directory>
</testsuite>
<testsuite name="framework">
<directory>src/Core/Framework/Test</directory>
<directory>src/Core/Test</directory>
</testsuite>
<testsuite name="migration">
<directory>src/Core/Migration/Test</directory>
</testsuite>
<testsuite name="profiling">
<directory>src/Core/Profiling/Test</directory>
</testsuite>
<testsuite name="system">
<directory>src/Core/System/Test</directory>
</testsuite>
<testsuite name="elasticsearch">
<directory>src/Elasticsearch/Test</directory>
</testsuite>
<testsuite name="docs">
<directory>src/Docs/Test</directory>
<directory suffix="example.php">src/Docs/Resources/current/</directory>
</testsuite>
<testsuite name="paratest">
<directory>src/Core/*/Test</directory>
<directory>src/*/Test</directory>
<exclude>src/Recovery/Test</exclude>
<exclude>src/Storefront/Test/Migration</exclude>
<exclude>src/Core/Migration/Test</exclude>
</testsuite>
</testsuites>
<listeners>
<listener class="Symfony\Bridge\PhpUnit\SymfonyTestsListener">
<arguments>
<array>
<!-- set this option to 0 to disable the DebugClassLoader integration -->
<element key="debug-class-loader"><integer>0</integer></element>
</array>
</arguments>
</listener>
<listener class="JohnKary\PHPUnit\Listener\SpeedTrapListener" />
<!--Enable to see Test structure violations. (Not formatted) -->
<!--<listener class="Shopware\Core\Framework\Test\TestCaseBase\TestValidityListener" />-->
</listeners>
<!--Enable to see the db sideeffects of the tests. -->
<!--<extensions>
<extension class="Shopware\Core\Framework\Test\TestCaseBase\DatabaseCleanTestExtension"></extension>
</extensions>-->
</phpunit>