Beispiel #1
0
 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($this->issue_closed_payload, 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' => 103361)));
     $task = $tf->getByReference(103361);
     $this->assertNotEmpty($task);
     $this->assertTrue($g->handleIssueClosed($event['object_attributes']));
     $called = $this->container['dispatcher']->getCalledListeners();
     $this->assertArrayHasKey(GitlabWebhook::EVENT_ISSUE_CLOSED . '.GitlabWebhookTest::onClose', $called);
 }
 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 ProjectPermission($this->container);
     $this->assertTrue($pp->addMember(1, 2));
     $g = new GitlabWebhook($this->container);
     $g->setProjectId(1);
     $this->assertNotFalse($g->parsePayload(json_decode(file_get_contents(__DIR__ . '/fixtures/gitlab_comment_created.json'), true)));
 }