1
0
Fork 0
composer/tests/Composer/Test/ApplicationTest.php

149 lines
4.8 KiB
PHP
Raw Normal View History

<?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\Console\Application;
use Composer\XdebugHandler\XdebugHandler;
use Symfony\Component\Console\Output\OutputInterface;
class ApplicationTest extends TestCase
{
public function tearDown()
{
parent::tearDown();
putenv('COMPOSER_NO_INTERACTION');
}
public function testDevWarning()
{
$application = new Application;
$inputMock = $this->getMockBuilder('Symfony\Component\Console\Input\InputInterface')->getMock();
$outputMock = $this->getMockBuilder('Symfony\Component\Console\Output\OutputInterface')->getMock();
2019-08-29 13:09:26 +00:00
putenv('COMPOSER_NO_INTERACTION=1');
2016-05-05 23:28:45 +00:00
$index = 0;
2016-07-12 16:12:50 +00:00
$inputMock->expects($this->at($index++))
->method('hasParameterOption')
->with($this->equalTo('--no-plugins'))
->will($this->returnValue(true));
2019-08-29 13:23:45 +00:00
$inputMock->expects($this->at($index++))
->method('setInteractive')
->with($this->equalTo(false));
2019-01-28 14:44:21 +00:00
$inputMock->expects($this->at($index++))
->method('hasParameterOption')
->with($this->equalTo('--no-cache'))
->will($this->returnValue(false));
2016-05-05 23:28:45 +00:00
$inputMock->expects($this->at($index++))
->method('getParameterOption')
->with($this->equalTo(array('--working-dir', '-d')))
->will($this->returnValue(false));
2016-05-03 06:26:14 +00:00
2017-08-08 08:43:26 +00:00
$inputMock->expects($this->any())
->method('getFirstArgument')
2017-08-08 08:43:26 +00:00
->will($this->returnValue('show'));
$index = 0;
2016-04-18 21:17:04 +00:00
$outputMock->expects($this->at($index++))
2020-02-07 04:43:57 +00:00
->method("write");
2016-04-18 21:17:04 +00:00
if (XdebugHandler::isXdebugActive()) {
$outputMock->expects($this->at($index++))
->method("getVerbosity")
->willReturn(OutputInterface::VERBOSITY_NORMAL);
$outputMock->expects($this->at($index++))
->method("write")
2021-01-12 13:59:21 +00:00
->with($this->equalTo('<warning>Composer is operating slower than normal because you have Xdebug enabled. See https://getcomposer.org/xdebug</warning>'));
}
$outputMock->expects($this->at($index++))
->method("getVerbosity")
->willReturn(OutputInterface::VERBOSITY_NORMAL);
$outputMock->expects($this->at($index++))
->method("write")
2021-01-12 13:59:21 +00:00
->with($this->equalTo(sprintf('<warning>Warning: This development build of Composer is over 60 days old. It is recommended to update it by running "%s self-update" to get the latest version.</warning>', $_SERVER['PHP_SELF'])));
if (!defined('COMPOSER_DEV_WARNING_TIME')) {
define('COMPOSER_DEV_WARNING_TIME', time() - 1);
}
$application->doRun($inputMock, $outputMock);
}
/**
* @param string $command
* @return void
*/
public function ensureNoDevWarning($command)
{
$application = new Application;
$application->add(new \Composer\Command\SelfUpdateCommand);
$inputMock = $this->getMockBuilder('Symfony\Component\Console\Input\InputInterface')->getMock();
$outputMock = $this->getMockBuilder('Symfony\Component\Console\Output\OutputInterface')->getMock();
2019-08-29 13:09:26 +00:00
putenv('COMPOSER_NO_INTERACTION=1');
2016-05-05 23:28:45 +00:00
$index = 0;
2016-07-12 16:12:50 +00:00
$inputMock->expects($this->at($index++))
->method('hasParameterOption')
->with($this->equalTo('--no-plugins'))
->will($this->returnValue(true));
2019-08-29 13:23:45 +00:00
$inputMock->expects($this->at($index++))
->method('setInteractive')
->with($this->equalTo(false));
2019-01-28 14:44:21 +00:00
$inputMock->expects($this->at($index++))
->method('hasParameterOption')
->with($this->equalTo('--no-cache'))
->will($this->returnValue(false));
2016-05-05 23:28:45 +00:00
$inputMock->expects($this->at($index++))
->method('getParameterOption')
->with($this->equalTo(array('--working-dir', '-d')))
->will($this->returnValue(false));
2017-08-08 08:43:26 +00:00
$inputMock->expects($this->any())
->method('getFirstArgument')
2017-08-08 08:43:26 +00:00
->will($this->returnValue('show'));
2016-05-05 23:28:45 +00:00
$outputMock->expects($this->never())
->method("writeln");
if (!defined('COMPOSER_DEV_WARNING_TIME')) {
define('COMPOSER_DEV_WARNING_TIME', time() - 1);
}
$application->doRun($inputMock, $outputMock);
}
public function testDevWarningPrevented()
{
$this->ensureNoDevWarning('self-update');
}
public function testDevWarningPreventedAlias()
{
$this->ensureNoDevWarning('self-up');
}
}