diff options
author | uckelman <uckelman@nomic.net> | 2010-04-30 16:41:26 +0000 |
---|---|---|
committer | uckelman <uckelman@nomic.net> | 2010-04-30 16:41:26 +0000 |
commit | 07ad87efa0f7f5ff0e503efb16c26314ffb1d31f (patch) | |
tree | b96636855e9fba5dfa55af67cb78764b15dd4855 /test/BridgeTest.php | |
parent | 03c94fad7650f4075ee2d289f8b985cd8f8daef7 (diff) |
Refactored message registration.
git-svn-id: https://vassalengine.svn.sourceforge.net/svnroot/vassalengine/site-src/trunk@6783 67b53d14-2c14-4ace-a08f-0dab2b34000c
Diffstat (limited to 'test/BridgeTest.php')
-rw-r--r-- | test/BridgeTest.php | 65 |
1 files changed, 54 insertions, 11 deletions
diff --git a/test/BridgeTest.php b/test/BridgeTest.php index 413a99e..bf13ee0 100644 --- a/test/BridgeTest.php +++ b/test/BridgeTest.php @@ -106,25 +106,26 @@ class BridgeTest extends PHPUnit_Framework_TestCase { public function providerReserveEditId() { return array( + array(null, null, 'Exception'), array(1, 2, null), array(2, 2, null) ); } - + /** - * @dataProvider providerRegisterMessage + * @dataProvider providerRegisterByEditId */ - public function testRegisterMessage($postId, $messageId, $inReplyTo, - $expected, $ex) { + public function testRegisterByEditId($editId, $messageId, $inReplyTo, + $expected, $ex) { if ($ex) $this->setExpectedException($ex); $bridge = new Bridge($this->db); $this->assertEquals( $expected, - $bridge->registerMessage($postId, $messageId, $inReplyTo) + $bridge->registerMessage($editId, $messageId, $inReplyTo) ); } - public function providerRegisterMessage() { + public function providerRegisterByEditId() { return array( array(null, null, null, null, 'Exception'), array( @@ -159,20 +160,62 @@ class BridgeTest extends PHPUnit_Framework_TestCase { } /** + * @dataProvider providerRegisterByMessageId + */ + public function testRegisterByMessageId($messageId, $inReplyTo, + $expected, $ex) { + if ($ex) $this->setExpectedException($ex); + $bridge = new Bridge($this->db); + $this->assertEquals( + $expected, + $bridge->registerByMessageId($messageId, $inReplyTo) + ); + } + + public function providerRegisterMessageId() { + return array( + array(null, null, null, 'Exception'), + array( + '<20100302094228.33F0310091@charybdis.ellipsis.cx>', + null, + false, + null + ), + array( + '<20100302094228.33F0310091@charybdis.ellipsis.cx>', + null, + false, + null + ), + array( + '<10100302094228.33F0310091@charybdis.ellipsis.cx>', + null, + 2, + null + ), + array( + '<10100302094228.33F0310091@charybdis.ellipsis.cx>', + null, + 2, + null + ) + ); + } + + /** * @dataProvider providerUnregisterMessage */ - public function testUnregisterMessage($messageId, $ex) { + public function testUnregisterMessage($editId, $ex) { if ($ex) $this->setExpectedException($ex); $bridge = new Bridge($this->db); - $bridge->unregisterMessage($messageId); - $this->assertEquals(false, $bridge->getPostId($messageId)); + $bridge->unregisterMessage($editId); } public function providerUnregisterMessage() { return array( array(null, 'Exception'), - array('<20100302094228.33F0310091@charybdis.ellipsis.cx>', null), - array('<10100302094228.33F0310091@charybdis.ellipsis.cx>', 'Exception') + array(1, null), + array(2, 'Exception') ); } |