aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorChristian Weiske <cweiske@cweiske.de>2011-03-26 17:04:00 +0100
committerChristian Weiske <cweiske@cweiske.de>2011-03-26 17:04:00 +0100
commita756799ef4df0449244d41c2ecc7133c3fb8ce70 (patch)
treecec5679b67a6997da37bd1593903fe29891ffc78 /tests
parent361c18469af5f6782e622420797c4acd5fa70b97 (diff)
downloadsemanticscuttle-a756799ef4df0449244d41c2ecc7133c3fb8ce70.tar.gz
semanticscuttle-a756799ef4df0449244d41c2ecc7133c3fb8ce70.tar.bz2
move setUnittestConfig to TestBaseApi since it makes only sense to use it there
Diffstat (limited to 'tests')
-rw-r--r--tests/TestBase.php44
-rw-r--r--tests/TestBaseApi.php44
-rw-r--r--tests/ajax/GetAdminTagsTest.php63
3 files changed, 107 insertions, 44 deletions
diff --git a/tests/TestBase.php b/tests/TestBase.php
index b85c189..095f32d 100644
--- a/tests/TestBase.php
+++ b/tests/TestBase.php
@@ -23,18 +23,6 @@
class TestBase extends PHPUnit_Framework_TestCase
{
/**
- * Clean up after test
- */
- public function tearDown()
- {
- if (file_exists($GLOBALS['datadir'] . '/config.unittest.php')) {
- unlink($GLOBALS['datadir'] . '/config.unittest.php');
- }
- }
-
-
-
- /**
* Create a new bookmark.
*
* @param integer $user User ID the bookmark shall belong
@@ -158,38 +146,6 @@ class TestBase extends PHPUnit_Framework_TestCase
return $uid;
}
-
-
- /**
- * Writes a special unittest configuration file.
- * The unittest config file is read when a GET request with unittestMode=1
- * is sent, and the user allowed unittestmode in config.php.
- *
- * @param array $arConfig Array with config names as key and their value as
- * value
- *
- * @return void
- */
- protected function setUnittestConfig($arConfig)
- {
- $str = '<' . "?php\r\n";
- foreach ($arConfig as $name => $value) {
- $str .= '$' . $name . ' = '
- . var_export($value, true) . ";\n";
- }
-
- if (!is_dir($GLOBALS['datadir'])) {
- $this->fail(
- 'datadir not set or not a directory: ' . $GLOBALS['datadir']
- );
- }
-
- $this->assertInternalType(
- 'integer',
- file_put_contents($GLOBALS['datadir'] . '/config.unittest.php', $str),
- 'Writing config.unittest.php failed'
- );
- }
}
?> \ No newline at end of file
diff --git a/tests/TestBaseApi.php b/tests/TestBaseApi.php
index 2af228a..2341ea1 100644
--- a/tests/TestBaseApi.php
+++ b/tests/TestBaseApi.php
@@ -58,6 +58,18 @@ class TestBaseApi extends TestBase
/**
+ * Clean up after test
+ */
+ public function tearDown()
+ {
+ if (file_exists($GLOBALS['datadir'] . '/config.unittest.php')) {
+ unlink($GLOBALS['datadir'] . '/config.unittest.php');
+ }
+ }
+
+
+
+ /**
* Gets a HTTP request object.
* Uses $this->url plus $urlSuffix as request URL.
*
@@ -158,5 +170,37 @@ class TestBaseApi extends TestBase
return array($req, $uid);
}
+
+
+ /**
+ * Writes a special unittest configuration file.
+ * The unittest config file is read when a GET request with unittestMode=1
+ * is sent, and the user allowed unittestmode in config.php.
+ *
+ * @param array $arConfig Array with config names as key and their value as
+ * value
+ *
+ * @return void
+ */
+ protected function setUnittestConfig($arConfig)
+ {
+ $str = '<' . "?php\r\n";
+ foreach ($arConfig as $name => $value) {
+ $str .= '$' . $name . ' = '
+ . var_export($value, true) . ";\n";
+ }
+
+ if (!is_dir($GLOBALS['datadir'])) {
+ $this->fail(
+ 'datadir not set or not a directory: ' . $GLOBALS['datadir']
+ );
+ }
+
+ $this->assertInternalType(
+ 'integer',
+ file_put_contents($GLOBALS['datadir'] . '/config.unittest.php', $str),
+ 'Writing config.unittest.php failed'
+ );
+ }
}
?> \ No newline at end of file
diff --git a/tests/ajax/GetAdminTagsTest.php b/tests/ajax/GetAdminTagsTest.php
new file mode 100644
index 0000000..5c941e8
--- /dev/null
+++ b/tests/ajax/GetAdminTagsTest.php
@@ -0,0 +1,63 @@
+<?php
+/**
+ * SemanticScuttle - your social bookmark manager.
+ *
+ * PHP version 5.
+ *
+ * @category Bookmarking
+ * @package SemanticScuttle
+ * @author Benjamin Huynh-Kim-Bang <mensonge@users.sourceforge.net>
+ * @author Christian Weiske <cweiske@cweiske.de>
+ * @author Eric Dane <ericdane@users.sourceforge.net>
+ * @license GPL http://www.gnu.org/licenses/gpl.html
+ * @link http://sourceforge.net/projects/semanticscuttle
+ */
+
+require_once dirname(__FILE__) . '/../prepare.php';
+require_once 'HTTP/Request2.php';
+
+/**
+ * Unit tests for the ajax getadmintags.php script
+ *
+ * @category Bookmarking
+ * @package SemanticScuttle
+ * @author Christian Weiske <cweiske@cweiske.de>
+ * @license GPL http://www.gnu.org/licenses/gpl.html
+ * @link http://sourceforge.net/projects/semanticscuttle
+ */
+class ajax_GetAdminTagsTest extends TestBaseApi
+{
+ protected $urlPart = 'ajax/getadmintags.php';
+
+
+ public function testTags()
+ {
+ list($user1, $uname1) = $this->addUserData();
+ $user2 = $this->addUser();
+ $this->addBookmark($user1, null, 0, array('admintag', 'admintag2'));
+ $this->addBookmark($user2, null, 0, array('lusertag', 'lusertag2'));
+
+ $this->setUnittestConfig(
+ array(
+ 'admin_users' => array($uname1)
+ )
+ );
+
+ $req = $this->getRequest('?unittestMode=1');
+ $res = $req->send();
+ $this->assertEquals(200, $res->getStatus());
+ $this->assertEquals(
+ 'application/json; charset=utf-8',
+ $res->getHeader('content-type')
+ );
+ $data = json_decode($res->getBody());
+ $this->assertInternalType('array', $data);
+ $this->assertEquals(2, count($data));
+ $this->assertContains('admintag', $data);
+ $this->assertContains('admintag2', $data);
+ }
+
+}
+
+
+?> \ No newline at end of file