2014-09-08 18:24:04 +00:00
< ? 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\TestCase ;
class ApplicationTest extends TestCase
{
public function testDevWarning ()
{
$application = new Application ;
$inputMock = $this -> getMock ( 'Symfony\Component\Console\Input\InputInterface' );
$outputMock = $this -> getMock ( 'Symfony\Component\Console\Output\OutputInterface' );
$inputMock -> expects ( $this -> once ())
-> method ( 'getFirstArgument' )
-> will ( $this -> returnValue ( 'list' ));
$outputMock -> expects ( $this -> once ())
2015-02-06 12:52:44 +00:00
-> method ( " write " )
2015-05-01 10:54:55 +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' ])));
2014-09-08 18:24:04 +00:00
if ( ! defined ( 'COMPOSER_DEV_WARNING_TIME' )) {
define ( 'COMPOSER_DEV_WARNING_TIME' , time () - 1 );
}
$this -> setExpectedException ( 'RuntimeException' );
$application -> doRun ( $inputMock , $outputMock );
}
public function ensureNoDevWarning ( $command )
{
$application = new Application ;
$application -> add ( new \Composer\Command\SelfUpdateCommand );
$inputMock = $this -> getMock ( 'Symfony\Component\Console\Input\InputInterface' );
$outputMock = $this -> getMock ( 'Symfony\Component\Console\Output\OutputInterface' );
$inputMock -> expects ( $this -> once ())
-> method ( 'getFirstArgument' )
-> will ( $this -> returnValue ( $command ));
$outputMock -> expects ( $this -> never ())
-> method ( " writeln " );
if ( ! defined ( 'COMPOSER_DEV_WARNING_TIME' )) {
define ( 'COMPOSER_DEV_WARNING_TIME' , time () - 1 );
}
$this -> setExpectedException ( 'RuntimeException' );
$application -> doRun ( $inputMock , $outputMock );
}
public function testDevWarningPrevented ()
{
$this -> ensureNoDevWarning ( 'self-update' );
}
public function testDevWarningPreventedAlias ()
{
$this -> ensureNoDevWarning ( 'self-up' );
}
}