mirror of https://github.com/hauke68/Magallanes
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
93 lines
4.0 KiB
93 lines
4.0 KiB
<?php
|
|
namespace Mage\Tests\Command\BuiltIn\Config;
|
|
|
|
use Mage\Command\BuiltIn\Config\EnvironmentsCommand;
|
|
use Mage\Command\AbstractCommand;
|
|
use Mage\Tests\MageTestApplication;
|
|
use Mage\Tests\Runtime\RuntimeMockup;
|
|
use Symfony\Component\Console\Tester\CommandTester;
|
|
use PHPUnit_Framework_TestCase as TestCase;
|
|
|
|
class EnvironmentsCommandTest extends TestCase
|
|
{
|
|
public function testConfigDumpTermination()
|
|
{
|
|
$application = new MageTestApplication();
|
|
$application->add(new EnvironmentsCommand());
|
|
|
|
$runtime = new RuntimeMockup();
|
|
$runtime->setConfiguration(array(
|
|
'environments' =>
|
|
array(
|
|
'test' =>
|
|
array(
|
|
'user' => 'tester',
|
|
'branch' => 'test',
|
|
'host_path' => '/var/www/test',
|
|
'releases' => 4,
|
|
'exclude' =>
|
|
array(
|
|
0 => 'vendor',
|
|
1 => 'app/cache',
|
|
2 => 'app/log',
|
|
3 => 'web/app_dev.php',
|
|
),
|
|
'hosts' =>
|
|
array(
|
|
0 => 'testhost',
|
|
),
|
|
'pre-deploy' =>
|
|
array(
|
|
0 => 'git/update',
|
|
1 => 'composer/install',
|
|
2 => 'composer/generate-autoload',
|
|
),
|
|
'on-deploy' =>
|
|
array(
|
|
0 =>
|
|
array(
|
|
'symfony/cache-clear' =>
|
|
array(
|
|
'env' => 'dev',
|
|
),
|
|
),
|
|
1 =>
|
|
array(
|
|
'symfony/cache-warmup' =>
|
|
array(
|
|
'env' => 'dev',
|
|
),
|
|
),
|
|
2 =>
|
|
array(
|
|
'symfony/assets-install' =>
|
|
array(
|
|
'env' => 'dev',
|
|
),
|
|
),
|
|
3 =>
|
|
array(
|
|
'symfony/assetic-dump' =>
|
|
array(
|
|
'env' => 'dev',
|
|
),
|
|
),
|
|
),
|
|
'on-release' => null,
|
|
'post-release' => null,
|
|
'post-deploy' => null,
|
|
),
|
|
),
|
|
)
|
|
);
|
|
|
|
/** @var AbstractCommand $command */
|
|
$command = $application->find('config:environments');
|
|
$command->setRuntime($runtime);
|
|
|
|
$tester = new CommandTester($command);
|
|
$tester->execute(['command' => $command->getName()]);
|
|
|
|
$this->assertEquals($tester->getStatusCode(), 0);
|
|
}
|
|
}
|
|
|