PhpExecutableFinderTest.php 1.3KB

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