-
Notifications
You must be signed in to change notification settings - Fork 10
/
phpunit.xml
117 lines (115 loc) · 6.01 KB
/
phpunit.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
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
<?xml version="1.0" encoding="UTF-8"?>
<!-- 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 bootstrap="vendor/weitzman/drupal-test-traits/src/bootstrap.php" colors="true"
beStrictAboutTestsThatDoNotTestAnything="true"
beStrictAboutOutputDuringTests="true"
beStrictAboutChangesToGlobalState="true">
<!-- TODO set printerClass="\Drupal\Tests\Listeners\HtmlOutputPrinter" once
https://youtrack.jetbrains.com/issue/WI-24808 is resolved. Drupal provides a
result printer that links to the html output results for functional tests.
Unfortunately, this breaks the output of PHPStorm's PHPUnit runner. However, if
using the command line you can add
- -printer="\Drupal\Tests\Listeners\HtmlOutputPrinter" to use it (note there
should be no spaces between the hyphens).
-->
<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"/>
<!-- Example SIMPLETEST_BASE_URL value: http://localhost -->
<env name="SIMPLETEST_BASE_URL" value="http://web"/>
<!-- Example SIMPLETEST_DB value: mysql://username:password@localhost/databasename#table_prefix -->
<env name="SIMPLETEST_DB" value="mysql://admin:admin@db/drupal_octane"/>
<!-- Example BROWSERTEST_OUTPUT_DIRECTORY value: /path/to/webroot/sites/simpletest/browser_output -->
<env name="BROWSERTEST_OUTPUT_DIRECTORY" value=""/>
<!-- To disable deprecation testing completely uncomment the next line. -->
<!-- <env name="SYMFONY_DEPRECATIONS_HELPER" value="disabled"/> -->
<!-- Example for changing the driver class for mink tests MINK_DRIVER_CLASS value: 'Drupal\FunctionalJavascriptTests\DrupalSelenium2Driver' -->
<!-- Example for changing the driver args to mink tests MINK_DRIVER_ARGS value: '["http://127.0.0.1:8510"]' -->
<!-- Example for changing the driver args to phantomjs tests MINK_DRIVER_ARGS_PHANTOMJS value: '["http://127.0.0.1:8510"]' -->
<!-- Example for changing the driver args to webdriver tests MINK_DRIVER_ARGS_WEBDRIVER value: '["firefox", null, "http://localhost:4444/wd/hub"]' -->
<!-- ExistingSite test configurations. -->
<env name="DTT_BASE_URL" value="http://web"/>
<!-- @todo We need a headless chrome container for JS tests to work out of the box. -->
<env name="DTT_API_URL" value="http://headless:9222"/>
</php>
<testsuites>
<testsuite name="unit">
<directory>./build/html/modules/custom/*/tests/src/Unit</directory>
<directory>./build/html/profiles/*/tests/src/Unit</directory>
<directory>./build/html/sites/*/modules/*/tests/src/Unit</directory>
<!-- Exclude Core Drupal tests. -->
<exclude>./build/html/core</exclude>
<exclude>./build/html/modules/contrib</exclude>
<!-- Exclude Composer's vendor directory so we don't run tests there. -->
<exclude>./vendor</exclude>
<!-- Exclude pattern lab's vendor directory inside of themes. -->
<exclude>./*/pattern-lab/vendor</exclude>
</testsuite>
<testsuite name="kernel">
<directory>./build/html/modules/custom/*/tests/src/Kernel</directory>
<directory>./build/html/profiles/*/tests/src/Kernel</directory>
<directory>./build/html/sites/*/modules/*/tests/src/Kernel</directory>
<!-- Exclude Drupal Kernal tests. -->
<exclude>./build/html/core</exclude>
<exclude>./build/html/modules/contrib</exclude>
<!-- Exclude pattern lab's vendor directory inside of themes. -->
<exclude>./*/pattern-lab/vendor</exclude>
</testsuite>
<testsuite name="functional">
<directory>./build/html/modules/custom/*/tests/src/Functional</directory>
<directory>./build/html/profiles/*/tests/src/Functional</directory>
<directory>./build/html/sites/*/modules/*/tests/src/Functional</directory>
<!-- Exclude Core Drupal Functional tests. -->
<exclude>./build/html/core</exclude>
<exclude>./build/html/modules/contrib</exclude>
<!-- Exclude pattern lab's vendor directory inside of themes. -->
<exclude>./*/pattern-lab/vendor</exclude>
</testsuite>
<testsuite name="functional-javascript">
<directory>./build/html/modules/custom/*/tests/src/FunctionalJavascript</directory>
<directory>./tests/src/ExistingSite</directory>
<exclude>./build/html/core</exclude>
<exclude>./build/html/core/vendor</exclude>
<exclude>./build/html/modules/contrib</exclude>
<!-- Exclude pattern lab's vendor directory inside of themes. -->
<exclude>./*/pattern-lab/vendor</exclude>
</testsuite>
<testsuite name="existing-site">
<directory>./build/html/modules/custom/*/tests/src/ExistingSite</directory>
<directory>./test/src/ExistingSite</directory>
<!-- Exclude Core Drupal Functional tests. -->
<exclude>./build/html/core</exclude>
<exclude>./build/html/modules/contrib</exclude>
<!-- Exclude pattern lab's vendor directory inside of themes. -->
<exclude>./src/themes/*/pattern-lab/vendor</exclude>
</testsuite>
</testsuites>
<listeners>
<listener class="\Drupal\Tests\Listeners\DrupalListener">
</listener>
<!-- The Symfony deprecation listener has to come after the Drupal listener -->
<listener class="Symfony\Bridge\PhpUnit\SymfonyTestsListener">
</listener>
</listeners>
<!-- Filter for coverage reports. -->
<filter>
<whitelist>
<directory>./includes</directory>
<directory>./lib</directory>
<directory>./modules</directory>
<directory>../modules</directory>
<directory>../sites</directory>
<!-- By definition test classes have no tests. -->
<exclude>
<directory suffix="Test.php">./</directory>
<directory suffix="TestBase.php">./</directory>
</exclude>
</whitelist>
</filter>
</phpunit>