mirror of
				https://github.com/hauke68/Magallanes.git
				synced 2025-11-04 00:50:18 +01:00 
			
		
		
		
	
		
			
	
	
		
			60 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
		
		
			
		
	
	
			60 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| 
								 | 
							
								<?php
							 | 
						||
| 
								 | 
							
								/*
							 | 
						||
| 
								 | 
							
								 * This file is part of the Magallanes package.
							 | 
						||
| 
								 | 
							
								 *
							 | 
						||
| 
								 | 
							
								 * (c) Andrés Montañez <andres@andresmontanez.com>
							 | 
						||
| 
								 | 
							
								 *
							 | 
						||
| 
								 | 
							
								 * For the full copyright and license information, please view the LICENSE
							 | 
						||
| 
								 | 
							
								 * file that was distributed with this source code.
							 | 
						||
| 
								 | 
							
								 */
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								namespace Mage\Tests\Command\BuiltIn;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								use Mage\Command\BuiltIn\DeployCommand;
							 | 
						||
| 
								 | 
							
								use Mage\Command\AbstractCommand;
							 | 
						||
| 
								 | 
							
								use Mage\Tests\MageApplicationMockup;
							 | 
						||
| 
								 | 
							
								use Symfony\Component\Console\Tester\CommandTester;
							 | 
						||
| 
								 | 
							
								use PHPUnit_Framework_TestCase as TestCase;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								class DeployCommandWithoutReleasesTest extends TestCase
							 | 
						||
| 
								 | 
							
								{
							 | 
						||
| 
								 | 
							
								    public function testDeploymentWithoutReleasesCommands()
							 | 
						||
| 
								 | 
							
								    {
							 | 
						||
| 
								 | 
							
								        $application = new MageApplicationMockup();
							 | 
						||
| 
								 | 
							
								        $application->configure(__DIR__ . '/../../Resources/testhost-without-releases.yml');
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        /** @var AbstractCommand $command */
							 | 
						||
| 
								 | 
							
								        $command = $application->find('deploy');
							 | 
						||
| 
								 | 
							
								        $this->assertTrue($command instanceof DeployCommand);
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        $tester = new CommandTester($command);
							 | 
						||
| 
								 | 
							
								        $tester->execute(['command' => $command->getName(), 'environment' => 'test']);
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        $ranCommands = $application->getRuntime()->getRanCommands();
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        $testCase = array (
							 | 
						||
| 
								 | 
							
								            0 => 'git branch | grep "*"',
							 | 
						||
| 
								 | 
							
								            1 => 'git checkout test',
							 | 
						||
| 
								 | 
							
								            2 => 'git pull',
							 | 
						||
| 
								 | 
							
								            3 => 'composer install',
							 | 
						||
| 
								 | 
							
								            4 => 'composer dumpautoload --optimize',
							 | 
						||
| 
								 | 
							
								            5 => 'rsync -e "ssh -p 22 -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no" -avz --exclude=.git --exclude=./var/cache/* --exclude=./var/log/* --exclude=./web/app_dev.php ./ tester@testhost:/var/www/test',
							 | 
						||
| 
								 | 
							
								            6 => 'ssh -p 22 -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no tester@testhost sh -c \\"cd /var/www/test \\&\\& bin/console cache:warmup --env=dev \\"',
							 | 
						||
| 
								 | 
							
								            7 => 'ssh -p 22 -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no tester@testhost sh -c \\"cd /var/www/test \\&\\& bin/console assets:install --env=dev --symlink --relative web\\"',
							 | 
						||
| 
								 | 
							
								            8 => 'ssh -p 22 -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no tester@testhost sh -c \\"cd /var/www/test \\&\\& bin/console assetic:dump --env=dev \\"',
							 | 
						||
| 
								 | 
							
								            9 => 'git checkout master',
							 | 
						||
| 
								 | 
							
								        );
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        // Check total of Executed Commands
							 | 
						||
| 
								 | 
							
								        $this->assertEquals(count($testCase), count($ranCommands));
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        // Check Generated Commands
							 | 
						||
| 
								 | 
							
								        foreach ($testCase as $index => $command) {
							 | 
						||
| 
								 | 
							
								            $this->assertEquals($command, $ranCommands[$index]);
							 | 
						||
| 
								 | 
							
								        }
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        $this->assertEquals(0, $tester->getStatusCode());
							 | 
						||
| 
								 | 
							
								    }
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								 }
							 |