84 lines
3.5 KiB
PHP
84 lines
3.5 KiB
PHP
<?php
|
|
|
|
require_once __DIR__.'/Base.php';
|
|
|
|
use Integration\PostmarkWebhook;
|
|
use Model\TaskCreation;
|
|
use Model\TaskFinder;
|
|
use Model\Project;
|
|
use Model\ProjectPermission;
|
|
use Model\User;
|
|
|
|
class PostmarkWebhookTest extends Base
|
|
{
|
|
public function testHandlePayload()
|
|
{
|
|
$w = new PostmarkWebhook($this->container);
|
|
$p = new Project($this->container);
|
|
$pp = new ProjectPermission($this->container);
|
|
$u = new User($this->container);
|
|
$tc = new TaskCreation($this->container);
|
|
$tf = new TaskFinder($this->container);
|
|
|
|
$this->assertEquals(2, $u->create(array('name' => 'me', 'email' => 'me@localhost')));
|
|
|
|
$this->assertEquals(1, $p->create(array('name' => 'test1')));
|
|
$this->assertEquals(2, $p->create(array('name' => 'test2', 'identifier' => 'TEST1')));
|
|
|
|
// Empty payload
|
|
$this->assertFalse($w->parsePayload(array()));
|
|
|
|
// Unknown user
|
|
$this->assertFalse($w->parsePayload(array('From' => 'a@b.c', 'Subject' => 'Email task', 'MailboxHash' => 'foobar', 'TextBody' => 'boo')));
|
|
|
|
// Project not found
|
|
$this->assertFalse($w->parsePayload(array('From' => 'me@localhost', 'Subject' => 'Email task', 'MailboxHash' => 'test', 'TextBody' => 'boo')));
|
|
|
|
// User is not member
|
|
$this->assertFalse($w->parsePayload(array('From' => 'me@localhost', 'Subject' => 'Email task', 'MailboxHash' => 'test1', 'TextBody' => 'boo')));
|
|
$this->assertTrue($pp->addMember(2, 2));
|
|
|
|
// The task must be created
|
|
$this->assertTrue($w->parsePayload(array('From' => 'me@localhost', 'Subject' => 'Email task', 'MailboxHash' => 'test1', 'TextBody' => 'boo')));
|
|
|
|
$task = $tf->getById(1);
|
|
$this->assertNotEmpty($task);
|
|
$this->assertEquals(2, $task['project_id']);
|
|
$this->assertEquals('Email task', $task['title']);
|
|
$this->assertEquals('boo', $task['description']);
|
|
$this->assertEquals(2, $task['creator_id']);
|
|
}
|
|
|
|
public function testHtml2Markdown()
|
|
{
|
|
$w = new PostmarkWebhook($this->container);
|
|
$p = new Project($this->container);
|
|
$pp = new ProjectPermission($this->container);
|
|
$u = new User($this->container);
|
|
$tc = new TaskCreation($this->container);
|
|
$tf = new TaskFinder($this->container);
|
|
|
|
$this->assertEquals(2, $u->create(array('name' => 'me', 'email' => 'me@localhost')));
|
|
$this->assertEquals(1, $p->create(array('name' => 'test2', 'identifier' => 'TEST1')));
|
|
$this->assertTrue($pp->addMember(1, 2));
|
|
|
|
$this->assertTrue($w->parsePayload(array('From' => 'me@localhost', 'Subject' => 'Email task', 'MailboxHash' => 'test1', 'TextBody' => 'boo', 'HtmlBody' => '<p><strong>boo</strong></p>')));
|
|
|
|
$task = $tf->getById(1);
|
|
$this->assertNotEmpty($task);
|
|
$this->assertEquals(1, $task['project_id']);
|
|
$this->assertEquals('Email task', $task['title']);
|
|
$this->assertEquals('**boo**', $task['description']);
|
|
$this->assertEquals(2, $task['creator_id']);
|
|
|
|
$this->assertTrue($w->parsePayload(array('From' => 'me@localhost', 'Subject' => 'Email task', 'MailboxHash' => 'test1', 'TextBody' => '**boo**', 'HtmlBody' => '')));
|
|
|
|
$task = $tf->getById(2);
|
|
$this->assertNotEmpty($task);
|
|
$this->assertEquals(1, $task['project_id']);
|
|
$this->assertEquals('Email task', $task['title']);
|
|
$this->assertEquals('**boo**', $task['description']);
|
|
$this->assertEquals(2, $task['creator_id']);
|
|
}
|
|
}
|