magallanes/tests/MageTest/Task/FactoryTest.php
2015-03-16 00:39:08 +01:00

98 lines
2.5 KiB
PHP

<?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);
}
}