]> gitweb.fluxo.info Git - semanticscuttle.git/commitdiff
fix tests for people that use a separate test database
authorChristian Weiske <cweiske@cweiske.de>
Wed, 8 Jun 2011 05:00:17 +0000 (07:00 +0200)
committerChristian Weiske <cweiske@cweiske.de>
Wed, 8 Jun 2011 05:00:17 +0000 (07:00 +0200)
tests/www/bookmarksTest.php
tests/www/indexTest.php

index 1f6d1a5ac8a69b36deceecad4408534e9f42ab8a..a4de5f86e8287de0fad4da87f5fd59982434ad65 100755 (executable)
@@ -87,7 +87,7 @@ class www_bookmarksTest extends TestBaseApi
 
         $user = $this->us->getUser($uId);
         $reqUrl = $GLOBALS['unittestUrl'] . 'bookmarks.php/'
-            . $user['username'];
+            . $user['username'] . '?unittestMode=1';
         $req->setUrl($reqUrl);
         $req->setMethod(HTTP_Request2::METHOD_GET);
         $response = $req->send();
@@ -114,7 +114,7 @@ class www_bookmarksTest extends TestBaseApi
 
         $user = $this->us->getUser($uId);
         $reqUrl = $GLOBALS['unittestUrl'] . 'bookmarks.php/'
-            . $user['username'];
+            . $user['username'] . '?unittestMode=1';
         $req->setUrl($reqUrl);
         $req->setMethod(HTTP_Request2::METHOD_GET);
         $response = $req->send();
index d95a328462676d093e41a141363c6c8e36cffb70..18cb75ab662b66e0edc28f86e010de56adbf6990 100644 (file)
@@ -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');