This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/tests/Symfony/Tests/Component/Process/PhpExecutableFinderTest.php

56 lines
1.5 KiB
PHP
Raw Normal View History

<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Tests\Component\Process;
use Symfony\Component\Process\PhpExecutableFinder;
/**
* @author Robert Schönthal <seroscho@googlemail.com>
*/
class PhpExecutableFinderTest extends \PHPUnit_Framework_TestCase
{
/**
* tests find() with the env var PHP_PATH
*/
public function testFindWithPHP_PATH()
{
$f = new PhpExecutableFinder();
$current = $f->find();
2011-06-08 18:56:59 +01:00
//not executable PHP_PATH
putenv('PHP_PATH=/not/executable/php');
2011-05-09 22:21:57 +01:00
$this->assertFalse($f->find(), '::find() returns false for not executable php');
2011-06-08 18:56:59 +01:00
//executable PHP_PATH
2011-06-08 18:56:59 +01:00
putenv('PHP_PATH='.$current);
2011-05-09 22:21:57 +01:00
$this->assertEquals($f->find(), $current, '::find() returns the executable php');
}
/**
* tests find() with default executable
*/
public function testFindWithSuffix()
{
putenv('PHP_PATH=');
putenv('PHP_PEAR_PHP_BIN=');
$f = new PhpExecutableFinder();
$current = $f->find();
2011-06-08 18:56:59 +01:00
//TODO maybe php executable is custom or even windows
2011-09-17 11:57:47 +01:00
if (!defined('PHP_WINDOWS_VERSION_BUILD')) {
$this->assertEquals($current, PHP_BINDIR.DIRECTORY_SEPARATOR.'php', '::find() returns the executable php with suffixes');
}
}
}