From f7e4c3928aba9cb7f5222cb4af67846312bbb435 Mon Sep 17 00:00:00 2001 From: Frederic Guillot Date: Sat, 14 Feb 2015 16:11:13 -0500 Subject: Refactoring/simplification of the pull-request about links --- tests/units/LinkTest.php | 161 +++++++++++++++++++++++++++++++++++++++++++ tests/units/TaskLinkTest.php | 108 +++++++++++++++++++++++++++++ 2 files changed, 269 insertions(+) create mode 100644 tests/units/LinkTest.php create mode 100644 tests/units/TaskLinkTest.php (limited to 'tests') diff --git a/tests/units/LinkTest.php b/tests/units/LinkTest.php new file mode 100644 index 00000000..ebcbcd39 --- /dev/null +++ b/tests/units/LinkTest.php @@ -0,0 +1,161 @@ +container); + + $this->assertTrue($l->create('Link A')); + $this->assertFalse($l->create('Link A')); + $this->assertTrue($l->create('Link B', 'Link C')); + + $links = $l->getAll(); + $this->assertNotEmpty($links); + $this->assertCount(14, $links); + + $link = $l->getByLabel('Link A'); + $this->assertNotEmpty($link); + $this->assertEquals('Link A', $link['label']); + $this->assertEquals(0, $link['opposite_id']); + + $link1 = $l->getByLabel('Link B'); + $this->assertNotEmpty($link1); + $this->assertEquals('Link B', $link1['label']); + $this->assertNotEmpty($link1['opposite_id']); + + $link2 = $l->getByLabel('Link C'); + $this->assertNotEmpty($link2); + $this->assertEquals('Link C', $link2['label']); + $this->assertNotEmpty($link2['opposite_id']); + + $this->assertNotEquals($link1['opposite_id'], $link2['opposite_id']); + } + + public function testUpdate() + { + $l = new Link($this->container); + + $this->assertTrue($l->update(array('id' => 2, 'label' => 'test', 'opposite_id' => 0))); + + $link = $l->getById(2); + $this->assertNotEmpty($link); + $this->assertEquals('test', $link['label']); + $this->assertEquals(0, $link['opposite_id']); + } + + public function testRemove() + { + $l = new Link($this->container); + + $link = $l->getById(3); + $this->assertNotEmpty($link); + $this->assertEquals('is blocked by', $link['label']); + $this->assertEquals(2, $link['opposite_id']); + + $this->assertTrue($l->remove(2)); + + $link = $l->getById(2); + $this->assertEmpty($link); + + $link = $l->getById(3); + $this->assertNotEmpty($link); + $this->assertEquals('is blocked by', $link['label']); + $this->assertEquals(0, $link['opposite_id']); + } + + public function testGetMergedList() + { + $l = new Link($this->container); + $links = $l->getMergedList(); + + $this->assertNotEmpty($links); + $this->assertCount(11, $links); + $this->assertEquals('blocks', $links[1]['label']); + $this->assertEquals('is blocked by', $links[1]['opposite_label']); + } + + public function testGetList() + { + $l = new Link($this->container); + $links = $l->getList(); + + $this->assertNotEmpty($links); + $this->assertCount(12, $links); + $this->assertEquals('', $links[0]); + $this->assertEquals('relates to', $links[1]); + + $links = $l->getList(1); + + $this->assertNotEmpty($links); + $this->assertCount(11, $links); + $this->assertEquals('', $links[0]); + $this->assertArrayNotHasKey(1, $links); + $this->assertEquals('blocks', $links[2]); + + $links = $l->getList(1, false); + + $this->assertNotEmpty($links); + $this->assertCount(10, $links); + $this->assertArrayNotHasKey(0, $links); + $this->assertArrayNotHasKey(1, $links); + $this->assertEquals('blocks', $links[2]); + + $links = $l->getList(0, false); + + $this->assertNotEmpty($links); + $this->assertCount(11, $links); + $this->assertArrayNotHasKey(0, $links); + $this->assertEquals('relates to', $links[1]); + } + + public function testValidateCreation() + { + $l = new Link($this->container); + + $r = $l->validateCreation(array('label' => 'a')); + $this->assertTrue($r[0]); + + $r = $l->validateCreation(array('label' => 'a', 'opposite_label' => 'b')); + $this->assertTrue($r[0]); + + $r = $l->validateCreation(array('label' => 'relates to')); + $this->assertFalse($r[0]); + + $r = $l->validateCreation(array('label' => 'a', 'opposite_label' => 'a')); + $this->assertFalse($r[0]); + + $r = $l->validateCreation(array('label' => '')); + $this->assertFalse($r[0]); + } + + public function testValidateModification() + { + $l = new Link($this->container); + + $r = $l->validateModification(array('id' => 20, 'label' => 'a', 'opposite_id' => 0)); + $this->assertTrue($r[0]); + + $r = $l->validateModification(array('id' => 20, 'label' => 'a', 'opposite_id' => '1')); + $this->assertTrue($r[0]); + + $r = $l->validateModification(array('id' => 20, 'label' => 'relates to', 'opposite_id' => '1')); + $this->assertFalse($r[0]); + + $r = $l->validateModification(array('id' => 20, 'label' => '', 'opposite_id' => '1')); + $this->assertFalse($r[0]); + + $r = $l->validateModification(array('label' => '', 'opposite_id' => '1')); + $this->assertFalse($r[0]); + + $r = $l->validateModification(array('id' => 20, 'opposite_id' => '1')); + $this->assertFalse($r[0]); + + $r = $l->validateModification(array('label' => 'test')); + $this->assertFalse($r[0]); + } +} diff --git a/tests/units/TaskLinkTest.php b/tests/units/TaskLinkTest.php new file mode 100644 index 00000000..b78ffd28 --- /dev/null +++ b/tests/units/TaskLinkTest.php @@ -0,0 +1,108 @@ +container); + $p = new Project($this->container); + $tc = new TaskCreation($this->container); + + $this->assertEquals(1, $p->create(array('name' => 'test'))); + $this->assertEquals(1, $tc->create(array('project_id' => 1, 'title' => 'A'))); + $this->assertEquals(2, $tc->create(array('project_id' => 1, 'title' => 'B'))); + $this->assertTrue($tl->create(1, 2, 1)); + + $links = $tl->getLinks(1); + $this->assertNotEmpty($links); + $this->assertCount(1, $links); + $this->assertEquals('relates to', $links[0]['label']); + $this->assertEquals('B', $links[0]['title']); + $this->assertEquals(2, $links[0]['task_id']); + $this->assertEquals(1, $links[0]['is_active']); + + $links = $tl->getLinks(2); + $this->assertNotEmpty($links); + $this->assertCount(1, $links); + $this->assertEquals('relates to', $links[0]['label']); + $this->assertEquals('A', $links[0]['title']); + $this->assertEquals(1, $links[0]['task_id']); + $this->assertEquals(1, $links[0]['is_active']); + } + + public function testCreateTaskLinkWithOpposite() + { + $tl = new TaskLink($this->container); + $p = new Project($this->container); + $tc = new TaskCreation($this->container); + + $this->assertEquals(1, $p->create(array('name' => 'test'))); + $this->assertEquals(1, $tc->create(array('project_id' => 1, 'title' => 'A'))); + $this->assertEquals(2, $tc->create(array('project_id' => 1, 'title' => 'B'))); + $this->assertTrue($tl->create(1, 2, 2)); + + $links = $tl->getLinks(1); + $this->assertNotEmpty($links); + $this->assertCount(1, $links); + $this->assertEquals('blocks', $links[0]['label']); + $this->assertEquals('B', $links[0]['title']); + $this->assertEquals(2, $links[0]['task_id']); + $this->assertEquals(1, $links[0]['is_active']); + + $links = $tl->getLinks(2); + $this->assertNotEmpty($links); + $this->assertCount(1, $links); + $this->assertEquals('is blocked by', $links[0]['label']); + $this->assertEquals('A', $links[0]['title']); + $this->assertEquals(1, $links[0]['task_id']); + $this->assertEquals(1, $links[0]['is_active']); + } + + public function testRemove() + { + $tl = new TaskLink($this->container); + $p = new Project($this->container); + $tc = new TaskCreation($this->container); + + $this->assertEquals(1, $p->create(array('name' => 'test'))); + $this->assertEquals(1, $tc->create(array('project_id' => 1, 'title' => 'A'))); + $this->assertEquals(2, $tc->create(array('project_id' => 1, 'title' => 'B'))); + $this->assertTrue($tl->create(1, 2, 2)); + + $links = $tl->getLinks(1); + $this->assertNotEmpty($links); + $links = $tl->getLinks(2); + $this->assertNotEmpty($links); + + $this->assertTrue($tl->remove($links[0]['id'])); + + $links = $tl->getLinks(1); + $this->assertEmpty($links); + $links = $tl->getLinks(2); + $this->assertEmpty($links); + } + + public function testValidation() + { + $tl = new TaskLink($this->container); + + $r = $tl->validateCreation(array('task_id' => 1, 'link_id' => 1, 'title' => 'a')); + $this->assertTrue($r[0]); + + $r = $tl->validateCreation(array('task_id' => 1, 'link_id' => 1)); + $this->assertFalse($r[0]); + + $r = $tl->validateCreation(array('task_id' => 1, 'title' => 'a')); + $this->assertFalse($r[0]); + + $r = $tl->validateCreation(array('link_id' => 1, 'title' => 'a')); + $this->assertFalse($r[0]); + } +} -- cgit v1.2.3