File events refactoring

This commit is contained in:
Frederic Guillot
2016-07-17 18:47:06 -04:00
parent ec0ecc5b03
commit cbe52e5720
21 changed files with 398 additions and 74 deletions

View File

@@ -0,0 +1,33 @@
<?php
use Kanboard\EventBuilder\ProjectFileEventBuilder;
use Kanboard\Model\ProjectFileModel;
use Kanboard\Model\ProjectModel;
require_once __DIR__.'/../Base.php';
class ProjectFileEventBuilderTest extends Base
{
public function testWithMissingFile()
{
$projectFileEventBuilder = new ProjectFileEventBuilder($this->container);
$projectFileEventBuilder->withFileId(42);
$this->assertNull($projectFileEventBuilder->build());
}
public function testBuild()
{
$projectModel = new ProjectModel($this->container);
$projectFileModel = new ProjectFileModel($this->container);
$projectFileEventBuilder = new ProjectFileEventBuilder($this->container);
$this->assertEquals(1, $projectModel->create(array('name' => 'test1')));
$this->assertEquals(1, $projectFileModel->create(1, 'Test', '/tmp/test', 123));
$event = $projectFileEventBuilder->withFileId(1)->build();
$this->assertInstanceOf('Kanboard\Event\ProjectFileEvent', $event);
$this->assertNotEmpty($event['file']);
$this->assertNotEmpty($event['project']);
}
}

View File

@@ -0,0 +1,36 @@
<?php
use Kanboard\EventBuilder\TaskFileEventBuilder;
use Kanboard\Model\ProjectModel;
use Kanboard\Model\TaskCreationModel;
use Kanboard\Model\TaskFileModel;
require_once __DIR__.'/../Base.php';
class TaskFileEventBuilderTest extends Base
{
public function testWithMissingFile()
{
$taskFileEventBuilder = new TaskFileEventBuilder($this->container);
$taskFileEventBuilder->withFileId(42);
$this->assertNull($taskFileEventBuilder->build());
}
public function testBuild()
{
$taskFileModel = new TaskFileModel($this->container);
$taskCreationModel = new TaskCreationModel($this->container);
$projectModel = new ProjectModel($this->container);
$taskFileEventBuilder = new TaskFileEventBuilder($this->container);
$this->assertEquals(1, $projectModel->create(array('name' => 'test1')));
$this->assertEquals(1, $taskCreationModel->create(array('title' => 'test', 'project_id' => 1)));
$this->assertEquals(1, $taskFileModel->create(1, 'Test', '/tmp/test', 123));
$event = $taskFileEventBuilder->withFileId(1)->build();
$this->assertInstanceOf('Kanboard\Event\TaskFileEvent', $event);
$this->assertNotEmpty($event['file']);
$this->assertNotEmpty($event['task']);
}
}