diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-06-20 19:21:35 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-06-20 19:21:35 -0400 |
commit | 7b947ebdbd3b6bcd9de10ea4255bfa11fc88695c (patch) | |
tree | ec67439696608efb9e330c527c6a8f76da9d5c6d /tests/units/GithubWebhookTest.php | |
parent | 22b26d0b4d68f0492275ec93eb4df1a975a8fc80 (diff) |
Allow sync of Github comments without common username and add unit tests
Diffstat (limited to 'tests/units/GithubWebhookTest.php')
-rw-r--r-- | tests/units/GithubWebhookTest.php | 455 |
1 files changed, 455 insertions, 0 deletions
diff --git a/tests/units/GithubWebhookTest.php b/tests/units/GithubWebhookTest.php new file mode 100644 index 00000000..65aa045f --- /dev/null +++ b/tests/units/GithubWebhookTest.php @@ -0,0 +1,455 @@ +<?php + +require_once __DIR__.'/Base.php'; + +use Integration\GithubWebhook; +use Model\TaskCreation; +use Model\TaskFinder; +use Model\Project; +use Model\ProjectPermission; +use Model\User; + +class GithubWebhookTest extends Base +{ + public function testIssueOpened() + { + $this->container['dispatcher']->addListener(GithubWebhook::EVENT_ISSUE_OPENED, array($this, 'onIssueOpened')); + + $p = new Project($this->container); + $this->assertEquals(1, $p->create(array('name' => 'foobar'))); + + $g = new GithubWebhook($this->container); + $g->setProjectId(1); + + $this->assertNotFalse($g->parsePayload( + 'issues', + json_decode(file_get_contents(__DIR__.'/fixtures/github_issue_opened.json'), true) + )); + } + + public function testIssueAssigned() + { + $this->container['dispatcher']->addListener(GithubWebhook::EVENT_ISSUE_ASSIGNEE_CHANGE, array($this, 'onIssueAssigned')); + + $p = new Project($this->container); + $this->assertEquals(1, $p->create(array('name' => 'foobar'))); + + $tc = new TaskCreation($this->container); + $this->assertEquals(1, $tc->create(array('title' => 'boo', 'reference' => 3, 'project_id' => 1))); + + $u = new User($this->container); + $this->assertEquals(2, $u->create(array('username' => 'fguillot'))); + + $pp = new ProjectPermission($this->container); + $this->assertTrue($pp->addMember(1, 2)); + + $g = new GithubWebhook($this->container); + $g->setProjectId(1); + + $this->assertNotFalse($g->parsePayload( + 'issues', + json_decode(file_get_contents(__DIR__.'/fixtures/github_issue_assigned.json'), true) + )); + } + + public function testIssueAssignedWithNoExistingTask() + { + $p = new Project($this->container); + $this->assertEquals(1, $p->create(array('name' => 'foobar'))); + + $g = new GithubWebhook($this->container); + $g->setProjectId(1); + + $payload = json_decode(file_get_contents(__DIR__.'/fixtures/github_issue_assigned.json'), true); + + $this->assertFalse($g->handleIssueAssigned($payload['issue'])); + } + + public function testIssueAssignedWithNoExistingUser() + { + $p = new Project($this->container); + $this->assertEquals(1, $p->create(array('name' => 'foobar'))); + + $tc = new TaskCreation($this->container); + $this->assertEquals(1, $tc->create(array('title' => 'boo', 'reference' => 3, 'project_id' => 1))); + + $g = new GithubWebhook($this->container); + $g->setProjectId(1); + + $payload = json_decode(file_get_contents(__DIR__.'/fixtures/github_issue_assigned.json'), true); + + $this->assertFalse($g->handleIssueAssigned($payload['issue'])); + } + + public function testIssueAssignedWithNoMember() + { + $p = new Project($this->container); + $this->assertEquals(1, $p->create(array('name' => 'foobar'))); + + $tc = new TaskCreation($this->container); + $this->assertEquals(1, $tc->create(array('title' => 'boo', 'reference' => 3, 'project_id' => 1))); + + $u = new User($this->container); + $this->assertEquals(2, $u->create(array('username' => 'fguillot'))); + + $g = new GithubWebhook($this->container); + $g->setProjectId(1); + + $payload = json_decode(file_get_contents(__DIR__.'/fixtures/github_issue_assigned.json'), true); + + $this->assertFalse($g->handleIssueAssigned($payload['issue'])); + } + + public function testIssueAssignedWithMember() + { + $p = new Project($this->container); + $this->assertEquals(1, $p->create(array('name' => 'foobar'))); + + $tc = new TaskCreation($this->container); + $this->assertEquals(1, $tc->create(array('title' => 'boo', 'reference' => 3, 'project_id' => 1))); + + $u = new User($this->container); + $this->assertEquals(2, $u->create(array('username' => 'fguillot'))); + + $pp = new ProjectPermission($this->container); + $this->assertTrue($pp->addMember(1, 2)); + + $g = new GithubWebhook($this->container); + $g->setProjectId(1); + + $payload = json_decode(file_get_contents(__DIR__.'/fixtures/github_issue_assigned.json'), true); + + $this->assertTrue($g->handleIssueAssigned($payload['issue'])); + } + + public function testIssueUnassigned() + { + $this->container['dispatcher']->addListener(GithubWebhook::EVENT_ISSUE_ASSIGNEE_CHANGE, array($this, 'onIssueUnassigned')); + + $p = new Project($this->container); + $this->assertEquals(1, $p->create(array('name' => 'foobar'))); + + $tc = new TaskCreation($this->container); + $this->assertEquals(1, $tc->create(array('title' => 'boo', 'reference' => 3, 'project_id' => 1))); + + $g = new GithubWebhook($this->container); + $g->setProjectId(1); + + $this->assertNotFalse($g->parsePayload( + 'issues', + json_decode(file_get_contents(__DIR__.'/fixtures/github_issue_unassigned.json'), true) + )); + } + + public function testIssueClosed() + { + $this->container['dispatcher']->addListener(GithubWebhook::EVENT_ISSUE_CLOSED, array($this, 'onIssueClosed')); + + $p = new Project($this->container); + $this->assertEquals(1, $p->create(array('name' => 'foobar'))); + + $tc = new TaskCreation($this->container); + $this->assertEquals(1, $tc->create(array('title' => 'boo', 'reference' => 3, 'project_id' => 1))); + + $g = new GithubWebhook($this->container); + $g->setProjectId(1); + + $this->assertNotFalse($g->parsePayload( + 'issues', + json_decode(file_get_contents(__DIR__.'/fixtures/github_issue_closed.json'), true) + )); + } + + public function testIssueClosedWithTaskNotFound() + { + $p = new Project($this->container); + $this->assertEquals(1, $p->create(array('name' => 'foobar'))); + + $g = new GithubWebhook($this->container); + $g->setProjectId(1); + + $payload = json_decode(file_get_contents(__DIR__.'/fixtures/github_issue_closed.json'), true); + + $this->assertFalse($g->handleIssueClosed($payload['issue'])); + } + + public function testIssueReopened() + { + $this->container['dispatcher']->addListener(GithubWebhook::EVENT_ISSUE_REOPENED, array($this, 'onIssueReopened')); + + $p = new Project($this->container); + $this->assertEquals(1, $p->create(array('name' => 'foobar'))); + + $tc = new TaskCreation($this->container); + $this->assertEquals(1, $tc->create(array('title' => 'boo', 'reference' => 3, 'project_id' => 1))); + + $g = new GithubWebhook($this->container); + $g->setProjectId(1); + + $this->assertNotFalse($g->parsePayload( + 'issues', + json_decode(file_get_contents(__DIR__.'/fixtures/github_issue_reopened.json'), true) + )); + } + + public function testIssueReopenedWithTaskNotFound() + { + $p = new Project($this->container); + $this->assertEquals(1, $p->create(array('name' => 'foobar'))); + + $g = new GithubWebhook($this->container); + $g->setProjectId(1); + + $payload = json_decode(file_get_contents(__DIR__.'/fixtures/github_issue_reopened.json'), true); + + $this->assertFalse($g->handleIssueReopened($payload['issue'])); + } + + public function testIssueLabeled() + { + $this->container['dispatcher']->addListener(GithubWebhook::EVENT_ISSUE_LABEL_CHANGE, array($this, 'onIssueLabeled')); + + $p = new Project($this->container); + $this->assertEquals(1, $p->create(array('name' => 'foobar'))); + + $tc = new TaskCreation($this->container); + $this->assertEquals(1, $tc->create(array('title' => 'boo', 'reference' => 3, 'project_id' => 1))); + + $g = new GithubWebhook($this->container); + $g->setProjectId(1); + + $this->assertNotFalse($g->parsePayload( + 'issues', + json_decode(file_get_contents(__DIR__.'/fixtures/github_issue_labeled.json'), true) + )); + } + + public function testIssueLabeledWithTaskNotFound() + { + $p = new Project($this->container); + $this->assertEquals(1, $p->create(array('name' => 'foobar'))); + + $g = new GithubWebhook($this->container); + $g->setProjectId(1); + + $payload = json_decode(file_get_contents(__DIR__.'/fixtures/github_issue_labeled.json'), true); + + $this->assertFalse($g->handleIssueLabeled($payload['issue'], $payload['label'])); + } + + public function testIssueUnLabeled() + { + $this->container['dispatcher']->addListener(GithubWebhook::EVENT_ISSUE_LABEL_CHANGE, array($this, 'onIssueUnlabeled')); + + $p = new Project($this->container); + $this->assertEquals(1, $p->create(array('name' => 'foobar'))); + + $tc = new TaskCreation($this->container); + $this->assertEquals(1, $tc->create(array('title' => 'boo', 'reference' => 3, 'project_id' => 1))); + + $g = new GithubWebhook($this->container); + $g->setProjectId(1); + + $this->assertNotFalse($g->parsePayload( + 'issues', + json_decode(file_get_contents(__DIR__.'/fixtures/github_issue_unlabeled.json'), true) + )); + } + + public function testIssueUnLabeledWithTaskNotFound() + { + $p = new Project($this->container); + $this->assertEquals(1, $p->create(array('name' => 'foobar'))); + + $g = new GithubWebhook($this->container); + $g->setProjectId(1); + + $payload = json_decode(file_get_contents(__DIR__.'/fixtures/github_issue_unlabeled.json'), true); + + $this->assertFalse($g->handleIssueUnlabeled($payload['issue'], $payload['label'])); + } + + public function testCommentCreatedWithNoUser() + { + $this->container['dispatcher']->addListener(GithubWebhook::EVENT_ISSUE_COMMENT, array($this, 'onCommentCreatedWithNoUser')); + + $p = new Project($this->container); + $this->assertEquals(1, $p->create(array('name' => 'foobar'))); + + $tc = new TaskCreation($this->container); + $this->assertEquals(1, $tc->create(array('title' => 'boo', 'reference' => 3, 'project_id' => 1))); + + $g = new GithubWebhook($this->container); + $g->setProjectId(1); + + $this->assertNotFalse($g->parsePayload( + 'issue_comment', + json_decode(file_get_contents(__DIR__.'/fixtures/github_comment_created.json'), true) + )); + } + + public function testCommentCreatedWithNotMember() + { + $this->container['dispatcher']->addListener(GithubWebhook::EVENT_ISSUE_COMMENT, array($this, 'onCommentCreatedWithNotMember')); + + $p = new Project($this->container); + $this->assertEquals(1, $p->create(array('name' => 'foobar'))); + + $tc = new TaskCreation($this->container); + $this->assertEquals(1, $tc->create(array('title' => 'boo', 'reference' => 3, 'project_id' => 1))); + + $u = new User($this->container); + $this->assertEquals(2, $u->create(array('username' => 'fguillot'))); + + $g = new GithubWebhook($this->container); + $g->setProjectId(1); + + $this->assertNotFalse($g->parsePayload( + 'issue_comment', + json_decode(file_get_contents(__DIR__.'/fixtures/github_comment_created.json'), true) + )); + } + + public function testCommentCreatedWithUser() + { + $this->container['dispatcher']->addListener(GithubWebhook::EVENT_ISSUE_COMMENT, array($this, 'onCommentCreatedWithUser')); + + $p = new Project($this->container); + $this->assertEquals(1, $p->create(array('name' => 'foobar'))); + + $tc = new TaskCreation($this->container); + $this->assertEquals(1, $tc->create(array('title' => 'boo', 'reference' => 3, 'project_id' => 1))); + + $u = new User($this->container); + $this->assertEquals(2, $u->create(array('username' => 'fguillot'))); + + $pp = new ProjectPermission($this->container); + $this->assertTrue($pp->addMember(1, 2)); + + $g = new GithubWebhook($this->container); + $g->setProjectId(1); + + $this->assertNotFalse($g->parsePayload( + 'issue_comment', + json_decode(file_get_contents(__DIR__.'/fixtures/github_comment_created.json'), true) + )); + } + + public function testPush() + { + $this->container['dispatcher']->addListener(GithubWebhook::EVENT_COMMIT, array($this, 'onPush')); + + $p = new Project($this->container); + $this->assertEquals(1, $p->create(array('name' => 'foobar'))); + + $tc = new TaskCreation($this->container); + $this->assertEquals(1, $tc->create(array('title' => 'boo', 'project_id' => 1))); + + $g = new GithubWebhook($this->container); + $g->setProjectId(1); + + $this->assertNotFalse($g->parsePayload( + 'push', + json_decode(file_get_contents(__DIR__.'/fixtures/github_push.json'), true) + )); + } + + public function onIssueOpened($event) + { + $data = $event->getAll(); + $this->assertEquals(1, $data['project_id']); + $this->assertEquals(3, $data['reference']); + $this->assertEquals("plop\n\n[Github Issue](https://github.com/kanboardapp/webhook/issues/3)", $data['description']); + } + + public function onIssueAssigned($event) + { + $data = $event->getAll(); + $this->assertEquals(1, $data['project_id']); + $this->assertEquals(1, $data['task_id']); + $this->assertEquals(3, $data['reference']); + $this->assertEquals(2, $data['owner_id']); + } + + public function onIssueUnassigned($event) + { + $data = $event->getAll(); + $this->assertEquals(1, $data['project_id']); + $this->assertEquals(1, $data['task_id']); + $this->assertEquals(3, $data['reference']); + $this->assertEquals(0, $data['owner_id']); + } + + public function onIssueClosed($event) + { + $data = $event->getAll(); + $this->assertEquals(1, $data['project_id']); + $this->assertEquals(1, $data['task_id']); + $this->assertEquals(3, $data['reference']); + } + + public function onIssueReopened($event) + { + $data = $event->getAll(); + $this->assertEquals(1, $data['project_id']); + $this->assertEquals(1, $data['task_id']); + $this->assertEquals(3, $data['reference']); + } + + public function onIssueLabeled($event) + { + $data = $event->getAll(); + $this->assertEquals(1, $data['project_id']); + $this->assertEquals(1, $data['task_id']); + $this->assertEquals(3, $data['reference']); + $this->assertEquals('bug', $data['label']); + } + + public function onIssueUnlabeled($event) + { + $data = $event->getAll(); + $this->assertEquals(1, $data['project_id']); + $this->assertEquals(1, $data['task_id']); + $this->assertEquals(3, $data['reference']); + $this->assertEquals('bug', $data['label']); + $this->assertEquals(0, $data['category_id']); + } + + public function onCommentCreatedWithNoUser($event) + { + $data = $event->getAll(); + $this->assertEquals(1, $data['project_id']); + $this->assertEquals(1, $data['task_id']); + $this->assertEquals(0, $data['user_id']); + $this->assertEquals(113834672, $data['reference']); + $this->assertEquals("test\n\n[By @fguillot on Github](https://github.com/kanboardapp/webhook/issues/3#issuecomment-113834672)", $data['comment']); + } + + public function onCommentCreatedWithNotMember($event) + { + $data = $event->getAll(); + $this->assertEquals(1, $data['project_id']); + $this->assertEquals(1, $data['task_id']); + $this->assertEquals(0, $data['user_id']); + $this->assertEquals(113834672, $data['reference']); + $this->assertEquals("test\n\n[By @fguillot on Github](https://github.com/kanboardapp/webhook/issues/3#issuecomment-113834672)", $data['comment']); + } + + public function onCommentCreatedWithUser($event) + { + $data = $event->getAll(); + $this->assertEquals(1, $data['project_id']); + $this->assertEquals(1, $data['task_id']); + $this->assertEquals(2, $data['user_id']); + $this->assertEquals(113834672, $data['reference']); + $this->assertEquals("test\n\n[By @fguillot on Github](https://github.com/kanboardapp/webhook/issues/3#issuecomment-113834672)", $data['comment']); + } + + public function onPush($event) + { + $data = $event->getAll(); + $this->assertEquals(1, $data['project_id']); + $this->assertEquals(1, $data['task_id']); + $this->assertEquals('boo', $data['title']); + } +} |