Gush\Tests\Command\Core\CoreConfigureCommandTest::testRunCommandWithExistingConfig PHP Метод

testRunCommandWithExistingConfig() публичный Метод

    public function testRunCommandWithExistingConfig()
    {
        $command = new CoreConfigureCommand();
        $tester = $this->getCommandTester($command, ['adapters' => ['github' => ['authentication' => ['http-auth-type' => TestConfigurator::AUTH_HTTP_TOKEN, 'username' => TestConfigurator::USERNAME, 'token' => TestConfigurator::PASSWORD], 'base_url' => 'https://api.github.com/', 'repo_domain_url' => 'https://github.com']]], []);
        $this->assertFileNotExists($command->getConfig()->get('home_config'));
        $helper = $command->getHelper('gush_question');
        $helper->setInputStream($this->getInputStream("2\nno\n"));
        $tester->execute(['command' => $command->getName()], ['decorated' => false]);
        $display = $tester->getDisplay(true);
        $this->assertCommandOutputMatches(['Choose adapter:', "Choose adapter:\n[0] Nothing (skip selection)", '[1] * GitHub (RepositoryManager, IssueTracker)', 'GitHub Enterprise (RepositoryManager, IssueTracker)', "Do you want to configure other adapters? (yes/no) [no]:\n>\n[OK] Configuration file saved successfully.", ['\\[OK\\]\\sConfiguration file saved successfully\\.$', true]], $display);
        $expected = ['adapters' => ['github' => ['authentication' => ['http-auth-type' => TestConfigurator::AUTH_HTTP_TOKEN, 'username' => TestConfigurator::USERNAME, 'token' => TestConfigurator::PASSWORD], 'base_url' => 'https://api.github.com/', 'repo_domain_url' => 'https://github.com'], 'github_enterprise' => ['authentication' => ['http-auth-type' => TestConfigurator::AUTH_HTTP_TOKEN, 'username' => TestConfigurator::USERNAME, 'token' => TestConfigurator::PASSWORD], 'base_url' => 'https://api.github.com/', 'repo_domain_url' => 'https://github.com']]];
        $this->assertFileExists($command->getConfig()->get('home_config'));
        $this->assertEquals($expected, $command->getConfig()->toArray(Config::CONFIG_SYSTEM));
    }