phpunit 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. #!/usr/bin/env php
  2. <?php declare(strict_types=1);
  3. /*
  4. * This file is part of PHPUnit.
  5. *
  6. * (c) Sebastian Bergmann <sebastian@phpunit.de>
  7. *
  8. * For the full copyright and license information, please view the LICENSE
  9. * file that was distributed with this source code.
  10. */
  11. if (!version_compare(PHP_VERSION, PHP_VERSION, '=')) {
  12. fwrite(
  13. STDERR,
  14. sprintf(
  15. '%s declares an invalid value for PHP_VERSION.' . PHP_EOL .
  16. 'This breaks fundamental functionality such as version_compare().' . PHP_EOL .
  17. 'Please use a different PHP interpreter.' . PHP_EOL,
  18. PHP_BINARY
  19. )
  20. );
  21. die(1);
  22. }
  23. if (version_compare('7.3.0', PHP_VERSION, '>')) {
  24. fwrite(
  25. STDERR,
  26. sprintf(
  27. 'This version of PHPUnit requires PHP >= 7.3.' . PHP_EOL .
  28. 'You are using PHP %s (%s).' . PHP_EOL,
  29. PHP_VERSION,
  30. PHP_BINARY
  31. )
  32. );
  33. die(1);
  34. }
  35. $requiredExtensions = ['dom', 'json', 'libxml', 'mbstring', 'tokenizer', 'xml', 'xmlwriter'];
  36. $unavailableExtensions = array_filter(
  37. $requiredExtensions,
  38. static function ($extension) {
  39. return !extension_loaded($extension);
  40. }
  41. );
  42. if ([] !== $unavailableExtensions) {
  43. fwrite(
  44. STDERR,
  45. sprintf(
  46. 'PHPUnit requires the "%s" extensions, but the "%s" %s not available.' . PHP_EOL,
  47. implode('", "', $requiredExtensions),
  48. implode('", "', $unavailableExtensions),
  49. count($unavailableExtensions) === 1 ? 'extension is' : 'extensions are'
  50. )
  51. );
  52. die(1);
  53. }
  54. unset($requiredExtensions, $unavailableExtensions);
  55. if (!ini_get('date.timezone')) {
  56. ini_set('date.timezone', 'UTC');
  57. }
  58. if (isset($GLOBALS['_composer_autoload_path'])) {
  59. define('PHPUNIT_COMPOSER_INSTALL', $GLOBALS['_composer_autoload_path']);
  60. unset($GLOBALS['_composer_autoload_path']);
  61. } else {
  62. foreach (array(__DIR__ . '/../../autoload.php', __DIR__ . '/../vendor/autoload.php', __DIR__ . '/vendor/autoload.php') as $file) {
  63. if (file_exists($file)) {
  64. define('PHPUNIT_COMPOSER_INSTALL', $file);
  65. break;
  66. }
  67. }
  68. unset($file);
  69. }
  70. if (!defined('PHPUNIT_COMPOSER_INSTALL')) {
  71. fwrite(
  72. STDERR,
  73. 'You need to set up the project dependencies using Composer:' . PHP_EOL . PHP_EOL .
  74. ' composer install' . PHP_EOL . PHP_EOL .
  75. 'You can learn all about Composer on https://getcomposer.org/.' . PHP_EOL
  76. );
  77. die(1);
  78. }
  79. $options = getopt('', array('prepend:'));
  80. if (isset($options['prepend'])) {
  81. require $options['prepend'];
  82. }
  83. unset($options);
  84. require PHPUNIT_COMPOSER_INSTALL;
  85. PHPUnit\TextUI\Command::main();