From ae81cd8aa125bcbe573644d2f4ef0e1a3e2b9352 Mon Sep 17 00:00:00 2001 From: uckelman Date: Sun, 21 Mar 2010 14:27:04 +0000 Subject: * Separated Message tests by concrete class. * Added PhpBB3Message class stub. git-svn-id: https://vassalengine.svn.sourceforge.net/svnroot/vassalengine/site-src/trunk@6623 67b53d14-2c14-4ace-a08f-0dab2b34000c --- test/MailmanMessageTest.php | 89 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 89 insertions(+) create mode 100644 test/MailmanMessageTest.php (limited to 'test/MailmanMessageTest.php') diff --git a/test/MailmanMessageTest.php b/test/MailmanMessageTest.php new file mode 100644 index 0000000..c6c6405 --- /dev/null +++ b/test/MailmanMessageTest.php @@ -0,0 +1,89 @@ + 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) { + return new MailmanMessage($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(); + } +} + +?> -- cgit v1.2.3