1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
|
<?php
/*
* This file is part of composer/xdebug-handler.
*
* (c) Composer <https://github.com/composer>
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*/
namespace Composer\XdebugHandler;
use Composer\XdebugHandler\Helpers\BaseTestCase;
use Composer\XdebugHandler\Helpers\EnvHelper;
use Composer\XdebugHandler\Mocks\CoreMock;
/**
* We use PHP_BINARY which only became available in PHP 5.4
*
* @requires PHP 5.4
*/
class SettingsTest extends BaseTestCase
{
/**
* Tests that the restart settings are correctly set.
*
* @param callable $iniFunc IniHelper method to use
* @param mixed $scanDir Initial value for PHP_INI_SCAN_DIR
* @param $phprc Initial value for PHPRC
* @dataProvider environmentProvider
*/
public function testGetRestartSettings($iniFunc, $scanDir, $phprc)
{
if ($message = EnvHelper::shouldSkipTest($scanDir)) {
$this->markTestSkipped($message);
}
$ini = EnvHelper::setInis($iniFunc, $scanDir, $phprc);
$loaded = true;
CoreMock::createAndCheck($loaded);
$settings = CoreMock::getRestartSettings();
$this->assertTrue(is_string($settings['tmpIni']));
$this->assertSame($ini->hasScannedInis(), $settings['scannedInis']);
$this->assertSame($scanDir, $settings['scanDir']);
$this->assertSame($phprc, $settings['phprc']);
$this->assertSame(CoreMock::getAllIniFiles(), $settings['inis']);
$this->assertSame(CoreMock::TEST_VERSION, $settings['skipped']);
}
public function environmentProvider()
{
return EnvHelper::dataProvider();
}
/**
* Tests that a call with existing restart settings updates the current
* settings.
*/
public function testSyncSettings()
{
$ini = EnvHelper::setInis('setAllInis', false, false);
// Create the settings in the environment
$loaded = true;
CoreMock::createAndCheck($loaded);
$originalInis = getenv(CoreMock::ORIGINAL_INIS);
// Unset env ORIGINAL_INIS to mock a call by a different application
putenv(CoreMock::ORIGINAL_INIS);
unset($_SERVER[CoreMock::ORIGINAL_INIS]);
// Mock not loaded ($inRestart and $skipped statics are unset)
$loaded = false;
CoreMock::createAndCheck($loaded);
// Env ORIGINAL_INIS must be set and be a string
$this->assertSame($originalInis, getenv(CoreMock::ORIGINAL_INIS));
$this->assertSame($originalInis, $_SERVER[CoreMock::ORIGINAL_INIS]);
// Skipped version must be set
$this->assertSame(CoreMock::TEST_VERSION, CoreMock::getSkippedVersion());
}
}
|