Wednesday, May 27, 2015

Shaking out dependencies in PHPUnit unit tests

Isolation is a unit test ideal. You should, in theory, be able to run them in a random order, or in parallel, with no effect on the results.  PHPUnit provides no options to do this, but, fortunately, two neat GNU command line utilities can help.

Suppose you run your unit tests with phpunit tests

To run them in parallel, shuffling their order, you can switch the command line to:

find tests -type f -name '*Test.php' | shuf | parallel --gnu -L 1 phpunit

Here's what that pipeline does:
  1. Finds all files ending in Test.php (via "find")
  2. Shuffles the order of the files (via "shuf")
  3. Then runs as many in parallel as CPU cores (via "parallel")
Give it a whirl and see how ideal your unit tests are!

Related Posts:

  • Wielding PHP magic with the Callable Object PatternThe PHP magic method __invoke provides a powerful way to encapsulate functionality while separating state from results and errors. I'm no warlock. I eschew the magic methods PHP offers in favor of explicit method signatures.… Read More
  • PHP Contributor EtiquetteI was the first to publically +1 the Code of Conduct RFC. I'd love to see a policy that fosters diversity and inclusion, because damn the PHP crowd is startlingly similar. But, after hearing the arguments,… Read More
  • Using vim to replace string functions with their multi-byte equivalentThe PHP INI option mbstring.func_overload override certain string functions (like strpos, substr, etc.) with multi-byte aware implementations. This makes it super easy to migrate a legacy code base to UTF-8, but immediately r… Read More
  • [Proposed] Elephpant EtiquetteYes, I do believe PHP internals needs a guide to etiquette. But, no, not a code of conduct. Internals is a decades (plural) old cathedral-like meritocracy. There is no benevolent dictator. There is no functional oversight gro… Read More
  • Evoking all possible test failure modes in PHPUnitWhen you're writing your own PHPUnit test listener, you need a test case that evokes all the different PHPUnit test states. Here's you go: <?php class EvokesTest extends \PHPUnit_Framework_TestCase { public function t… Read More

0 comments:

Post a Comment

Share your thoughts!