PhpExecutableFinderTest.php 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Symfony\Component\Process\Tests;
  11. use PHPUnit\Framework\TestCase;
  12. use Symfony\Component\Process\PhpExecutableFinder;
  13. /**
  14. * @author Robert Schönthal <seroscho@googlemail.com>
  15. */
  16. class PhpExecutableFinderTest extends TestCase
  17. {
  18. /**
  19. * tests find() with the constant PHP_BINARY.
  20. */
  21. public function testFind()
  22. {
  23. $f = new PhpExecutableFinder();
  24. $current = \PHP_BINARY;
  25. $args = 'phpdbg' === \PHP_SAPI ? ' -qrr' : '';
  26. $this->assertEquals($current.$args, $f->find(), '::find() returns the executable PHP');
  27. $this->assertEquals($current, $f->find(false), '::find() returns the executable PHP');
  28. }
  29. /**
  30. * tests find() with the env var PHP_PATH.
  31. */
  32. public function testFindArguments()
  33. {
  34. $f = new PhpExecutableFinder();
  35. if ('phpdbg' === \PHP_SAPI) {
  36. $this->assertEquals(['-qrr'], $f->findArguments(), '::findArguments() returns phpdbg arguments');
  37. } else {
  38. $this->assertEquals([], $f->findArguments(), '::findArguments() returns no arguments');
  39. }
  40. }
  41. public function testNotExitsBinaryFile()
  42. {
  43. $f = new PhpExecutableFinder();
  44. $phpBinaryEnv = \PHP_BINARY;
  45. putenv('PHP_BINARY=/usr/local/php/bin/php-invalid');
  46. $this->assertFalse($f->find(), '::find() returns false because of not exist file');
  47. $this->assertFalse($f->find(false), '::find(false) returns false because of not exist file');
  48. putenv('PHP_BINARY='.$phpBinaryEnv);
  49. }
  50. }