-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
132 lines (129 loc) · 6.7 KB
/
phpunit.xml
File metadata and controls
132 lines (129 loc) · 6.7 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<!-- For how to customize PHPUnit configuration, see core/tests/README.md. -->
<!-- TODO set checkForUnintentionallyCoveredCode="true" once https://www.drupal.org/node/2626832 is resolved. -->
<!-- PHPUnit expects functional tests to be run with either a privileged user
or your current system user. See core/tests/README.md and
https://www.drupal.org/node/2116263 for details.
-->
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
beStrictAboutChangesToGlobalState="true"
beStrictAboutOutputDuringTests="true"
beStrictAboutTestsThatDoNotTestAnything="true"
bootstrap="tests/phpunit/bootstrap.php"
cacheResult="false"
colors="true"
displayDetailsOnPhpunitDeprecations="true"
displayDetailsOnTestsThatTriggerDeprecations="true"
displayDetailsOnTestsThatTriggerErrors="true"
displayDetailsOnTestsThatTriggerNotices="true"
displayDetailsOnTestsThatTriggerWarnings="true"
failOnPhpunitDeprecation="true"
failOnSkipped="true"
failOnWarning="true"
stopOnError="true"
stopOnFailure="true"
stopOnRisky="true"
stopOnWarning="true"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.5/phpunit.xsd"
cacheDirectory=".phpunit.cache">
<php>
<!-- Set error reporting to E_ALL. -->
<ini name="error_reporting" value="32767"/>
<!-- Do not limit the amount of memory tests take to run. -->
<ini name="memory_limit" value="-1"/>
<env name="SIMPLETEST_BASE_URL" value="http://nginx:8080"/>
<env name="SIMPLETEST_DB" value="mysql://drupal:drupal@database/drupal"/>
<!-- By default, browser tests will output links that use the base URL set
in SIMPLETEST_BASE_URL. However, if your SIMPLETEST_BASE_URL is an internal
path (such as may be the case in a virtual or Docker-based environment),
you can set the base URL used in the browser test output links to something
reachable from your host machine here. This will allow you to follow them
directly and view the output. -->
<!-- This is populated dynamically in tests/phpunit/bootstrap.php -->
<!-- <env name="BROWSERTEST_OUTPUT_BASE_URL" value=""/> -->
<!-- The environment variable SYMFONY_DEPRECATIONS_HELPER is used to configure
the behavior of the deprecation tests.
Drupal core's testing framework is setting this variable to its defaults.
Projects with their own requirements need to manage this variable
explicitly.
-->
<!-- To disable deprecation testing completely uncomment the next line. -->
<!-- <env name="SYMFONY_DEPRECATIONS_HELPER" value="disabled"/> -->
<!-- Deprecation errors can be selectively ignored by specifying a file of
regular expression patterns for exclusion.
Uncomment the line below to specify a custom deprecations ignore file.
NOTE: it may be required to specify the full path to the file to run tests
correctly.
-->
<!-- <env name="SYMFONY_DEPRECATIONS_HELPER" value="ignoreFile=.deprecation-ignore.txt"/> -->
<!-- Example for changing the driver class for mink tests MINK_DRIVER_CLASS value: 'Drupal\FunctionalJavascriptTests\DrupalSelenium2Driver' -->
<env name="MINK_DRIVER_CLASS" value=""/>
<!-- Example for changing the driver args to mink tests MINK_DRIVER_ARGS value: '["http://127.0.0.1:8510"]' -->
<env name="MINK_DRIVER_ARGS" value=""/>
<!-- Driver args for webdriver tests. -->
<env name="MINK_DRIVER_ARGS_WEBDRIVER" value='["chrome", {"goog:chromeOptions": {"w3c": true, "args": ["--disable-extensions", "--disable-translate", "--force-prefers-reduced-motion", "--test-type", "--window-size=1920,1080"]}}, "http://chrome:4444/wd/hub"]'/>
</php>
<testsuites>
<testsuite name="unit">
<directory>tests/phpunit</directory>
<directory>web/modules/custom/**/tests/src/Unit</directory>
<directory>web/themes/custom/**/tests/src/Unit</directory>
</testsuite>
<testsuite name="kernel">
<directory>web/modules/custom/**/tests/src/Kernel</directory>
<directory>web/themes/custom/**/tests/src/Kernel</directory>
</testsuite>
<testsuite name="functional">
<directory>web/modules/custom/**/tests/src/Functional</directory>
<directory>web/themes/custom/**/tests/src/Functional</directory>
</testsuite>
<testsuite name="functional-javascript">
<directory>web/modules/custom/**/tests/src/FunctionalJavascript</directory>
<directory>web/themes/custom/**/tests/src/FunctionalJavascript</directory>
</testsuite>
</testsuites>
<logging>
<junit outputFile=".logs/test_results/phpunit/phpunit.xml"/>
</logging>
<!-- Settings for coverage reports. -->
<coverage includeUncoveredFiles="true"
pathCoverage="false"
ignoreDeprecatedCodeUnits="true"
disableCodeCoverageIgnore="false">
<report>
<html outputDirectory=".logs/coverage/phpunit/.coverage-html" lowUpperBound="50" highLowerBound="90"/>
<cobertura outputFile=".logs/coverage/phpunit/cobertura.xml"/>
<text outputFile=".logs/coverage/phpunit/coverage.txt"/>
</report>
</coverage>
<source>
<include>
<directory>web/modules/custom</directory>
<directory>web/themes/custom</directory>
<directory>web/sites/default/includes</directory>
<directory>web/sites/default/settings.php</directory>
</include>
<exclude>
<directory suffix="Test.php">web/modules/custom</directory>
<directory>web/modules/custom/**/node_modules</directory>
<directory>web/themes/custom/**/node_modules</directory>
<directory>tests</directory>
</exclude>
</source>
<!-- Allow skipping tests by tagging them with "@group skipped". -->
<groups>
<exclude>
<group>skipped</group>
</exclude>
</groups>
<extensions>
<!-- Functional tests HTML output logging.
Output directory is hardcoded in Drupal core's BrowserHtmlDebugTrait
to DRUPAL_ROOT/sites/simpletest/browser_output.
@see https://www.drupal.org/project/drupal/issues/2992069 -->
<bootstrap class="Drupal\TestTools\Extension\HtmlLogging\HtmlOutputLogger">
<parameter name="outputDirectory" value="web/sites/simpletest/browser_output"/>
<parameter name="verbose" value="true"/>
</bootstrap>
</extensions>
</phpunit>