summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/BridgeTest.php21
1 files changed, 19 insertions, 2 deletions
diff --git a/test/BridgeTest.php b/test/BridgeTest.php
index b90ae02..309a959 100644
--- a/test/BridgeTest.php
+++ b/test/BridgeTest.php
@@ -18,11 +18,11 @@ class BridgeTest extends PHPUnit_Framework_TestCase {
$this->db->exec(
'CREATE TABLE posts (' .
- 'post_id MEDIUMINT UNSIGNED NOT NULL, ' .
+ 'post_id MEDIUMINT UNSIGNED, ' .
'message_id VARCHAR(255) NOT NULL, ' .
'in_reply_to VARCHAR(255), ' .
'refs BLOB, ' .
- 'PRIMARY KEY (post_id), ' .
+ 'UNIQUE KEY (post_id), ' .
'UNIQUE KEY (message_id))'
);
@@ -141,6 +141,23 @@ class BridgeTest extends PHPUnit_Framework_TestCase {
array('messages@forums.vassalengine.org', 2, null),
);
}
+
+ /**
+ * @dataProvider providerSetMessageIdIfAbsent
+ */
+ public function testSetMessageIdIfAbsent($messageId, $expected, $ex) {
+ if ($ex) $this->setExpectedException($ex);
+ $bridge = new Bridge($this->db);
+ $this->assertEquals($expected, $bridge->setMessageIdIfAbsent($messageId));
+ }
+
+ public function providerSetMessageIdIfAbsent() {
+ return array(
+ array(null, null, 'PHPUnit_Framework_Error'),
+ array('<20100302094228.33F0310091@charybdis.ellipsis.cx>', false, null),
+ array('<10100302094228.33F0310091@charybdis.ellipsis.cx>', true, null),
+ );
+ }
}
?>