forked from shopware/shopware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml.dist
159 lines (147 loc) · 7.81 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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<?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="true">
<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/Maintenance</directory>
<directory suffix=".php">src/Core/System</directory>
<directory suffix=".php">src/Core/Installer</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/Elasticsearch</directory>
<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/Notification</directory>
<directory suffix=".php">src/Administration/Service</directory>
<directory suffix=".php">src/Administration/Snippet</directory>
<directory suffix=".php">src/Administration/System</directory>
<file>src/Administration/Administration.php</file>
<directory suffix=".php">src/Storefront/Checkout</directory>
<directory suffix=".php">src/Storefront/Controller</directory>
<directory suffix=".php">src/Storefront/DependencyInjection</directory>
<directory suffix=".php">src/Storefront/Event</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>
<file>src/Core/Test/FeatureFlagExtension.php</file>
<file>src/Core/Test/Annotation/ActiveFeatures.php</file>
</include>
<exclude>
<file>src/Core/Framework/Adapter/Twig/functions.php</file>
<directory suffix=".php">src/Core/Test/Integration/Builder</directory>
<directory suffix=".php">src/Core/Framework/Test</directory>
<directory suffix=".php">src/Core/Content/Test</directory>
<directory suffix=".php">src/Core/DevOps/StaticAnalyze</directory>
<directory suffix=".php">src/Core/DevOps/Test</directory>
<directory suffix=".php">src/Core/Maintenance/Test</directory>
<directory suffix=".php">src/Core/Migration/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>
<directory suffix=".php">./vendor</directory>
<directory suffix=".php">./var</directory>
<directory suffix="Definition.php">src/</directory>
<directory suffix="Entity.php">src/</directory>
<directory suffix="Event.php">src/</directory>
<directory suffix="Field.php">src/</directory>
<directory suffix="Struct.php">src/</directory>
<directory suffix="Collection.php">src/</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="SHOPWARE_HTTP_CACHE_ENABLED" value="0" />
<env name="SHELL_VERBOSITY" value="-1" />
<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="ignoreFile=./deprecation.ignore" />-->
<env name="SYMFONY_DEPRECATIONS_HELPER" value="disabled" />
</php>
<testsuites>
<testsuite name="administration">
<directory>src/Administration/Test</directory>
</testsuite>
<testsuite name="storefront">
<directory>src/Storefront/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="maintenance">
<directory>src/Core/Maintenance/Test</directory>
</testsuite>
<testsuite name="system">
<directory>src/Core/System/Test</directory>
</testsuite>
<testsuite name="unit">
<directory>tests/unit</directory>
</testsuite>
<testsuite name="integration">
<directory>tests/integration</directory>
</testsuite>
<testsuite name="migration-tests">
<directory>tests/migration</directory>
</testsuite>
<testsuite name="paratest">
<directory>src/Core/*/Test</directory>
<directory>src/*/Test</directory>
<directory>tests/unit</directory>
<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>
<element key="time-sensitive"><string>Symfony\Bridge\Doctrine\Middleware\Debug</string></element>
</array>
</arguments>
</listener>
<listener class="JohnKary\PHPUnit\Listener\SpeedTrapListener" />
<listener class="Shopware\Core\Test\PHPUnit\Extension\DatadogListener" />
</listeners>
<extensions>
<extension class="Shopware\Core\Test\PHPUnit\Extension\FeatureFlagExtension" />
<!--Enable to see the db sideeffects of the tests. -->
<!--<extension class="Shopware\Core\Framework\Test\TestCaseBase\DatabaseCleanTestExtension" />-->
</extensions>
</phpunit>