diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-06-28 21:04:37 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-06-28 21:04:37 -0400 |
commit | 7c1222fc595091d9e292bae9d563a3fdaf660d7b (patch) | |
tree | ffdb99b873ab1269b637e9f2cee879777803b03a /tests/units/TaskFilterTest.php | |
parent | 2e7e7031804b09a04c83896535b31acb12138960 (diff) |
Add description attribute for advanced search
Diffstat (limited to 'tests/units/TaskFilterTest.php')
-rw-r--r-- | tests/units/TaskFilterTest.php | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/units/TaskFilterTest.php b/tests/units/TaskFilterTest.php index 4f826cd2..494a0f1b 100644 --- a/tests/units/TaskFilterTest.php +++ b/tests/units/TaskFilterTest.php @@ -53,6 +53,27 @@ class TaskFilterTest extends Base $this->assertCount(1, $tasks); } + public function testSearchWithDescription() + { + $p = new Project($this->container); + $tc = new TaskCreation($this->container); + $tf = new TaskFilter($this->container); + + $this->assertEquals(1, $p->create(array('name' => 'test'))); + $this->assertNotFalse($tc->create(array('project_id' => 1, 'title' => 'task1'))); + $this->assertNotFalse($tc->create(array('project_id' => 1, 'title' => 'task2', 'description' => '**something to do**'))); + + $tf->search('description:"something"'); + $tasks = $tf->findAll(); + $this->assertNotEmpty($tasks); + $this->assertCount(1, $tasks); + $this->assertEquals('task2', $tasks[0]['title']); + + $tf->search('description:"rainy day"'); + $tasks = $tf->findAll(); + $this->assertEmpty($tasks); + } + public function testSearchWithDueDate() { $dp = new DateParser($this->container); |