You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

PhpExecutableFinderTest.php 1.3KB

2 lat temu
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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($f->findArguments(), ['-qrr'], '::findArguments() returns phpdbg arguments');
  37. } else {
  38. $this->assertEquals($f->findArguments(), [], '::findArguments() returns no arguments');
  39. }
  40. }
  41. }