12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <?php
- /*
- * This file is part of Composer.
- *
- * (c) Nils Adermann <naderman@naderman.de>
- * Jordi Boggiano <j.boggiano@seld.be>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- namespace Composer\Test;
- use Composer\Test\Mock\XdebugHandlerMock;
- /**
- * @author John Stevenson <john-stevenson@blueyonder.co.uk>
- */
- class XdebugHandlerTest extends \PHPUnit_Framework_TestCase
- {
- public static $envAllow;
- public function testRestartWhenLoaded()
- {
- $loaded = true;
- $xdebug = new XdebugHandlerMock($loaded);
- $xdebug->check();
- $this->assertTrue($xdebug->restarted || !defined('PHP_BINARY'));
- }
- public function testNoRestartWhenNotLoaded()
- {
- $loaded = false;
- $xdebug = new XdebugHandlerMock($loaded);
- $xdebug->check();
- $this->assertFalse($xdebug->restarted);
- }
- public function testNoRestartWhenLoadedAndAllowed()
- {
- $loaded = true;
- putenv(XdebugHandlerMock::ENV_ALLOW.'=1');
- $xdebug = new XdebugHandlerMock($loaded);
- $xdebug->check();
- $this->assertFalse($xdebug->restarted);
- }
- public static function setUpBeforeClass()
- {
- self::$envAllow = (bool) getenv(XdebugHandlerMock::ENV_ALLOW);
- }
- public static function tearDownAfterClass()
- {
- if (self::$envAllow) {
- putenv(XdebugHandlerMock::ENV_ALLOW.'=1');
- } else {
- putenv(XdebugHandlerMock::ENV_ALLOW.'=0');
- }
- }
- protected function setUp()
- {
- putenv(XdebugHandlerMock::ENV_ALLOW.'=0');
- }
- }
|