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 declare(strict_types=1);
/*
* 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\Util\Platform;
use Symfony\Component\Console\Input\ArrayInput;
use Symfony\Component\Console\Output\BufferedOutput;
class ApplicationTest extends TestCase
{
protected function tearDown(): void
{
parent::tearDown();
Platform::clearEnv('COMPOSER_DISABLE_XDEBUG_WARN');
}
protected function setUp(): void
{
parent::setUp();
Platform::putEnv('COMPOSER_DISABLE_XDEBUG_WARN', '1');
}
/**
* @runInSeparateProcess
* @preserveGlobalState disabled
*/
public function testDevWarning(): void
{
$application = new Application;
if (!defined('COMPOSER_DEV_WARNING_TIME')) {
define('COMPOSER_DEV_WARNING_TIME', time() - 1);
}
$output = new BufferedOutput();
$application->doRun(new ArrayInput(['command' => 'about']), $output);
$expectedOutput = 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']).PHP_EOL;
self::assertStringContainsString($expectedOutput, $output->fetch());
}
/**
* @runInSeparateProcess
* @preserveGlobalState disabled
*/
public function testDevWarningSuppressedForSelfUpdate(): void
{
$this->markTestSkipped('Does not comply with Debian installed version');
$application = new Application;
$application->add(new \Composer\Command\SelfUpdateCommand);
if (!defined('COMPOSER_DEV_WARNING_TIME')) {
define('COMPOSER_DEV_WARNING_TIME', time() - 1);
}
$output = new BufferedOutput();
$application->doRun(new ArrayInput(['command' => 'self-update']), $output);
self::assertSame('', $output->fetch());
}
/**
* @runInSeparateProcess
* @see https://github.com/composer/composer/issues/12107
*/
public function testProcessIsolationWorksMultipleTimes(): void
{
$application = new Application;
$application->add(new \Composer\Command\AboutCommand);
self::assertSame(0, $application->doRun(new ArrayInput(['command' => 'about']), new BufferedOutput()));
self::assertSame(0, $application->doRun(new ArrayInput(['command' => 'about']), new BufferedOutput()));
}
}
|