123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263 |
- <?php
- /*
- * This file is part of Psy Shell.
- *
- * (c) 2012-2017 Justin Hileman
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- namespace Psy\Test;
- use Psy\CodeCleaner;
- use Psy\Configuration;
- use Psy\ExecutionLoop\Loop;
- use Psy\Output\PassthruPager;
- use Psy\VersionUpdater\GitHubChecker;
- use Symfony\Component\Console\Output\ConsoleOutput;
- class ConfigurationTest extends \PHPUnit_Framework_TestCase
- {
- private function getConfig($configFile = null)
- {
- return new Configuration(array(
- 'configFile' => $configFile ?: __DIR__ . '/../../fixtures/empty.php',
- ));
- }
- public function testDefaults()
- {
- $config = $this->getConfig();
- $this->assertEquals(function_exists('readline'), $config->hasReadline());
- $this->assertEquals(function_exists('readline'), $config->useReadline());
- $this->assertEquals(function_exists('pcntl_signal'), $config->hasPcntl());
- $this->assertEquals(function_exists('pcntl_signal'), $config->usePcntl());
- $this->assertFalse($config->requireSemicolons());
- $this->assertSame(Configuration::COLOR_MODE_AUTO, $config->colorMode());
- $this->assertNull($config->getStartupMessage());
- }
- public function testGettersAndSetters()
- {
- $config = $this->getConfig();
- $this->assertNull($config->getDataDir());
- $config->setDataDir('wheee');
- $this->assertEquals('wheee', $config->getDataDir());
- $this->assertNull($config->getConfigDir());
- $config->setConfigDir('wheee');
- $this->assertEquals('wheee', $config->getConfigDir());
- }
- /**
- * @dataProvider directories
- */
- public function testFilesAndDirectories($home, $configFile, $historyFile, $manualDbFile)
- {
- $oldHome = getenv('HOME');
- putenv("HOME=$home");
- $config = new Configuration();
- $this->assertEquals(realpath($configFile), realpath($config->getConfigFile()));
- $this->assertEquals(realpath($historyFile), realpath($config->getHistoryFile()));
- $this->assertEquals(realpath($manualDbFile), realpath($config->getManualDbFile()));
- putenv("HOME=$oldHome");
- }
- public function directories()
- {
- $base = realpath(__DIR__ . '/../../fixtures');
- return array(
- array(
- $base . '/default',
- $base . '/default/.config/psysh/config.php',
- $base . '/default/.config/psysh/psysh_history',
- $base . '/default/.local/share/psysh/php_manual.sqlite',
- ),
- array(
- $base . '/legacy',
- $base . '/legacy/.psysh/rc.php',
- $base . '/legacy/.psysh/history',
- $base . '/legacy/.psysh/php_manual.sqlite',
- ),
- array(
- $base . '/mixed',
- $base . '/mixed/.psysh/config.php',
- $base . '/mixed/.psysh/psysh_history',
- null,
- ),
- );
- }
- public function testLoadConfig()
- {
- $config = $this->getConfig();
- $cleaner = new CodeCleaner();
- $pager = new PassthruPager(new ConsoleOutput());
- $loop = new Loop($config);
- $config->loadConfig(array(
- 'useReadline' => false,
- 'usePcntl' => false,
- 'codeCleaner' => $cleaner,
- 'pager' => $pager,
- 'loop' => $loop,
- 'requireSemicolons' => true,
- 'errorLoggingLevel' => E_ERROR | E_WARNING,
- 'colorMode' => Configuration::COLOR_MODE_FORCED,
- 'startupMessage' => 'Psysh is awesome!',
- ));
- $this->assertFalse($config->useReadline());
- $this->assertFalse($config->usePcntl());
- $this->assertSame($cleaner, $config->getCodeCleaner());
- $this->assertSame($pager, $config->getPager());
- $this->assertSame($loop, $config->getLoop());
- $this->assertTrue($config->requireSemicolons());
- $this->assertEquals(E_ERROR | E_WARNING, $config->errorLoggingLevel());
- $this->assertSame(Configuration::COLOR_MODE_FORCED, $config->colorMode());
- $this->assertSame('Psysh is awesome!', $config->getStartupMessage());
- }
- public function testLoadConfigFile()
- {
- $config = $this->getConfig(__DIR__ . '/../../fixtures/config.php');
- $runtimeDir = $this->joinPath(realpath(sys_get_temp_dir()), 'psysh_test', 'withconfig', 'temp');
- $this->assertStringStartsWith($runtimeDir, realpath($config->getTempFile('foo', 123)));
- $this->assertStringStartsWith($runtimeDir, realpath(dirname($config->getPipe('pipe', 123))));
- $this->assertStringStartsWith($runtimeDir, realpath($config->getRuntimeDir()));
- $this->assertEquals(function_exists('readline'), $config->useReadline());
- $this->assertFalse($config->usePcntl());
- $this->assertEquals(E_ALL & ~E_NOTICE, $config->errorLoggingLevel());
- }
- public function testLoadLocalConfigFile()
- {
- $oldPwd = getenv('PWD');
- putenv('PWD=' . realpath(__DIR__ . '/../../fixtures/project/'));
- $config = new Configuration();
- // When no configuration file is specified local project config is merged
- $this->assertFalse($config->useReadline());
- $this->assertTrue($config->usePcntl());
- $config = new Configuration(array('configFile' => __DIR__ . '/../../fixtures/config.php'));
- // Defining a configuration file skips loading local project config
- $this->assertTrue($config->useReadline());
- $this->assertFalse($config->usePcntl());
- putenv("PWD=$oldPwd");
- }
- /**
- * @expectedException \Psy\Exception\DeprecatedException
- */
- public function testBaseDirConfigIsDeprecated()
- {
- $config = new Configuration(array('baseDir' => 'fake'));
- }
- private function joinPath()
- {
- return implode(DIRECTORY_SEPARATOR, func_get_args());
- }
- public function testConfigIncludes()
- {
- $config = new Configuration(array(
- 'defaultIncludes' => array('/file.php'),
- 'configFile' => __DIR__ . '/../../fixtures/empty.php',
- ));
- $includes = $config->getDefaultIncludes();
- $this->assertCount(1, $includes);
- $this->assertEquals('/file.php', $includes[0]);
- }
- public function testGetOutput()
- {
- $config = $this->getConfig();
- $output = $config->getOutput();
- $this->assertInstanceOf('\Psy\Output\ShellOutput', $output);
- }
- public function getOutputDecoratedProvider()
- {
- return array(
- 'auto' => array(
- null,
- Configuration::COLOR_MODE_AUTO,
- ),
- 'forced' => array(
- true,
- Configuration::COLOR_MODE_FORCED,
- ),
- 'disabled' => array(
- false,
- Configuration::COLOR_MODE_DISABLED,
- ),
- );
- }
- /** @dataProvider getOutputDecoratedProvider */
- public function testGetOutputDecorated($expectation, $colorMode)
- {
- $config = $this->getConfig();
- $config->setColorMode($colorMode);
- $this->assertSame($expectation, $config->getOutputDecorated());
- }
- public function setColorModeValidProvider()
- {
- return array(
- 'auto' => array(Configuration::COLOR_MODE_AUTO),
- 'forced' => array(Configuration::COLOR_MODE_FORCED),
- 'disabled' => array(Configuration::COLOR_MODE_DISABLED),
- );
- }
- /** @dataProvider setColorModeValidProvider */
- public function testSetColorModeValid($colorMode)
- {
- $config = $this->getConfig();
- $config->setColorMode($colorMode);
- $this->assertEquals($colorMode, $config->colorMode());
- }
- public function testSetColorModeInvalid()
- {
- $config = $this->getConfig();
- $colorMode = 'some invalid mode';
- $this->setExpectedException(
- '\InvalidArgumentException',
- 'invalid color mode: some invalid mode'
- );
- $config->setColorMode($colorMode);
- }
- public function testSetCheckerValid()
- {
- $config = $this->getConfig();
- $checker = new GitHubChecker();
- $config->setChecker($checker);
- $this->assertSame($checker, $config->getChecker());
- }
- }
|