Skip to content

Commit

Permalink
Merge 5fa99c6 into 8db7a00
Browse files Browse the repository at this point in the history
  • Loading branch information
andres-montanez committed Mar 29, 2018
2 parents 8db7a00 + 5fa99c6 commit 5af7f37
Show file tree
Hide file tree
Showing 23 changed files with 280 additions and 10 deletions.
1 change: 1 addition & 0 deletions .gitignore
@@ -1,3 +1,4 @@
/vendor/
/build
composer.lock
.mage.yml
1 change: 1 addition & 0 deletions .travis.yml
Expand Up @@ -4,6 +4,7 @@ php:
- '5.6'
- '7.0'
- '7.1'
- '7.2'

install:
- composer install
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
@@ -1,6 +1,12 @@
CHANGELOG for 3.X
=================

* 3.4.0 (2018-03-29)
* [Issue#380] Throw exception if log_dir is defined but directory doesn't exists
* [BUGFIX] [Issue#405] Malformed ssh command when defining host:port notation
* [Issue#415] Remove timeout on Deploy with Tar or Rsync tasks


* 3.3.0 (2017-07-22)
* [PR#386] Allow to define timeout (default 120s) for symfony/assetic-dump task.
* [PR#392] Allow to define Host Port in Host configuration.
Expand Down
19 changes: 19 additions & 0 deletions docs/dockers/docker-compose.yml
@@ -0,0 +1,19 @@
version: '2'
services:
php5:
container_name: mage-php5
build: ./php5
volumes:
- ../../:/home/magephp

php7.0:
container_name: mage-php7.0
build: ./php7.0
volumes:
- ../../:/home/magephp

php7.1:
container_name: mage-php7.1
build: ./php7.1
volumes:
- ../../:/home/magephp
9 changes: 9 additions & 0 deletions docs/dockers/php5/Dockerfile
@@ -0,0 +1,9 @@
FROM ubuntu:14.04

RUN apt-get update && apt-get upgrade -y
RUN apt-get install -y vim curl git unzip
RUN apt-get install -y php5-cli php5-curl

RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/bin/ --filename=composer

WORKDIR /home/magephp
9 changes: 9 additions & 0 deletions docs/dockers/php7.0/Dockerfile
@@ -0,0 +1,9 @@
FROM ubuntu:16.04

RUN apt-get update && apt-get upgrade -y
RUN apt-get install -y vim curl git unzip
RUN apt-get install -y php7.0-cli php-zip php7.0-curl php7.0-xml

RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/bin/ --filename=composer

WORKDIR /home/magephp
9 changes: 9 additions & 0 deletions docs/dockers/php7.1/Dockerfile
@@ -0,0 +1,9 @@
FROM ubuntu:17.10

RUN apt-get update && apt-get upgrade -y
RUN apt-get install -y vim curl git unzip
RUN apt-get install -y php7.1-cli php-zip php7.1-curl php7.1-xml

RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/bin/ --filename=composer

WORKDIR /home/magephp
7 changes: 5 additions & 2 deletions src/Command/BuiltIn/DeployCommand.php
Expand Up @@ -143,6 +143,9 @@ protected function runDeployment(OutputInterface $output, StrategyInterface $str
protected function runOnHosts(OutputInterface $output, $tasks)
{
$hosts = $this->runtime->getEnvOption('hosts');
if (!is_array($hosts) && !$hosts instanceof \Countable) {
$hosts = [];
}
if (count($hosts) == 0) {
$output->writeln(sprintf(' No hosts defined, skipping %s tasks', $this->getStageName()));
$output->writeln('');
Expand Down Expand Up @@ -175,8 +178,8 @@ protected function runTasks(OutputInterface $output, $tasks)
return true;
}

if ($this->runtime->getWorkingHost() !== null) {
$output->writeln(sprintf(' Starting <fg=black;options=bold>%s</> tasks on host <fg=black;options=bold>%s</>:', $this->getStageName(), $this->runtime->getWorkingHost()));
if ($this->runtime->getHostName() !== null) {
$output->writeln(sprintf(' Starting <fg=black;options=bold>%s</> tasks on host <fg=black;options=bold>%s</>:', $this->getStageName(), $this->runtime->getHostName()));
} else {
$output->writeln(sprintf(' Starting <fg=black;options=bold>%s</> tasks:', $this->getStageName()));
}
Expand Down
3 changes: 3 additions & 0 deletions src/Command/BuiltIn/Releases/ListCommand.php
Expand Up @@ -74,6 +74,9 @@ protected function execute(InputInterface $input, OutputInterface $output)
$output->writeln('');

$hosts = $this->runtime->getEnvOption('hosts');
if (!is_array($hosts) && !$hosts instanceof \Countable) {
$hosts = [];
}
if (count($hosts) == 0) {
$output->writeln('No hosts defined');
$output->writeln('');
Expand Down
2 changes: 1 addition & 1 deletion src/Mage.php
Expand Up @@ -17,6 +17,6 @@
*/
class Mage
{
const VERSION = '3.3.0';
const VERSION = '3.x-dev';
const CODENAME = 'Nostromo';
}
3 changes: 3 additions & 0 deletions src/MageApplication.php
Expand Up @@ -84,6 +84,9 @@ public function configure()

$logger = new Logger('magephp');
$logger->pushHandler(new StreamHandler($logfile));

} elseif (array_key_exists('log_dir', $config['magephp']) && !is_dir($config['magephp']['log_dir'])) {
throw new RuntimeException(sprintf('The configured log_dir "%s" does not exists or is not a directory.', $config['magephp']['log_dir']));
}

$this->runtime->setConfiguration($config['magephp']);
Expand Down
17 changes: 16 additions & 1 deletion src/Runtime/Runtime.php
Expand Up @@ -429,7 +429,7 @@ public function runRemoteCommand($cmd, $jail, $timeout = 120)
{
$user = $this->getEnvOption('user', $this->getCurrentUser());
$sudo = $this->getEnvOption('sudo', false);
$host = $this->getWorkingHost();
$host = $this->getHostName();
$sshConfig = $this->getSSHConfig();

$cmdDelegate = $cmd;
Expand Down Expand Up @@ -485,6 +485,21 @@ public function getHostPort()
return isset($info[1]) ? $info[1] : null;
}

/**
* Get the current Host Name
*
* @return string
*/
public function getHostName()
{
if (strpos($this->getWorkingHost(), ':') === false) {
return $this->getWorkingHost();
}

$info = explode(':', $this->getWorkingHost());
return $info[0];
}

/**
* Gets a Temporal File name
*
Expand Down
2 changes: 1 addition & 1 deletion src/Task/BuiltIn/Deploy/ReleaseTask.php
Expand Up @@ -44,7 +44,7 @@ public function execute()
$cmdLinkRelease = sprintf('cd %s && ln -snf releases/%s current', $hostPath, $releaseId);

/** @var Process $process */
$process = $this->runtime->runRemoteCommand($cmdLinkRelease, false);
$process = $this->runtime->runRemoteCommand($cmdLinkRelease, false, null);
return $process->isSuccessful();
}
}
4 changes: 2 additions & 2 deletions src/Task/BuiltIn/Deploy/RsyncTask.php
Expand Up @@ -36,7 +36,7 @@ public function execute()
$flags = $this->runtime->getEnvOption('rsync', '-avz');
$sshConfig = $this->runtime->getSSHConfig();
$user = $this->runtime->getEnvOption('user', $this->runtime->getCurrentUser());
$host = $this->runtime->getWorkingHost();
$host = $this->runtime->getHostName();
$hostPath = rtrim($this->runtime->getEnvOption('host_path'), '/');
$targetDir = rtrim($hostPath, '/');

Expand All @@ -49,7 +49,7 @@ public function execute()
$cmdRsync = sprintf('rsync -e "ssh -p %d %s" %s %s %s %s@%s:%s', $sshConfig['port'], $sshConfig['flags'], $flags, $excludes, $from, $user, $host, $targetDir);

/** @var Process $process */
$process = $this->runtime->runLocalCommand($cmdRsync, 600);
$process = $this->runtime->runLocalCommand($cmdRsync, null);
return $process->isSuccessful();
}

Expand Down
2 changes: 1 addition & 1 deletion src/Task/BuiltIn/Deploy/Tar/CopyTask.php
Expand Up @@ -38,7 +38,7 @@ public function execute()
}

$user = $this->runtime->getEnvOption('user', $this->runtime->getCurrentUser());
$host = $this->runtime->getWorkingHost();
$host = $this->runtime->getHostName();
$sshConfig = $sshConfig = $this->runtime->getSSHConfig();
$hostPath = rtrim($this->runtime->getEnvOption('host_path'), '/');
$currentReleaseId = $this->runtime->getReleaseId();
Expand Down
4 changes: 2 additions & 2 deletions src/Task/BuiltIn/FS/AbstractFileTask.php
Expand Up @@ -61,8 +61,8 @@ protected function getFile($file)
'%environment%' => $this->runtime->getEnvironment(),
];

if ($this->runtime->getWorkingHost() !== null) {
$mapping['%host%'] = $this->runtime->getWorkingHost();
if ($this->runtime->getHostName() !== null) {
$mapping['%host%'] = $this->runtime->getHostName();
}

if ($this->runtime->getReleaseId() !== null) {
Expand Down
19 changes: 19 additions & 0 deletions tests/Command/BuiltIn/DeployCommandMiscTest.php
Expand Up @@ -11,6 +11,7 @@
namespace Mage\Tests\Command\BuiltIn;

use Mage\Command\BuiltIn\DeployCommand;
use Mage\Runtime\Exception\RuntimeException;
use Mage\Tests\MageApplicationMockup;
use Mage\Command\AbstractCommand;
use Symfony\Component\Console\Tester\CommandTester;
Expand All @@ -36,6 +37,24 @@ public function testDeploymentWithNoHosts()
$this->assertEquals(0, $tester->getStatusCode());
}

public function testInvalidLog()
{
$application = new MageApplicationMockup(__DIR__ . '/../../Resources/invalid-log.yml');

/** @var AbstractCommand $command */
$command = $application->find('deploy');
$this->assertTrue($command instanceof DeployCommand);

try {
$tester = new CommandTester($command);
$tester->execute(['command' => $command->getName(), 'environment' => 'test']);
} catch (RuntimeException $exception) {
$this->assertEquals('The configured log_dir "/no-temp" does not exists or is not a directory.', $exception->getMessage());
} catch (\Exception $exception) {
$this->assertFalse(true, sprintf('Exception "%s" catched, message: "%s"', get_class($exception), $exception->getMessage()));
}
}

public function testDeploymentWithSudo()
{
$application = new MageApplicationMockup(__DIR__ . '/../../Resources/testhost-sudo.yml');
Expand Down
50 changes: 50 additions & 0 deletions tests/Command/BuiltIn/DeployCommandWithReleasesTest.php
Expand Up @@ -68,6 +68,56 @@ public function testDeploymentWithReleasesCommands()
$this->assertEquals(0, $tester->getStatusCode());
}

public function testDeploymentWithReleasesWithPortCommands()
{
$application = new MageApplicationMockup(__DIR__ . '/../../Resources/testhost-with-port.yml');

$application->getRuntime()->setReleaseId('20170101015120');

/** @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 --optimize-autoloader',
4 => 'composer dump-autoload --optimize',
5 => 'tar cfzp /tmp/mageXYZ --exclude=".git" --exclude="./var/cache/*" --exclude="./var/log/*" --exclude="./web/app_dev.php" ./',
6 => 'ssh -p 202 -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no tester@testhost "mkdir -p /var/www/test/releases/1234567890"',
7 => 'scp -P 202 -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no /tmp/mageXYZ tester@testhost:/var/www/test/releases/1234567890/mageXYZ',
8 => 'ssh -p 202 -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no tester@testhost "cd /var/www/test/releases/1234567890 && tar xfzop mageXYZ"',
9 => 'ssh -p 202 -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no tester@testhost "rm /var/www/test/releases/1234567890/mageXYZ"',
10 => 'ssh -p 202 -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no tester@testhost "cd /var/www/test/releases/1234567890 && bin/console cache:warmup --env=prod"',
11 => 'ssh -p 202 -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no tester@testhost "cd /var/www/test/releases/1234567890 && bin/console assets:install web --env=prod --symlink --relative"',
12 => 'ssh -p 202 -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no tester@testhost "cd /var/www/test/releases/1234567890 && bin/console assetic:dump --env=prod"',
13 => 'ssh -p 202 -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no tester@testhost "cd /var/www/test && ln -snf releases/1234567890 current"',
14 => 'ssh -p 202 -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no tester@testhost "ls -1 /var/www/test/releases"',
15 => 'ssh -p 202 -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no tester@testhost "rm -rf /var/www/test/releases/20170101015110"',
16 => 'ssh -p 202 -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no tester@testhost "rm -rf /var/www/test/releases/20170101015111"',
17 => 'ssh -p 202 -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no tester@testhost "rm -rf /var/www/test/releases/20170101015112"',
18 => 'ssh -p 202 -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no tester@testhost "rm -rf /var/www/test/releases/20170101015113"',
19 => 'rm /tmp/mageXYZ',
20 => '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());
}

public function testDeploymentWithReleasesWithFromCommands()
{
$application = new MageApplicationMockup(__DIR__ . '/../../Resources/testhost-with-from.yml');
Expand Down
37 changes: 37 additions & 0 deletions tests/Command/BuiltIn/DeployCommandWithoutReleasesTest.php
Expand Up @@ -55,6 +55,43 @@ public function testDeploymentWithoutReleasesCommands()
$this->assertEquals(0, $tester->getStatusCode());
}

public function testDeploymentWithoutReleasesWithPortCommands()
{
$application = new MageApplicationMockup(__DIR__ . '/../../Resources/testhost-without-releases-with-port.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 --optimize-autoloader',
4 => 'composer dump-autoload --optimize',
5 => 'rsync -e "ssh -p 202 -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 202 -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no tester@testhost "cd /var/www/test && bin/console cache:warmup --env=dev"',
7 => 'ssh -p 202 -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no tester@testhost "cd /var/www/test && bin/console assets:install web --env=dev --symlink --relative"',
8 => 'ssh -p 202 -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no tester@testhost "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());
}

public function testDeploymentWithoutReleasesWithFromCommands()
{
$application = new MageApplicationMockup(__DIR__ . '/../../Resources/testhost-without-releases-with-from.yml');
Expand Down
27 changes: 27 additions & 0 deletions tests/Resources/invalid-log.yml
@@ -0,0 +1,27 @@
magephp:
log_dir: /no-temp
environments:
production:
user: app
branch: master
host_path: /var/www/myapp
releases: 4
exclude:
- ./var/cache/*
- ./var/log/*
- ./web/app_dev.php
hosts:
- webserver1
- webserver2
- webserver3
pre-deploy:
- git/update
- composer/install
- composer/dump-autoload
on-deploy:
- symfony/cache-warmup: { env: 'dev' }
- symfony/assets-install: { env: 'dev' }
- symfony/assetic-dump: { env: 'dev' }
on-release:
post-release:
post-deploy:
27 changes: 27 additions & 0 deletions tests/Resources/testhost-with-port.yml
@@ -0,0 +1,27 @@
magephp:
log_dir: /tmp
environments:
test:
user: tester
branch: test
host_path: /var/www/test
releases: 4
exclude:
- ./var/cache/*
- ./var/log/*
- ./web/app_dev.php
-
-
hosts:
- testhost:202
pre-deploy:
- git/update
- composer/install
- composer/dump-autoload
on-deploy:
- symfony/cache-warmup: { env: 'prod' }
- symfony/assets-install: { env: 'prod' }
- symfony/assetic-dump: { env: 'prod' }
on-release:
post-release:
post-deploy:

0 comments on commit 5af7f37

Please sign in to comment.