Move Gitlab webhook to an external plugin
This commit is contained in:
@@ -1,258 +0,0 @@
|
||||
<?php
|
||||
|
||||
require_once __DIR__.'/../Base.php';
|
||||
|
||||
use Kanboard\Integration\GitlabWebhook;
|
||||
use Kanboard\Model\TaskCreation;
|
||||
use Kanboard\Model\TaskFinder;
|
||||
use Kanboard\Model\Project;
|
||||
use Kanboard\Model\ProjectUserRole;
|
||||
use Kanboard\Model\User;
|
||||
use Kanboard\Core\Security\Role;
|
||||
|
||||
class GitlabWebhookTest extends Base
|
||||
{
|
||||
public function testGetEventType()
|
||||
{
|
||||
$g = new GitlabWebhook($this->container);
|
||||
|
||||
$this->assertEquals(GitlabWebhook::TYPE_PUSH, $g->getType(json_decode(file_get_contents(__DIR__.'/../fixtures/gitlab_push.json'), true)));
|
||||
$this->assertEquals(GitlabWebhook::TYPE_ISSUE, $g->getType(json_decode(file_get_contents(__DIR__.'/../fixtures/gitlab_issue_opened.json'), true)));
|
||||
$this->assertEquals(GitlabWebhook::TYPE_COMMENT, $g->getType(json_decode(file_get_contents(__DIR__.'/../fixtures/gitlab_comment_created.json'), true)));
|
||||
$this->assertEquals('', $g->getType(array()));
|
||||
}
|
||||
|
||||
public function testHandleCommit()
|
||||
{
|
||||
$g = new GitlabWebhook($this->container);
|
||||
$p = new Project($this->container);
|
||||
$tc = new TaskCreation($this->container);
|
||||
$tf = new TaskFinder($this->container);
|
||||
|
||||
$this->assertEquals(1, $p->create(array('name' => 'test')));
|
||||
$g->setProjectId(1);
|
||||
|
||||
$this->container['dispatcher']->addListener(GitlabWebhook::EVENT_COMMIT, array($this, 'onCommit'));
|
||||
|
||||
$event = json_decode(file_get_contents(__DIR__.'/../fixtures/gitlab_push.json'), true);
|
||||
|
||||
// No task
|
||||
$this->assertFalse($g->handleCommit($event['commits'][0]));
|
||||
|
||||
// Create task with the wrong id
|
||||
$this->assertEquals(1, $tc->create(array('title' => 'test1', 'project_id' => 1)));
|
||||
$this->assertFalse($g->handleCommit($event['commits'][0]));
|
||||
|
||||
// Create task with the right id
|
||||
$this->assertEquals(2, $tc->create(array('title' => 'test2', 'project_id' => 1)));
|
||||
$this->assertTrue($g->handleCommit($event['commits'][0]));
|
||||
|
||||
$called = $this->container['dispatcher']->getCalledListeners();
|
||||
$this->assertArrayHasKey(GitlabWebhook::EVENT_COMMIT.'.GitlabWebhookTest::onCommit', $called);
|
||||
}
|
||||
|
||||
public function testHandleIssueOpened()
|
||||
{
|
||||
$g = new GitlabWebhook($this->container);
|
||||
$g->setProjectId(1);
|
||||
|
||||
$this->container['dispatcher']->addListener(GitlabWebhook::EVENT_ISSUE_OPENED, array($this, 'onOpen'));
|
||||
|
||||
$event = json_decode(file_get_contents(__DIR__.'/../fixtures/gitlab_issue_opened.json'), true);
|
||||
$this->assertTrue($g->handleIssueOpened($event['object_attributes']));
|
||||
|
||||
$called = $this->container['dispatcher']->getCalledListeners();
|
||||
$this->assertArrayHasKey(GitlabWebhook::EVENT_ISSUE_OPENED.'.GitlabWebhookTest::onOpen', $called);
|
||||
}
|
||||
|
||||
public function testHandleIssueReopened()
|
||||
{
|
||||
$g = new GitlabWebhook($this->container);
|
||||
$p = new Project($this->container);
|
||||
$tc = new TaskCreation($this->container);
|
||||
$tf = new TaskFinder($this->container);
|
||||
|
||||
$this->assertEquals(1, $p->create(array('name' => 'test')));
|
||||
$g->setProjectId(1);
|
||||
|
||||
$this->container['dispatcher']->addListener(GitlabWebhook::EVENT_ISSUE_REOPENED, array($this, 'onReopen'));
|
||||
|
||||
$event = json_decode(file_get_contents(__DIR__.'/../fixtures/gitlab_issue_reopened.json'), true);
|
||||
|
||||
// Issue not there
|
||||
$this->assertFalse($g->handleIssueReopened($event['object_attributes']));
|
||||
|
||||
$called = $this->container['dispatcher']->getCalledListeners();
|
||||
$this->assertEmpty($called);
|
||||
|
||||
$this->assertEquals(1, $tc->create(array('title' => 'A', 'project_id' => 1, 'reference' => 355691)));
|
||||
$task = $tf->getByReference(1, 355691);
|
||||
$this->assertTrue($g->handleIssueReopened($event['object_attributes']));
|
||||
|
||||
$called = $this->container['dispatcher']->getCalledListeners();
|
||||
$this->assertArrayHasKey(GitlabWebhook::EVENT_ISSUE_REOPENED.'.GitlabWebhookTest::onReopen', $called);
|
||||
}
|
||||
|
||||
|
||||
public function testHandleIssueClosed()
|
||||
{
|
||||
$g = new GitlabWebhook($this->container);
|
||||
$p = new Project($this->container);
|
||||
$tc = new TaskCreation($this->container);
|
||||
$tf = new TaskFinder($this->container);
|
||||
|
||||
$this->assertEquals(1, $p->create(array('name' => 'test')));
|
||||
$g->setProjectId(1);
|
||||
|
||||
$this->container['dispatcher']->addListener(GitlabWebhook::EVENT_ISSUE_CLOSED, array($this, 'onClose'));
|
||||
|
||||
$event = json_decode(file_get_contents(__DIR__.'/../fixtures/gitlab_issue_closed.json'), true);
|
||||
|
||||
// Issue not there
|
||||
$this->assertFalse($g->handleIssueClosed($event['object_attributes']));
|
||||
|
||||
$called = $this->container['dispatcher']->getCalledListeners();
|
||||
$this->assertEmpty($called);
|
||||
|
||||
// Create a task with the issue reference
|
||||
$this->assertEquals(1, $tc->create(array('title' => 'A', 'project_id' => 1, 'reference' => 355691)));
|
||||
$task = $tf->getByReference(1, 355691);
|
||||
$this->assertNotEmpty($task);
|
||||
|
||||
$task = $tf->getByReference(2, 355691);
|
||||
$this->assertEmpty($task);
|
||||
|
||||
$this->assertTrue($g->handleIssueClosed($event['object_attributes']));
|
||||
|
||||
$called = $this->container['dispatcher']->getCalledListeners();
|
||||
$this->assertArrayHasKey(GitlabWebhook::EVENT_ISSUE_CLOSED.'.GitlabWebhookTest::onClose', $called);
|
||||
}
|
||||
|
||||
public function testCommentCreatedWithNoUser()
|
||||
{
|
||||
$this->container['dispatcher']->addListener(GitlabWebhook::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' => 355691, 'project_id' => 1)));
|
||||
|
||||
$g = new GitlabWebhook($this->container);
|
||||
$g->setProjectId(1);
|
||||
|
||||
$this->assertNotFalse($g->parsePayload(
|
||||
json_decode(file_get_contents(__DIR__.'/../fixtures/gitlab_comment_created.json'), true)
|
||||
));
|
||||
}
|
||||
|
||||
public function testCommentCreatedWithNotMember()
|
||||
{
|
||||
$this->container['dispatcher']->addListener(GitlabWebhook::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' => 355691, 'project_id' => 1)));
|
||||
|
||||
$u = new User($this->container);
|
||||
$this->assertEquals(2, $u->create(array('username' => 'minicoders')));
|
||||
|
||||
$g = new GitlabWebhook($this->container);
|
||||
$g->setProjectId(1);
|
||||
|
||||
$this->assertNotFalse($g->parsePayload(
|
||||
json_decode(file_get_contents(__DIR__.'/../fixtures/gitlab_comment_created.json'), true)
|
||||
));
|
||||
}
|
||||
|
||||
public function testCommentCreatedWithUser()
|
||||
{
|
||||
$this->container['dispatcher']->addListener(GitlabWebhook::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' => 355691, 'project_id' => 1)));
|
||||
|
||||
$u = new User($this->container);
|
||||
$this->assertEquals(2, $u->create(array('username' => 'minicoders')));
|
||||
|
||||
$pp = new ProjectUserRole($this->container);
|
||||
$this->assertTrue($pp->addUser(1, 2, Role::PROJECT_MEMBER));
|
||||
|
||||
$g = new GitlabWebhook($this->container);
|
||||
$g->setProjectId(1);
|
||||
|
||||
$this->assertNotFalse($g->parsePayload(
|
||||
json_decode(file_get_contents(__DIR__.'/../fixtures/gitlab_comment_created.json'), true)
|
||||
));
|
||||
}
|
||||
|
||||
public function onOpen($event)
|
||||
{
|
||||
$data = $event->getAll();
|
||||
$this->assertEquals(1, $data['project_id']);
|
||||
$this->assertEquals(355691, $data['reference']);
|
||||
$this->assertEquals('Bug', $data['title']);
|
||||
$this->assertEquals("There is a bug somewhere.\r\n\r\nBye\n\n[Gitlab Issue](https://gitlab.com/minicoders/test-webhook/issues/1)", $data['description']);
|
||||
}
|
||||
|
||||
public function onReopen($event)
|
||||
{
|
||||
$data = $event->getAll();
|
||||
$this->assertEquals(1, $data['project_id']);
|
||||
$this->assertEquals(1, $data['task_id']);
|
||||
$this->assertEquals(355691, $data['reference']);
|
||||
}
|
||||
public function onClose($event)
|
||||
{
|
||||
$data = $event->getAll();
|
||||
$this->assertEquals(1, $data['project_id']);
|
||||
$this->assertEquals(1, $data['task_id']);
|
||||
$this->assertEquals(355691, $data['reference']);
|
||||
}
|
||||
|
||||
public function onCommit($event)
|
||||
{
|
||||
$data = $event->getAll();
|
||||
$this->assertEquals(1, $data['project_id']);
|
||||
$this->assertEquals(2, $data['task_id']);
|
||||
$this->assertEquals('test2', $data['title']);
|
||||
$this->assertEquals("Fix bug #2\n\n[Commit made by @Fred on Gitlab](https://gitlab.com/minicoders/test-webhook/commit/48aafa75eef9ad253aa254b0c82c987a52ebea78)", $data['comment']);
|
||||
$this->assertEquals("Fix bug #2", $data['commit_message']);
|
||||
$this->assertEquals('https://gitlab.com/minicoders/test-webhook/commit/48aafa75eef9ad253aa254b0c82c987a52ebea78', $data['commit_url']);
|
||||
}
|
||||
|
||||
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(1642761, $data['reference']);
|
||||
$this->assertEquals("Super comment!\n\n[By @minicoders on Gitlab](https://gitlab.com/minicoders/test-webhook/issues/1#note_1642761)", $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(1642761, $data['reference']);
|
||||
$this->assertEquals("Super comment!\n\n[By @minicoders on Gitlab](https://gitlab.com/minicoders/test-webhook/issues/1#note_1642761)", $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(1642761, $data['reference']);
|
||||
$this->assertEquals("Super comment!\n\n[By @minicoders on Gitlab](https://gitlab.com/minicoders/test-webhook/issues/1#note_1642761)", $data['comment']);
|
||||
}
|
||||
}
|
||||
@@ -1,46 +0,0 @@
|
||||
{
|
||||
"object_kind": "note",
|
||||
"user": {
|
||||
"name": "Fred",
|
||||
"username": "minicoders",
|
||||
"avatar_url": "https://secure.gravatar.com/avatar/3c44936e5a56f80711bff14987d2733f?s=40&d=identicon"
|
||||
},
|
||||
"project_id": 320820,
|
||||
"repository": {
|
||||
"name": "test-webhook",
|
||||
"url": "git@gitlab.com:minicoders/test-webhook.git",
|
||||
"description": "",
|
||||
"homepage": "https://gitlab.com/minicoders/test-webhook"
|
||||
},
|
||||
"object_attributes": {
|
||||
"id": 1642761,
|
||||
"note": "Super comment!",
|
||||
"noteable_type": "Issue",
|
||||
"author_id": 74067,
|
||||
"created_at": "2015-07-17 21:37:48 UTC",
|
||||
"updated_at": "2015-07-17 21:37:48 UTC",
|
||||
"project_id": 320820,
|
||||
"attachment": null,
|
||||
"line_code": null,
|
||||
"commit_id": "",
|
||||
"noteable_id": 355691,
|
||||
"st_diff": null,
|
||||
"system": false,
|
||||
"url": "https://gitlab.com/minicoders/test-webhook/issues/1#note_1642761"
|
||||
},
|
||||
"issue": {
|
||||
"id": 355691,
|
||||
"title": "Bug",
|
||||
"assignee_id": null,
|
||||
"author_id": 74067,
|
||||
"project_id": 320820,
|
||||
"created_at": "2015-07-17 21:31:47 UTC",
|
||||
"updated_at": "2015-07-17 21:37:48 UTC",
|
||||
"position": 0,
|
||||
"branch_name": null,
|
||||
"description": "There is a bug somewhere.\r\n\r\nBye",
|
||||
"milestone_id": null,
|
||||
"state": "opened",
|
||||
"iid": 1
|
||||
}
|
||||
}
|
||||
@@ -1,25 +0,0 @@
|
||||
{
|
||||
"object_kind": "issue",
|
||||
"user": {
|
||||
"name": "Fred",
|
||||
"username": "minicoders",
|
||||
"avatar_url": "https://secure.gravatar.com/avatar/3c44936e5a56f80711bff14987d2733f?s=40&d=identicon"
|
||||
},
|
||||
"object_attributes": {
|
||||
"id": 355691,
|
||||
"title": "Bug",
|
||||
"assignee_id": null,
|
||||
"author_id": 74067,
|
||||
"project_id": 320820,
|
||||
"created_at": "2015-07-17 21:31:47 UTC",
|
||||
"updated_at": "2015-07-17 22:10:17 UTC",
|
||||
"position": 0,
|
||||
"branch_name": null,
|
||||
"description": "There is a bug somewhere.\r\n\r\nBye",
|
||||
"milestone_id": null,
|
||||
"state": "closed",
|
||||
"iid": 1,
|
||||
"url": "https://gitlab.com/minicoders/test-webhook/issues/1",
|
||||
"action": "close"
|
||||
}
|
||||
}
|
||||
@@ -1,25 +0,0 @@
|
||||
{
|
||||
"object_kind": "issue",
|
||||
"user": {
|
||||
"name": "Fred",
|
||||
"username": "minicoders",
|
||||
"avatar_url": "https://secure.gravatar.com/avatar/3c44936e5a56f80711bff14987d2733f?s=40&d=identicon"
|
||||
},
|
||||
"object_attributes": {
|
||||
"id": 355691,
|
||||
"title": "Bug",
|
||||
"assignee_id": null,
|
||||
"author_id": 74067,
|
||||
"project_id": 320820,
|
||||
"created_at": "2015-07-17 21:31:47 UTC",
|
||||
"updated_at": "2015-07-17 21:31:47 UTC",
|
||||
"position": 0,
|
||||
"branch_name": null,
|
||||
"description": "There is a bug somewhere.\r\n\r\nBye",
|
||||
"milestone_id": null,
|
||||
"state": "opened",
|
||||
"iid": 1,
|
||||
"url": "https://gitlab.com/minicoders/test-webhook/issues/1",
|
||||
"action": "open"
|
||||
}
|
||||
}
|
||||
@@ -1,25 +0,0 @@
|
||||
{
|
||||
"object_kind": "issue",
|
||||
"user": {
|
||||
"name": "Fred",
|
||||
"username": "minicoders",
|
||||
"avatar_url": "https://secure.gravatar.com/avatar/3c44936e5a56f80711bff14987d2733f?s=40&d=identicon"
|
||||
},
|
||||
"object_attributes": {
|
||||
"id": 355691,
|
||||
"title": "Bug",
|
||||
"assignee_id": null,
|
||||
"author_id": 74067,
|
||||
"project_id": 320820,
|
||||
"created_at": "2015-07-17 21:31:47 UTC",
|
||||
"updated_at": "2015-07-17 21:31:47 UTC",
|
||||
"position": 0,
|
||||
"branch_name": null,
|
||||
"description": "There is a bug somewhere.\r\n\r\nBye",
|
||||
"milestone_id": null,
|
||||
"state": "opened",
|
||||
"iid": 1,
|
||||
"url": "https://gitlab.com/minicoders/test-webhook/issues/1",
|
||||
"action": "reopen"
|
||||
}
|
||||
}
|
||||
@@ -1,44 +0,0 @@
|
||||
{
|
||||
"object_kind": "push",
|
||||
"before": "e4ec6156d208a45fc546fae73c28300b5af1692a",
|
||||
"after": "48aafa75eef9ad253aa254b0c82c987a52ebea78",
|
||||
"ref": "refs/heads/master",
|
||||
"checkout_sha": "48aafa75eef9ad253aa254b0c82c987a52ebea78",
|
||||
"message": null,
|
||||
"user_id": 74067,
|
||||
"user_name": "Fred",
|
||||
"user_email": "f+gitlab@minicoders.com",
|
||||
"project_id": 320820,
|
||||
"repository": {
|
||||
"name": "test-webhook",
|
||||
"url": "git@gitlab.com:minicoders/test-webhook.git",
|
||||
"description": "",
|
||||
"homepage": "https://gitlab.com/minicoders/test-webhook",
|
||||
"git_http_url": "https://gitlab.com/minicoders/test-webhook.git",
|
||||
"git_ssh_url": "git@gitlab.com:minicoders/test-webhook.git",
|
||||
"visibility_level": 0
|
||||
},
|
||||
"commits": [
|
||||
{
|
||||
"id": "48aafa75eef9ad253aa254b0c82c987a52ebea78",
|
||||
"message": "Fix bug #2",
|
||||
"timestamp": "2015-06-21T00:41:41+00:00",
|
||||
"url": "https://gitlab.com/minicoders/test-webhook/commit/48aafa75eef9ad253aa254b0c82c987a52ebea78",
|
||||
"author": {
|
||||
"name": "Fred",
|
||||
"email": "me@localhost"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "e4ec6156d208a45fc546fae73c28300b5af1692a",
|
||||
"message": "test",
|
||||
"timestamp": "2015-06-21T00:35:55+00:00",
|
||||
"url": "https://gitlab.com/localhost/test-webhook/commit/e4ec6156d208a45fc546fae73c28300b5af1692a",
|
||||
"author": {
|
||||
"name": "Fred",
|
||||
"email": "me@localhost"
|
||||
}
|
||||
}
|
||||
],
|
||||
"total_commits_count": 2
|
||||
}
|
||||
Reference in New Issue
Block a user