Skip to content

Files

This branch is 3529 commits behind drush-ops/drush:master.

tests

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Jul 9, 2014
Jul 17, 2013
Sep 16, 2014
Apr 8, 2014
Jul 18, 2013
Jul 3, 2014
Apr 10, 2014
Jul 9, 2014
Apr 10, 2014
Apr 10, 2014
Jul 23, 2014
Apr 24, 2014
Apr 10, 2014
Apr 10, 2014
Jul 9, 2014
Jul 9, 2014
Jul 13, 2013
Apr 10, 2014
Aug 17, 2014
Jul 9, 2014
Apr 25, 2014
Mar 16, 2011
Apr 25, 2014
Apr 10, 2014
Apr 10, 2014
Apr 10, 2014
Aug 24, 2014
Apr 10, 2014
Sep 16, 2014
May 28, 2014
Jul 9, 2014
May 30, 2014
Apr 10, 2014
Aug 17, 2014
Aug 17, 2014
Apr 10, 2014
Apr 10, 2014
Sep 19, 2014
Aug 17, 2014
May 28, 2014
Jul 3, 2014
Apr 10, 2014
Apr 10, 2014
Apr 10, 2014
Apr 10, 2014
Apr 10, 2014
Aug 17, 2014
Aug 17, 2014
Aug 24, 2014
Jul 9, 2014
Jul 16, 2013
Aug 21, 2014
Apr 10, 2014
Apr 10, 2014

Drush's test suite is based on PHPUnit. In order to maintain high quality, our tests are run on every push by Travis

Usage

  1. Review the configuration settings in tests/phpunit.xml.dist. If customization is needed, copy to phpunit.xml and edit away.
  2. Run unit tests: unish.sh

Advanced usage

  • Run only tests matching a regex: unish.sh --filter=testVersionString
  • Skip slow tests (usually those with network usage): unish.sh --exclude-group slow
  • XML results: unish.sh --filter=testVersionString --log-junit results.xml
  • Use an alternate version of Drupal: UNISH_DRUPAL_MAJOR_VERSION=8 unish.sh ...

Reuse by Drush Commandfiles

Drush commandfiles are encouraged to ship with PHPUnit test cases that extend UnitUnishTestCase and CommandUnishTestCase. In order to run the tests, you have to point to the phpunit.xml file that used by Drush. The devel project has a wrapper script which demonstrates this - http://drupalcode.org/project/devel.git/blob/refs/heads/8.x-1.x:/run-tests-drush.sh

Cache

In order to speed up test runs, Unish (the Drush testing class) caches built Drupal sites and restores them as requested by tests. Once in while, you might need to clear this cache by deleting the /drush-cache directory.