diff options
author | Brion Vibber <brion@pobox.com> | 2010-12-14 13:11:34 -0800 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2010-12-14 13:11:34 -0800 |
commit | 0f26d6eb70dc410bac6ec66161bf11b2f6a80fc0 (patch) | |
tree | c25bce14a1dd8cca77f10f5ce9a955dd4377b2a5 /tests | |
parent | 56e72ec7a138b823b8094312d935c9644838a8eb (diff) |
more fixins on AtomPub tests
Diffstat (limited to 'tests')
-rw-r--r-- | tests/atompub/atompub_test.php | 36 |
1 files changed, 33 insertions, 3 deletions
diff --git a/tests/atompub/atompub_test.php b/tests/atompub/atompub_test.php index 99a0981e5..cc1f93b44 100644 --- a/tests/atompub/atompub_test.php +++ b/tests/atompub/atompub_test.php @@ -65,8 +65,8 @@ class AtomPubClient */ private function httpClient($method='GET') { - $client = new HTTPClient($this->url, 'GET'); - // basic auth, whee + $client = new HTTPClient($this->url); + $client->setMethod($method); $client->setAuth($this->user, $this->pass); return $client; } @@ -211,9 +211,39 @@ $collection = new AtomPubClient($url, $user, $pass); // confirm the feed has edit links ..... ? -// $atom = ''; +echo "Posting an empty message (should fail)... "; +try { + $noticeUrl = $collection->post(''); + die("FAILED, succeeded!\n"); +} catch (Exception $e) { + echo "ok\n"; +} + +echo "Posting an invalid XML message (should fail)... "; +try { + $noticeUrl = $collection->post('<feed<entry>barf</yomomma>'); + die("FAILED, succeeded!\n"); +} catch (Exception $e) { + echo "ok\n"; +} + +echo "Posting a valid XML but non-Atom message (should fail)... "; +try { + $noticeUrl = $collection->post('<feed xmlns="http://notatom.com"><id>arf</id><entry><id>barf</id></entry></feed>'); + die("FAILED, succeeded!\n"); +} catch (Exception $e) { + echo "ok\n"; +} // post! +$rand = mt_rand(0, 99999); +$atom = <<<END_ATOM +<entry xmlns="http://www.w3.org/2005/Atom"> + <title>This is an AtomPub test post title ($rand)</title> + <content>This is an AtomPub test post content ($rand)</content> +</entry> +END_ATOM; + echo "Posting a new message... "; $noticeUrl = $collection->post($atom); echo "ok, got $noticeUrl\n"; |