mirror of https://github.com/hauke68/Magallanes
Kuba Turek
10 years ago
2 changed files with 99 additions and 2 deletions
@ -0,0 +1,97 @@
|
||||
<?php |
||||
|
||||
namespace MageTest\Task; |
||||
|
||||
use Mage\Task\Factory; |
||||
use PHPUnit_Framework_TestCase; |
||||
|
||||
/** |
||||
* @group MageTest_Task_Factory |
||||
* @group MageTest_Task |
||||
* @group issue-176 |
||||
* |
||||
* @uses Mage\Task\AbstractTask |
||||
* @coversDefaultClass Mage\Task\Factory |
||||
*/ |
||||
class FactoryTest extends PHPUnit_Framework_TestCase |
||||
{ |
||||
private $config; |
||||
|
||||
protected function setUp() |
||||
{ |
||||
$this->config = $this->getMock('Mage\\Config'); |
||||
} |
||||
|
||||
/** |
||||
* @covers Mage\Task\Factory::get |
||||
*/ |
||||
public function testGet() |
||||
{ |
||||
$task = Factory::get('composer/install', $this->config); |
||||
$this->assertInstanceOf('\\Mage\\Task\\BuiltIn\\Composer\\InstallTask', $task); |
||||
} |
||||
|
||||
/** |
||||
* @covers Mage\Task\Factory::get |
||||
*/ |
||||
public function testGetTaskDataIsArray() |
||||
{ |
||||
$taskData = array( |
||||
'name' => 'composer/install', |
||||
'parameters' => array(), |
||||
); |
||||
|
||||
$task = Factory::get($taskData, $this->config); |
||||
$this->assertInstanceOf('\\Mage\\Task\\BuiltIn\\Composer\\InstallTask', $task); |
||||
} |
||||
|
||||
/** |
||||
* @covers Mage\Task\Factory::get |
||||
*/ |
||||
public function testGetCustomTask() |
||||
{ |
||||
$this->getMockBuilder('Mage\\Task\\AbstractTask') |
||||
->setConstructorArgs(array($this->config)) |
||||
->setMockClassName('MyTask') |
||||
->getMock(); |
||||
|
||||
/* |
||||
* current workaround |
||||
* @link https://github.com/sebastianbergmann/phpunit-mock-objects/issues/134 |
||||
*/ |
||||
class_alias('MyTask', 'Task\\MyTask'); |
||||
|
||||
$task = Factory::get('my-task', $this->config); |
||||
$this->assertInstanceOf('Task\\MyTask', $task); |
||||
} |
||||
|
||||
/** |
||||
* @covers Mage\Task\Factory::get |
||||
*/ |
||||
public function testGetWithOptionalParams() |
||||
{ |
||||
$task = Factory::get('composer/install', $this->config, true, 'production'); |
||||
$this->assertInstanceOf('\\Mage\\Task\\BuiltIn\\Composer\\InstallTask', $task); |
||||
} |
||||
|
||||
/** |
||||
* @expectedException \Exception |
||||
* @expectedExceptionMessage The Task MyInconsistentTask must be an instance of Mage\Task\AbstractTask. |
||||
* @covers Mage\Task\Factory::get |
||||
*/ |
||||
public function testGetInconsistentException() |
||||
{ |
||||
$this->getMock('Task\\MyInconsistentTask'); |
||||
Factory::get('my-inconsistent-task', $this->config); |
||||
} |
||||
|
||||
/** |
||||
* @expectedException \Exception |
||||
* @expectedExceptionMessage Task "Unknowntask" not found. |
||||
* @covers Mage\Task\Factory::get |
||||
*/ |
||||
public function testGetClassDoesNotExist() |
||||
{ |
||||
Factory::get('unknowntask', $this->config); |
||||
} |
||||
} |
Loading…
Reference in new issue