summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2016-01-17 17:43:11 -0500
committerFrederic Guillot <fred@kanboard.net>2016-01-17 17:43:11 -0500
commitbcbb3297860a8fe106094fefc04f74af4e30aed2 (patch)
tree810195e0c465db2b2f354857aa5ca12acb9e9cf6 /tests
parent446a7ac6455f00efaac7c878def68fe62d0e9f19 (diff)
Make sure that no events are fired if nothing have been modified in the task
Diffstat (limited to 'tests')
-rw-r--r--tests/units/Model/TaskModificationTest.php18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/units/Model/TaskModificationTest.php b/tests/units/Model/TaskModificationTest.php
index 25a4952e..119201f0 100644
--- a/tests/units/Model/TaskModificationTest.php
+++ b/tests/units/Model/TaskModificationTest.php
@@ -41,6 +41,24 @@ class TaskModificationTest extends Base
$this->assertEquals(1, $event_data['owner_id']);
}
+ public function testThatNoEventAreFiredWhenNoChanges()
+ {
+ $p = new Project($this->container);
+ $tc = new TaskCreation($this->container);
+ $tm = new TaskModification($this->container);
+ $tf = new TaskFinder($this->container);
+
+ $this->assertEquals(1, $p->create(array('name' => 'test')));
+ $this->assertEquals(1, $tc->create(array('title' => 'test', 'project_id' => 1)));
+
+ $this->container['dispatcher']->addListener(Task::EVENT_CREATE_UPDATE, array($this, 'onCreateUpdate'));
+ $this->container['dispatcher']->addListener(Task::EVENT_UPDATE, array($this, 'onUpdate'));
+
+ $this->assertTrue($tm->update(array('id' => 1, 'title' => 'test')));
+
+ $this->assertEmpty($this->container['dispatcher']->getCalledListeners());
+ }
+
public function testChangeTitle()
{
$p = new Project($this->container);