diff options
author | Christian Weiske <cweiske@cweiske.de> | 2011-06-08 07:00:17 +0200 |
---|---|---|
committer | Christian Weiske <cweiske@cweiske.de> | 2011-06-08 07:00:17 +0200 |
commit | 44a65eddaca98c2313ce128f9994e7484f9099b1 (patch) | |
tree | dd4708740dd933b3754f3b2bcc4bcdb8a4913509 /tests/www/indexTest.php | |
parent | 1dc33f4416c940ee3b46d9fabf3a2b1a2d369bb0 (diff) | |
download | semanticscuttle-44a65eddaca98c2313ce128f9994e7484f9099b1.tar.gz semanticscuttle-44a65eddaca98c2313ce128f9994e7484f9099b1.tar.bz2 |
fix tests for people that use a separate test database
Diffstat (limited to 'tests/www/indexTest.php')
-rw-r--r-- | tests/www/indexTest.php | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/tests/www/indexTest.php b/tests/www/indexTest.php index d95a328..18cb75a 100644 --- a/tests/www/indexTest.php +++ b/tests/www/indexTest.php @@ -4,7 +4,7 @@ require_once 'HTTP/Request2.php'; class www_indexTest extends TestBaseApi { - protected $urlPart = 'api/posts/add'; + protected $urlPart = ''; /** * Test that the private rss feed exists when user is setup @@ -15,11 +15,9 @@ class www_indexTest extends TestBaseApi list($req, $uId) = $this->getLoggedInRequest('?unittestMode=1', true, true); $user = $this->us->getUser($uId); - $reqUrl = $GLOBALS['unittestUrl'] . 'index.php/'; - $req->setUrl($reqUrl); - $req->setMethod(HTTP_Request2::METHOD_GET); $response = $req->send(); $response_body = $response->getBody(); + $this->assertNotEquals('', $response_body, 'Response is empty'); $x = simplexml_load_string($response_body); @@ -32,19 +30,16 @@ class www_indexTest extends TestBaseApi }//end testVerifyPrivateRSSLinkExists + /** * Test that the private RSS link doesn't exists when a user - * does not have a private key or is not enabled + * does not have a private key, or the private key is not enabled */ public function testVerifyPrivateRSSLinkDoesNotExist() { list($req, $uId) = $this->getLoggedInRequest('?unittestMode=1', true); $user = $this->us->getUser($uId); - $reqUrl = $GLOBALS['unittestUrl'] . 'bookmarks.php/' - . $user['username']; - $req->setUrl($reqUrl); - $req->setMethod(HTTP_Request2::METHOD_GET); $response = $req->send(); $response_body = $response->getBody(); $this->assertNotEquals('', $response_body, 'Response is empty'); |