Add unit test RecurringTaskSubscriber
This commit is contained in:
164
tests/units/Subscriber/RecurringTaskSubscriberTest.php
Normal file
164
tests/units/Subscriber/RecurringTaskSubscriberTest.php
Normal file
@@ -0,0 +1,164 @@
|
||||
<?php
|
||||
|
||||
use Kanboard\EventBuilder\TaskEventBuilder;
|
||||
use Kanboard\Model\ProjectModel;
|
||||
use Kanboard\Model\TaskCreationModel;
|
||||
use Kanboard\Model\TaskFinderModel;
|
||||
use Kanboard\Model\TaskModel;
|
||||
use Kanboard\Subscriber\RecurringTaskSubscriber;
|
||||
|
||||
require_once __DIR__.'/../Base.php';
|
||||
|
||||
class RecurringTaskSubscriberTest extends Base
|
||||
{
|
||||
public function testWithNoRecurrence()
|
||||
{
|
||||
$projectModel = new ProjectModel($this->container);
|
||||
$taskCreationModel = new TaskCreationModel($this->container);
|
||||
$taskFinderModel = new TaskFinderModel($this->container);
|
||||
$subscriber = new RecurringTaskSubscriber($this->container);
|
||||
|
||||
$this->assertEquals(1, $projectModel->create(array('name' => 'test1')));
|
||||
$this->assertEquals(1, $taskCreationModel->create(array('title' => 'test', 'project_id' => 1)));
|
||||
|
||||
$event = TaskEventBuilder::getInstance($this->container)
|
||||
->withTaskId(1)
|
||||
->buildEvent();
|
||||
|
||||
$subscriber->onMove($event);
|
||||
$subscriber->onClose($event);
|
||||
|
||||
$this->assertEquals(1, $taskFinderModel->countByProjectId(1));
|
||||
}
|
||||
|
||||
public function testWithRecurrenceFirstColumn()
|
||||
{
|
||||
$projectModel = new ProjectModel($this->container);
|
||||
$taskCreationModel = new TaskCreationModel($this->container);
|
||||
$taskFinderModel = new TaskFinderModel($this->container);
|
||||
$subscriber = new RecurringTaskSubscriber($this->container);
|
||||
|
||||
$this->assertEquals(1, $projectModel->create(array('name' => 'test1')));
|
||||
$this->assertEquals(1, $taskCreationModel->create(array(
|
||||
'title' => 'test',
|
||||
'project_id' => 1,
|
||||
'recurrence_status' => TaskModel::RECURRING_STATUS_PENDING,
|
||||
'recurrence_trigger' => TaskModel::RECURRING_TRIGGER_FIRST_COLUMN,
|
||||
)));
|
||||
|
||||
$event = TaskEventBuilder::getInstance($this->container)
|
||||
->withTaskId(1)
|
||||
->withValues(array('src_column_id' => 1))
|
||||
->buildEvent();
|
||||
|
||||
$subscriber->onMove($event);
|
||||
$subscriber->onClose($event);
|
||||
|
||||
$this->assertEquals(2, $taskFinderModel->countByProjectId(1));
|
||||
}
|
||||
|
||||
public function testWithRecurrenceFirstColumnWithWrongColumn()
|
||||
{
|
||||
$projectModel = new ProjectModel($this->container);
|
||||
$taskCreationModel = new TaskCreationModel($this->container);
|
||||
$taskFinderModel = new TaskFinderModel($this->container);
|
||||
$subscriber = new RecurringTaskSubscriber($this->container);
|
||||
|
||||
$this->assertEquals(1, $projectModel->create(array('name' => 'test1')));
|
||||
$this->assertEquals(1, $taskCreationModel->create(array(
|
||||
'title' => 'test',
|
||||
'project_id' => 1,
|
||||
'recurrence_status' => TaskModel::RECURRING_STATUS_PENDING,
|
||||
'recurrence_trigger' => TaskModel::RECURRING_TRIGGER_FIRST_COLUMN,
|
||||
'column_id' => 2,
|
||||
)));
|
||||
|
||||
$event = TaskEventBuilder::getInstance($this->container)
|
||||
->withTaskId(1)
|
||||
->withValues(array('src_column_id' => 2))
|
||||
->buildEvent();
|
||||
|
||||
$subscriber->onMove($event);
|
||||
$subscriber->onClose($event);
|
||||
|
||||
$this->assertEquals(1, $taskFinderModel->countByProjectId(1));
|
||||
}
|
||||
|
||||
public function testWithRecurrenceLastColumn()
|
||||
{
|
||||
$projectModel = new ProjectModel($this->container);
|
||||
$taskCreationModel = new TaskCreationModel($this->container);
|
||||
$taskFinderModel = new TaskFinderModel($this->container);
|
||||
$subscriber = new RecurringTaskSubscriber($this->container);
|
||||
|
||||
$this->assertEquals(1, $projectModel->create(array('name' => 'test1')));
|
||||
$this->assertEquals(1, $taskCreationModel->create(array(
|
||||
'title' => 'test',
|
||||
'project_id' => 1,
|
||||
'recurrence_status' => TaskModel::RECURRING_STATUS_PENDING,
|
||||
'recurrence_trigger' => TaskModel::RECURRING_TRIGGER_LAST_COLUMN,
|
||||
)));
|
||||
|
||||
$event = TaskEventBuilder::getInstance($this->container)
|
||||
->withTaskId(1)
|
||||
->withValues(array('dst_column_id' => 4))
|
||||
->buildEvent();
|
||||
|
||||
$subscriber->onMove($event);
|
||||
$subscriber->onClose($event);
|
||||
|
||||
$this->assertEquals(2, $taskFinderModel->countByProjectId(1));
|
||||
}
|
||||
|
||||
public function testWithRecurrenceLastColumnWithWrongColumn()
|
||||
{
|
||||
$projectModel = new ProjectModel($this->container);
|
||||
$taskCreationModel = new TaskCreationModel($this->container);
|
||||
$taskFinderModel = new TaskFinderModel($this->container);
|
||||
$subscriber = new RecurringTaskSubscriber($this->container);
|
||||
|
||||
$this->assertEquals(1, $projectModel->create(array('name' => 'test1')));
|
||||
$this->assertEquals(1, $taskCreationModel->create(array(
|
||||
'title' => 'test',
|
||||
'project_id' => 1,
|
||||
'recurrence_status' => TaskModel::RECURRING_STATUS_PENDING,
|
||||
'recurrence_trigger' => TaskModel::RECURRING_TRIGGER_LAST_COLUMN,
|
||||
)));
|
||||
|
||||
$event = TaskEventBuilder::getInstance($this->container)
|
||||
->withTaskId(1)
|
||||
->withValues(array('dst_column_id' => 2))
|
||||
->buildEvent();
|
||||
|
||||
$subscriber->onMove($event);
|
||||
$subscriber->onClose($event);
|
||||
|
||||
$this->assertEquals(1, $taskFinderModel->countByProjectId(1));
|
||||
}
|
||||
|
||||
public function testWithRecurrenceOnClose()
|
||||
{
|
||||
$projectModel = new ProjectModel($this->container);
|
||||
$taskCreationModel = new TaskCreationModel($this->container);
|
||||
$taskFinderModel = new TaskFinderModel($this->container);
|
||||
$subscriber = new RecurringTaskSubscriber($this->container);
|
||||
|
||||
$this->assertEquals(1, $projectModel->create(array('name' => 'test1')));
|
||||
$this->assertEquals(1, $taskCreationModel->create(array(
|
||||
'title' => 'test',
|
||||
'project_id' => 1,
|
||||
'recurrence_status' => TaskModel::RECURRING_STATUS_PENDING,
|
||||
'recurrence_trigger' => TaskModel::RECURRING_TRIGGER_CLOSE,
|
||||
)));
|
||||
|
||||
$event = TaskEventBuilder::getInstance($this->container)
|
||||
->withTaskId(1)
|
||||
->withChanges(array('is_active' => 0))
|
||||
->buildEvent();
|
||||
|
||||
$subscriber->onMove($event);
|
||||
$subscriber->onClose($event);
|
||||
|
||||
$this->assertEquals(2, $taskFinderModel->countByProjectId(1));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user