コード例 #1
0
ファイル: GitlabWebhookTest.php プロジェクト: Folcky/kanboard
 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);
 }