2013-08-29 20:39:34 +02:00
|
|
|
<phpunit
|
|
|
|
bootstrap="tests/phpunit/includes/bootstrap.php"
|
|
|
|
backupGlobals="false"
|
|
|
|
colors="true"
|
2017-04-23 03:24:41 +02:00
|
|
|
beStrictAboutTestsThatDoNotTestAnything="true"
|
2013-08-29 20:39:34 +02:00
|
|
|
>
|
|
|
|
<testsuites>
|
|
|
|
<!-- Default test suite to run all tests -->
|
REST API: Introduce Autosaves controller and endpoint.
- Adds `WP_REST_Autosaves_Controller` which extends `WP_REST_Revisions_Controller`.
- Autosaves endpoint is registered for all post types except attachment because even post types without revisions enabled are expected to autosave.
- Because setting the `DOING_AUTOSAVE` constant pollutes the test suite, autosaves tests are run last. We may want to improve upon this later.
Also, use a truly impossibly high number in User Controller tests. The number `100`, (or `7777` in `trunk`), could be valid in certain test run configurations. The `REST_TESTS_IMPOSSIBLY_HIGH_NUMBER` constant is impossibly high for this very reason.
Finally, Skip Autosaves controller test for multisite. There's a PHP 5.2 edge case where paths calculated differently, possibly caused by differing version of PHPUnit.
Props adamsilverstein, aduth, azaozz, danielbachhuber, rmccue, danielbachhuber.
Merges [43767], [43768], [43769] to trunk.
See #45132, #45131.
Fixes #45128, #43316.
git-svn-id: https://develop.svn.wordpress.org/trunk@44126 602fd350-edb4-49c9-b593-d223f7449a82
2018-12-13 23:41:47 +01:00
|
|
|
<testsuite name="default">
|
2013-08-29 20:39:34 +02:00
|
|
|
<directory suffix=".php">tests/phpunit/tests</directory>
|
|
|
|
<exclude>tests/phpunit/tests/actions/closures.php</exclude>
|
|
|
|
<exclude>tests/phpunit/tests/image/editor.php</exclude>
|
2017-08-18 12:26:50 +02:00
|
|
|
<exclude>tests/phpunit/tests/image/editorGd.php</exclude>
|
|
|
|
<exclude>tests/phpunit/tests/image/editorImagick.php</exclude>
|
2015-10-07 14:00:34 +02:00
|
|
|
<exclude>tests/phpunit/tests/oembed/headers.php</exclude>
|
REST API: Introduce Autosaves controller and endpoint.
- Adds `WP_REST_Autosaves_Controller` which extends `WP_REST_Revisions_Controller`.
- Autosaves endpoint is registered for all post types except attachment because even post types without revisions enabled are expected to autosave.
- Because setting the `DOING_AUTOSAVE` constant pollutes the test suite, autosaves tests are run last. We may want to improve upon this later.
Also, use a truly impossibly high number in User Controller tests. The number `100`, (or `7777` in `trunk`), could be valid in certain test run configurations. The `REST_TESTS_IMPOSSIBLY_HIGH_NUMBER` constant is impossibly high for this very reason.
Finally, Skip Autosaves controller test for multisite. There's a PHP 5.2 edge case where paths calculated differently, possibly caused by differing version of PHPUnit.
Props adamsilverstein, aduth, azaozz, danielbachhuber, rmccue, danielbachhuber.
Merges [43767], [43768], [43769] to trunk.
See #45132, #45131.
Fixes #45128, #43316.
git-svn-id: https://develop.svn.wordpress.org/trunk@44126 602fd350-edb4-49c9-b593-d223f7449a82
2018-12-13 23:41:47 +01:00
|
|
|
<exclude>tests/phpunit/tests/rest-api/rest-autosaves-controller.php</exclude>
|
2013-08-29 20:39:34 +02:00
|
|
|
<file phpVersion="5.3.0">tests/phpunit/tests/actions/closures.php</file>
|
|
|
|
<file phpVersion="5.3.0">tests/phpunit/tests/image/editor.php</file>
|
2017-08-18 12:26:50 +02:00
|
|
|
<file phpVersion="5.3.0">tests/phpunit/tests/image/editorGd.php</file>
|
|
|
|
<file phpVersion="5.3.0">tests/phpunit/tests/image/editorImagick.php</file>
|
2015-10-07 13:00:59 +02:00
|
|
|
<file phpVersion="5.3.0">tests/phpunit/tests/oembed/headers.php</file>
|
2013-08-29 20:39:34 +02:00
|
|
|
</testsuite>
|
REST API: Introduce Autosaves controller and endpoint.
- Adds `WP_REST_Autosaves_Controller` which extends `WP_REST_Revisions_Controller`.
- Autosaves endpoint is registered for all post types except attachment because even post types without revisions enabled are expected to autosave.
- Because setting the `DOING_AUTOSAVE` constant pollutes the test suite, autosaves tests are run last. We may want to improve upon this later.
Also, use a truly impossibly high number in User Controller tests. The number `100`, (or `7777` in `trunk`), could be valid in certain test run configurations. The `REST_TESTS_IMPOSSIBLY_HIGH_NUMBER` constant is impossibly high for this very reason.
Finally, Skip Autosaves controller test for multisite. There's a PHP 5.2 edge case where paths calculated differently, possibly caused by differing version of PHPUnit.
Props adamsilverstein, aduth, azaozz, danielbachhuber, rmccue, danielbachhuber.
Merges [43767], [43768], [43769] to trunk.
See #45132, #45131.
Fixes #45128, #43316.
git-svn-id: https://develop.svn.wordpress.org/trunk@44126 602fd350-edb4-49c9-b593-d223f7449a82
2018-12-13 23:41:47 +01:00
|
|
|
<!-- Sets the DOING_AUTOSAVE constant, so needs to be run last -->
|
|
|
|
<testsuite name="restapi-autosave">
|
|
|
|
<file>tests/phpunit/tests/rest-api/rest-autosaves-controller.php</file>
|
|
|
|
</testsuite>
|
2013-08-29 20:39:34 +02:00
|
|
|
</testsuites>
|
|
|
|
<groups>
|
|
|
|
<exclude>
|
|
|
|
<group>ajax</group>
|
2016-04-20 19:10:21 +02:00
|
|
|
<group>ms-files</group>
|
2017-04-22 20:58:46 +02:00
|
|
|
<group>ms-required</group>
|
2014-11-10 15:48:28 +01:00
|
|
|
<group>external-http</group>
|
2013-08-29 20:39:34 +02:00
|
|
|
</exclude>
|
|
|
|
</groups>
|
|
|
|
<logging>
|
|
|
|
<log type="junit" target="tests/phpunit/build/logs/junit.xml" logIncompleteSkipped="false"/>
|
|
|
|
</logging>
|
2014-10-10 22:25:39 +02:00
|
|
|
<php>
|
|
|
|
<const name="WP_RUN_CORE_TESTS" value="1" />
|
|
|
|
</php>
|
2015-10-16 02:27:28 +02:00
|
|
|
<listeners>
|
|
|
|
<listener class="SpeedTrapListener" file="tests/phpunit/includes/speed-trap-listener.php">
|
|
|
|
<arguments>
|
|
|
|
<array>
|
|
|
|
<element key="slowThreshold">
|
|
|
|
<integer>150</integer>
|
|
|
|
</element>
|
|
|
|
</array>
|
|
|
|
</arguments>
|
|
|
|
</listener>
|
|
|
|
</listeners>
|
2016-05-17 22:22:57 +02:00
|
|
|
<filter>
|
2018-02-07 23:20:25 +01:00
|
|
|
<whitelist addUncoveredFilesFromWhitelist="true">
|
2016-05-17 22:22:57 +02:00
|
|
|
<directory suffix=".php">src</directory>
|
2018-02-07 23:20:25 +01:00
|
|
|
<exclude>
|
|
|
|
<!-- Third party library exclusions -->
|
|
|
|
<file>src/wp-admin/includes/class-ftp*</file>
|
|
|
|
<file>src/wp-admin/includes/class-pclzip.php</file>
|
|
|
|
<file>src/wp-admin/includes/deprecated.php</file>
|
|
|
|
<file>src/wp-admin/includes/ms-deprecated.php</file>
|
|
|
|
|
|
|
|
<file>src/wp-includes/atomlib.php</file>
|
|
|
|
<file>src/wp-includes/class-IXR.php</file>
|
|
|
|
<file>src/wp-includes/class-json.php</file>
|
|
|
|
<file>src/wp-includes/class-phpass.php</file>
|
|
|
|
<file>src/wp-includes/class-phpmailer.php</file>
|
|
|
|
<file>src/wp-includes/class-pop3.php</file>
|
|
|
|
<file>src/wp-includes/class-requests.php</file>
|
|
|
|
<file>src/wp-includes/class-simplepie.php</file>
|
|
|
|
<file>src/wp-includes/class-smtp.php</file>
|
|
|
|
<file>src/wp-includes/class-snoopy.php</file>
|
|
|
|
<file>src/wp-includes/deprecated.php</file>
|
|
|
|
<file>src/wp-includes/ms-deprecated.php</file>
|
|
|
|
<file>src/wp-includes/pluggable-deprecated.php</file>
|
|
|
|
<file>src/wp-includes/rss.php</file>
|
|
|
|
|
|
|
|
<directory suffix=".php">src/wp-includes/ID3</directory>
|
|
|
|
<directory suffix=".php">src/wp-includes/IXR</directory>
|
|
|
|
<directory suffix=".php">src/wp-includes/random_compat</directory>
|
|
|
|
<directory suffix=".php">src/wp-includes/Requests</directory>
|
|
|
|
<directory suffix=".php">src/wp-includes/SimplePie</directory>
|
|
|
|
<directory suffix=".php">src/wp-includes/Text</directory>
|
|
|
|
</exclude>
|
2016-05-17 22:22:57 +02:00
|
|
|
</whitelist>
|
|
|
|
</filter>
|
2013-08-29 20:39:34 +02:00
|
|
|
</phpunit>
|