diff options
author | Frédéric Guillot <fguillot@users.noreply.github.com> | 2014-03-23 22:10:43 -0400 |
---|---|---|
committer | Frédéric Guillot <fguillot@users.noreply.github.com> | 2014-03-23 22:10:43 -0400 |
commit | 0d55f5aa35d21b79c5d79f7214c4c9e05b1d2684 (patch) | |
tree | 3a70e8fbf58dcbe93df0597f70a1f0bb893e5f40 /tests/CommentTest.php | |
parent | ab63ffafc565e75c73c27910abd465bebb09306e (diff) |
Comment edit/remove actions
Diffstat (limited to 'tests/CommentTest.php')
-rw-r--r-- | tests/CommentTest.php | 94 |
1 files changed, 94 insertions, 0 deletions
diff --git a/tests/CommentTest.php b/tests/CommentTest.php new file mode 100644 index 00000000..c23c4e51 --- /dev/null +++ b/tests/CommentTest.php @@ -0,0 +1,94 @@ +<?php + +require_once __DIR__.'/base.php'; + +use Model\Task; +use Model\Project; +use Model\Comment; + +class CommentTest extends Base +{ + public function testCreate() + { + $c = new Comment($this->db, $this->event); + $t = new Task($this->db, $this->event); + $p = new Project($this->db, $this->event); + + $this->assertEquals(1, $p->create(array('name' => 'test1'))); + $this->assertEquals(1, $t->create(array('title' => 'test', 'project_id' => 1, 'column_id' => 3, 'owner_id' => 1))); + $this->assertTrue($c->create(array('task_id' => 1, 'comment' => 'bla bla', 'user_id' => 1))); + + $comment = $c->getById(1); + + $this->assertNotEmpty($comment); + $this->assertEquals('bla bla', $comment['comment']); + $this->assertEquals(1, $comment['task_id']); + $this->assertEquals(1, $comment['user_id']); + $this->assertEquals('admin', $comment['username']); + $this->assertNotEmpty($comment['date']); + } + + public function testGetAll() + { + $c = new Comment($this->db, $this->event); + $t = new Task($this->db, $this->event); + $p = new Project($this->db, $this->event); + + $this->assertEquals(1, $p->create(array('name' => 'test1'))); + $this->assertEquals(1, $t->create(array('title' => 'test', 'project_id' => 1, 'column_id' => 3, 'owner_id' => 1))); + $this->assertTrue($c->create(array('task_id' => 1, 'comment' => 'c1', 'user_id' => 1))); + $this->assertTrue($c->create(array('task_id' => 1, 'comment' => 'c2', 'user_id' => 1))); + $this->assertTrue($c->create(array('task_id' => 1, 'comment' => 'c3', 'user_id' => 1))); + + $comments = $c->getAll(1); + + $this->assertNotEmpty($comments); + $this->assertEquals(3, count($comments)); + $this->assertEquals(1, $comments[0]['id']); + $this->assertEquals(2, $comments[1]['id']); + $this->assertEquals(3, $comments[2]['id']); + } + + public function testUpdate() + { + $c = new Comment($this->db, $this->event); + $t = new Task($this->db, $this->event); + $p = new Project($this->db, $this->event); + + $this->assertEquals(1, $p->create(array('name' => 'test1'))); + $this->assertEquals(1, $t->create(array('title' => 'test', 'project_id' => 1, 'column_id' => 3, 'owner_id' => 1))); + $this->assertTrue($c->create(array('task_id' => 1, 'comment' => 'c1', 'user_id' => 1))); + $this->assertTrue($c->update(array('id' => 1, 'comment' => 'bla'))); + + $comment = $c->getById(1); + $this->assertNotEmpty($comment); + $this->assertEquals('bla', $comment['comment']); + + $this->assertFalse($c->update(array('id' => 4, 'comment' => 'bla'))); + } + + public function testValidateCreation() + { + $c = new Comment($this->db, $this->event); + + $this->assertTrue($c->validateCreation(['user_id' => 1, 'task_id' => 1, 'comment' => 'bla'])[0]); + $this->assertFalse($c->validateCreation(['user_id' => 1, 'task_id' => 1, 'comment' => ''])[0]); + $this->assertFalse($c->validateCreation(['user_id' => 1, 'task_id' => 'a', 'comment' => 'bla'])[0]); + $this->assertFalse($c->validateCreation(['user_id' => 'b', 'task_id' => 1, 'comment' => 'bla'])[0]); + $this->assertFalse($c->validateCreation(['user_id' => 1, 'comment' => 'bla'])[0]); + $this->assertFalse($c->validateCreation(['task_id' => 1, 'comment' => 'bla'])[0]); + $this->assertFalse($c->validateCreation(['comment' => 'bla'])[0]); + $this->assertFalse($c->validateCreation([])[0]); + } + + public function testValidateModification() + { + $c = new Comment($this->db, $this->event); + + $this->assertTrue($c->validateModification(['id' => 1, 'comment' => 'bla'])[0]); + $this->assertFalse($c->validateModification(['id' => 1, 'comment' => ''])[0]); + $this->assertFalse($c->validateModification(['comment' => 'bla'])[0]); + $this->assertFalse($c->validateModification(['id' => 'b', 'comment' => 'bla'])[0]); + $this->assertFalse($c->validateModification([])[0]); + } +} |