diff options
Diffstat (limited to 'test/MessageTest.php')
-rw-r--r-- | test/MessageTest.php | 93 |
1 files changed, 93 insertions, 0 deletions
diff --git a/test/MessageTest.php b/test/MessageTest.php new file mode 100644 index 0000000..2338e60 --- /dev/null +++ b/test/MessageTest.php @@ -0,0 +1,93 @@ +<?php + +require_once('PHPUnit/Framework.php'); +require_once('src/Message.php'); + +class MessageTest extends PHPUnit_Framework_TestCase { + + public function provider() { + return array( + array(array( + 'class' => 'MailmanMessage', + 'data' => file_get_contents(__DIR__ . '/1'), + 'source' => 'messages@forums.vassalengine.org', + 'post_id' => '', + 'from' => 'uckelman@nomic.net', + 'subject' => 'Re: [Developers]Re: Adding developers?', + 'message_id' => '<20100302094228.33F0310091@charybdis.ellipsis.cx>', + 'in_reply_to' => '<1267473003.m2f.17543@www.vassalengine.org>', + 'references' => '<1267171317.m2f.17507@www.vassalengine.org> <1267473003.m2f.17543@www.vassalengine.org>', + 'body' => '' + )) + ); + } + + protected function buildMessage($params) { + require_once('src/' . $params['class'] . '.php'); + $cl = new ReflectionClass($params['class']); + return $cl->newInstance($params['data']); + } + + /** + * @dataProvider provider + */ + public function testGetSource($expected) { + $this->markTestIncomplete(); + } + + /** + * @dataProvider provider + */ + public function testGetPostId($expected) { + $this->markTestIncomplete(); + } + + /** + * @dataProvider provider + */ + public function testGetFrom($expected) { + $msg = $this->buildMessage($expected); + $this->assertEquals($expected['from'], $msg->getFrom()); + } + + /** + * @dataProvider provider + */ + public function testGetSubject($expected) { + $msg = $this->buildMessage($expected); + $this->assertEquals($expected['subject'], $msg->getSubject()); + } + + /** + * @dataProvider provider + */ + public function testGetMessageId($expected) { + $msg = $this->buildMessage($expected); + $this->assertEquals($expected['message_id'], $msg->getMessageId()); + } + + /** + * @dataProvider provider + */ + public function testGetInReplyTo($expected) { + $msg = $this->buildMessage($expected); + $this->assertEquals($expected['in_reply_to'], $msg->getInReplyTo()); + } + + /** + * @dataProvider provider + */ + public function testGetReferences($expected) { + $msg = $this->buildMessage($expected); + $this->assertEquals($expected['references'], $msg->getReferences()); + } + + /** + * @dataProvider provider + */ + public function testGetBody($expected) { + $this->markTestIncomplete(); + } +} + +?> |