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.
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Mage\Tests\Task\BuiltIn\Composer;
|
|
|
|
|
|
|
|
use Mage\Tests\Runtime\RuntimeMockup;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
|
|
|
|
class BasicComposerTaskTest extends TestCase
|
|
|
|
{
|
|
|
|
public function testBasicTask()
|
|
|
|
{
|
|
|
|
$runtime = new RuntimeMockup();
|
|
|
|
$runtime->setConfiguration(['environments' => ['test' => []]]);
|
|
|
|
$runtime->setEnvironment('test');
|
|
|
|
|
|
|
|
$task = new BasicComposerTask();
|
|
|
|
$task->setRuntime($runtime);
|
|
|
|
$this->assertEquals('[Composer] Help', $task->getDescription());
|
|
|
|
|
|
|
|
$task->execute();
|
|
|
|
|
|
|
|
$ranCommands = $runtime->getRanCommands();
|
|
|
|
$testCase = array(
|
|
|
|
0 => 'composer help',
|
|
|
|
);
|
|
|
|
|
|
|
|
// Check total of Executed Commands
|
|
|
|
$this->assertEquals(count($testCase), count($ranCommands));
|
|
|
|
|
|
|
|
// Check Generated Commands
|
|
|
|
foreach ($testCase as $index => $command) {
|
|
|
|
$this->assertEquals($command, $ranCommands[$index]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|