runner.php 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. <?php namespace Laravel\CLI\Tasks\Test;
  2. use Laravel\File;
  3. use Laravel\Bundle;
  4. use Laravel\Request;
  5. use Laravel\CLI\Tasks\Task;
  6. class Runner extends Task {
  7. /**
  8. * Run all of the unit tests for the application.
  9. *
  10. * @return void
  11. */
  12. public function run($bundles = array())
  13. {
  14. if (count($bundles) == 0) $bundles = array(DEFAULT_BUNDLE);
  15. $this->bundle($bundles);
  16. }
  17. /**
  18. * Run the tests for the Laravel framework.
  19. *
  20. * @return void
  21. */
  22. public function core()
  23. {
  24. if ( ! is_dir(path('bundle').'laravel-tests'))
  25. {
  26. throw new \Exception("The bundle [laravel-tests] has not been installed!");
  27. }
  28. // When testing the Laravel core, we will just stub the path directly
  29. // so the test bundle is not required to be registered in the bundle
  30. // configuration, as it is kind of a unique bundle.
  31. $this->stub(path('bundle').'laravel-tests/cases');
  32. $path = path('bundle').'laravel-tests/';
  33. $this->test();
  34. }
  35. /**
  36. * Run the tests for a given bundle.
  37. *
  38. * @param array $bundles
  39. * @return void
  40. */
  41. public function bundle($bundles = array())
  42. {
  43. if (count($bundles) == 0)
  44. {
  45. $bundles = Bundle::names();
  46. }
  47. foreach ($bundles as $bundle)
  48. {
  49. // To run PHPUnit for the application, bundles, and the framework
  50. // from one task, we'll dynamically stub PHPUnit.xml files via
  51. // the task and point the test suite to the correct directory
  52. // based on what was requested.
  53. if (is_dir($path = Bundle::path($bundle).'tests'))
  54. {
  55. $this->stub($path);
  56. $this->test();
  57. }
  58. }
  59. }
  60. /**
  61. * Run PHPUnit with the temporary XML configuration.
  62. *
  63. * @return void
  64. */
  65. protected function test()
  66. {
  67. // We'll simply fire off PHPUnit with the configuration switch
  68. // pointing to our temporary configuration file. This allows
  69. // us to flexibly run tests for any setup.
  70. $path = path('base').'phpunit.xml';
  71. // fix the spaced directories problem when using the command line
  72. // strings with spaces inside should be wrapped in quotes.
  73. $path = escapeshellarg($path);
  74. passthru('phpunit --configuration '.$path);
  75. @unlink($path);
  76. }
  77. /**
  78. * Write a stub phpunit.xml file to the base directory.
  79. *
  80. * @param string $directory
  81. * @return void
  82. */
  83. protected function stub($directory)
  84. {
  85. $path = path('sys').'cli/tasks/test/';
  86. $stub = File::get($path.'stub.xml');
  87. // The PHPUnit bootstrap file contains several items that are swapped
  88. // at test time. This allows us to point PHPUnit at a few different
  89. // locations depending on what the developer wants to test.
  90. foreach (array('bootstrap', 'directory') as $item)
  91. {
  92. $stub = $this->{"swap_{$item}"}($stub, $path, $directory);
  93. }
  94. File::put(path('base').'phpunit.xml', $stub);
  95. }
  96. /**
  97. * Swap the bootstrap file in the stub.
  98. *
  99. * @param string $stub
  100. * @param string $path
  101. * @param string $directory
  102. * @return string
  103. */
  104. protected function swap_bootstrap($stub, $path, $directory)
  105. {
  106. return str_replace('{{bootstrap}}', $path.'phpunit.php', $stub);
  107. }
  108. /**
  109. * Swap the directory in the stub.
  110. *
  111. * @param string $stub
  112. * @param string $path
  113. * @param string $directory
  114. * @return string
  115. */
  116. protected function swap_directory($stub, $path, $directory)
  117. {
  118. return str_replace('{{directory}}', $directory, $stub);
  119. }
  120. }