magallanes/tests/Task/BuiltIn/FileSystem/MoveTaskTest.php

128 lines
4 KiB
PHP
Raw Normal View History

2017-02-05 21:52:16 +01:00
<?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\Task\BuiltIn\FileSystem;
2017-02-05 21:52:16 +01:00
use Mage\Task\Exception\ErrorException;
use Mage\Task\BuiltIn\FS\MoveTask;
2017-02-05 21:52:16 +01:00
use Exception;
use Mage\Tests\Runtime\RuntimeMockup;
use PHPUnit\Framework\TestCase;
2017-02-05 21:52:16 +01:00
class MoveTaskTest extends TestCase
2017-02-05 21:52:16 +01:00
{
public function testMoveTask()
2017-02-05 21:52:16 +01:00
{
$runtime = new RuntimeMockup();
$runtime->setConfiguration(['environments' => ['test' => []]]);
$runtime->setEnvironment('test');
$task = new MoveTask();
$task->setOptions(['from' => 'a.txt', 'to' => 'b.txt']);
2017-02-05 21:52:16 +01:00
$task->setRuntime($runtime);
2021-02-11 17:57:40 +01:00
$this->assertStringContainsString('a.txt', $task->getDescription());
$this->assertStringContainsString('b.txt', $task->getDescription());
2017-02-05 21:52:16 +01:00
$task->execute();
$ranCommands = $runtime->getRanCommands();
$testCase = array(
0 => 'mv "a.txt" "b.txt"',
2017-02-05 21:52:16 +01:00
);
// Check total of Executed Commands
$this->assertEquals(count($testCase), count($ranCommands));
2017-02-11 04:06:57 +01:00
// Check Generated Commands
foreach ($testCase as $index => $command) {
$this->assertEquals($command, $ranCommands[$index]);
}
}
public function testMoveWithFlagsTask()
2017-02-11 04:06:57 +01:00
{
$runtime = new RuntimeMockup();
$runtime->setConfiguration(['environments' => ['test' => []]]);
$runtime->setEnvironment('test');
$task = new MoveTask();
$task->setOptions(['from' => 'a.txt', 'to' => 'b.txt', 'flags' => '-n']);
2017-02-11 04:06:57 +01:00
$task->setRuntime($runtime);
2021-02-11 17:57:40 +01:00
$this->assertStringContainsString('a.txt', $task->getDescription());
$this->assertStringContainsString('b.txt', $task->getDescription());
2017-02-11 04:06:57 +01:00
$task->execute();
$ranCommands = $runtime->getRanCommands();
$testCase = array(
0 => 'mv -n "a.txt" "b.txt"',
2017-02-11 04:06:57 +01:00
);
// Check total of Executed Commands
$this->assertEquals(count($testCase), count($ranCommands));
2017-02-05 21:52:16 +01:00
// Check Generated Commands
foreach ($testCase as $index => $command) {
$this->assertEquals($command, $ranCommands[$index]);
}
}
public function testMoveReplaceTask()
2017-02-05 21:52:16 +01:00
{
$runtime = new RuntimeMockup();
$runtime->setConfiguration(['environments' => ['test' => []]]);
$runtime->setEnvironment('test');
$task = new MoveTask();
$task->setOptions(['from' => '%environment%.txt', 'to' => 'b.txt']);
2017-02-05 21:52:16 +01:00
$task->setRuntime($runtime);
2021-02-11 17:57:40 +01:00
$this->assertStringContainsString('test.txt', $task->getDescription());
$this->assertStringContainsString('b.txt', $task->getDescription());
2017-02-05 21:52:16 +01:00
$task->execute();
$ranCommands = $runtime->getRanCommands();
$testCase = array(
0 => 'mv "test.txt" "b.txt"',
2017-02-05 21:52:16 +01:00
);
// Check total of Executed Commands
$this->assertEquals(count($testCase), count($ranCommands));
// Check Generated Commands
foreach ($testCase as $index => $command) {
$this->assertEquals($command, $ranCommands[$index]);
}
}
public function testMoveBadOptionsTask()
2017-02-05 21:52:16 +01:00
{
$runtime = new RuntimeMockup();
$runtime->setConfiguration(['environments' => ['test' => []]]);
$runtime->setEnvironment('test');
$task = new MoveTask();
$task->setOptions(['form' => 'a.txt', 'to' => 'b.txt']);
2017-02-05 21:52:16 +01:00
$task->setRuntime($runtime);
try {
2021-02-11 17:57:40 +01:00
$this->assertStringContainsString('[missing parameters]', $task->getDescription());
2017-02-05 21:52:16 +01:00
$task->execute();
$this->assertTrue(false, 'Task did not failed');
2017-02-05 21:52:16 +01:00
} catch (Exception $exception) {
$this->assertTrue($exception instanceof ErrorException);
$this->assertEquals('Parameter "from" is not defined', $exception->getMessage());
2017-02-05 21:52:16 +01:00
}
}
}