aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorcweiske <cweiske@b3834d28-1941-0410-a4f8-b48e95affb8f>2009-10-03 23:18:49 +0000
committercweiske <cweiske@b3834d28-1941-0410-a4f8-b48e95affb8f>2009-10-03 23:18:49 +0000
commitde031f043f9918424b26534d233df90b7d5c42f9 (patch)
tree679d307a234c71872194f36236cd8d38e3293955 /tests
parentd5f09b7e4d802cdc2d5f3f876c48ea918c961488 (diff)
downloadsemanticscuttle-de031f043f9918424b26534d233df90b7d5c42f9.tar.gz
semanticscuttle-de031f043f9918424b26534d233df90b7d5c42f9.tar.bz2
make tests run again (though they do not pass)
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@389 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'tests')
-rw-r--r--tests/AllTests.php58
-rw-r--r--tests/BookmarksTest.php (renamed from tests/bookmarksTest.php)5
-rw-r--r--tests/CommonDescriptionTest.php (renamed from tests/commonDescriptionTest.php)2
-rw-r--r--tests/SearchTest.php (renamed from tests/searchTest.php)2
-rw-r--r--tests/Tag2TagTest.php (renamed from tests/tag2TagTest.php)2
-rw-r--r--tests/TagsCacheTest.php (renamed from tests/tagsCacheTest.php)2
-rw-r--r--tests/TagsTest.php (renamed from tests/tagsTest.php)2
-rw-r--r--tests/allTests.php39
8 files changed, 66 insertions, 46 deletions
diff --git a/tests/AllTests.php b/tests/AllTests.php
new file mode 100644
index 0000000..1526da8
--- /dev/null
+++ b/tests/AllTests.php
@@ -0,0 +1,58 @@
+<?php
+/*
+* To launch all tests, type the following line into the root directory
+* of SemanticScuttle (where is the config.inc.php file) :
+*
+* phpunit --testdox-html tests/dox.html AllTests tests/allTests.php
+*
+* !!Check that $debugMode = false in config.inc.php to avoid unstable beahviours!!
+*
+* A dox.html file will be created into the tests/ directory providing a summary
+* of tests according to agile development.
+* */
+
+if (!defined('PHPUnit_MAIN_METHOD')) {
+ define('PHPUnit_MAIN_METHOD', 'AllTests::main');
+}
+
+require_once 'PHPUnit/Framework/TestSuite.php';
+
+class AllTests extends PHPUnit_Framework_TestSuite
+{
+ public static function main()
+ {
+ require_once 'PHPUnit/TextUI/TestRunner.php';
+ PHPUnit_TextUI_TestRunner::run(self::suite());
+ }
+
+
+ public static function suite()
+ {
+ $suite = new AllTests();
+ $tdir = dirname(__FILE__);
+ $suite->addTestFile($tdir . '/BookmarksTest.php');
+ $suite->addTestFile($tdir . '/Tag2TagTest.php');
+ $suite->addTestFile($tdir . '/TagsCacheTest.php');
+ $suite->addTestFile($tdir . '/CommonDescriptionTest.php');
+ $suite->addTestFile($tdir . '/SearchTest.php');
+ $suite->addTestFile($tdir . '/TagsTest.php');
+ return $suite;
+ }
+
+ protected function setUp()
+ {
+ global $dbhost, $dbuser, $dbpass, $dbname, $dbport, $dbpersist, $dbtype,
+ $tableprefix, $TEMPLATES_DIR, $filetypes, $debugMode;
+ require_once dirname(__FILE__) . '/../src/SemanticScuttle/header.php';
+ }
+
+ protected function tearDown()
+ {
+ }
+}
+
+if (PHPUnit_MAIN_METHOD == 'AllTests::main') {
+ AllTests::main();
+}
+
+?> \ No newline at end of file
diff --git a/tests/bookmarksTest.php b/tests/BookmarksTest.php
index 3bff35d..fd9ed76 100644
--- a/tests/bookmarksTest.php
+++ b/tests/BookmarksTest.php
@@ -16,8 +16,9 @@ class BookmarksTest extends PHPUnit_Framework_TestCase
protected function setUp()
{
- global $dbhost, $dbuser, $dbpass, $dbname, $dbport, $dbpersist, $dbtype, $tableprefix, $TEMPLATES_DIR, $filetypes, $debugMode;
- require_once('./header.inc.php');
+ global $dbhost, $dbuser, $dbpass, $dbname, $dbport, $dbpersist, $dbtype,
+ $tableprefix, $TEMPLATES_DIR, $filetypes, $debugMode;
+ require_once dirname(__FILE__) . '/../src/SemanticScuttle/header.php';
$this->us =SemanticScuttle_Service_Factory::getServiceInstance('User');
$this->bs =SemanticScuttle_Service_Factory::getServiceInstance('Bookmark');
diff --git a/tests/commonDescriptionTest.php b/tests/CommonDescriptionTest.php
index f73b646..87d09d1 100644
--- a/tests/commonDescriptionTest.php
+++ b/tests/CommonDescriptionTest.php
@@ -19,7 +19,7 @@ class CommonDescriptionTest extends PHPUnit_Framework_TestCase
protected function setUp()
{
global $dbhost, $dbuser, $dbpass, $dbname, $dbport, $dbpersist, $dbtype, $tableprefix;
- require_once('./header.inc.php');
+ require_once dirname(__FILE__) . '/../src/SemanticScuttle/header.php';
$this->us =SemanticScuttle_Service_Factory::getServiceInstance('User');
$this->bs =SemanticScuttle_Service_Factory::getServiceInstance('Bookmark');
diff --git a/tests/searchTest.php b/tests/SearchTest.php
index 1dce7dc..e03b4d9 100644
--- a/tests/searchTest.php
+++ b/tests/SearchTest.php
@@ -18,7 +18,7 @@ class SearchTest extends PHPUnit_Framework_TestCase
protected function setUp()
{
global $dbhost, $dbuser, $dbpass, $dbname, $dbport, $dbpersist, $dbtype, $tableprefix;
- require_once('./header.inc.php');
+ require_once dirname(__FILE__) . '/../src/SemanticScuttle/header.php';
$this->us =SemanticScuttle_Service_Factory::getServiceInstance('User');
$this->bs =SemanticScuttle_Service_Factory::getServiceInstance('Bookmark');
diff --git a/tests/tag2TagTest.php b/tests/Tag2TagTest.php
index ab3114c..24c0ae1 100644
--- a/tests/tag2TagTest.php
+++ b/tests/Tag2TagTest.php
@@ -17,7 +17,7 @@ class Tag2TagTest extends PHPUnit_Framework_TestCase
protected function setUp()
{
global $dbhost, $dbuser, $dbpass, $dbname, $dbport, $dbpersist, $dbtype, $tableprefix;
- require_once('./header.inc.php');
+ require_once dirname(__FILE__) . '/../src/SemanticScuttle/header.php';
$this->us =SemanticScuttle_Service_Factory::getServiceInstance('User');
$this->bs =SemanticScuttle_Service_Factory::getServiceInstance('Bookmark');
diff --git a/tests/tagsCacheTest.php b/tests/TagsCacheTest.php
index 7673565..f401ab6 100644
--- a/tests/tagsCacheTest.php
+++ b/tests/TagsCacheTest.php
@@ -17,7 +17,7 @@ class TagsCacheTest extends PHPUnit_Framework_TestCase
protected function setUp()
{
global $dbhost, $dbuser, $dbpass, $dbname, $dbport, $dbpersist, $dbtype, $tableprefix, $TEMPLATES_DIR, $debugMode;
- require_once('./header.inc.php');
+ require_once dirname(__FILE__) . '/../src/SemanticScuttle/header.php';
$this->us =SemanticScuttle_Service_Factory::getServiceInstance('User');
$this->bs =SemanticScuttle_Service_Factory::getServiceInstance('Bookmark');
diff --git a/tests/tagsTest.php b/tests/TagsTest.php
index d4957c9..bb904e1 100644
--- a/tests/tagsTest.php
+++ b/tests/TagsTest.php
@@ -14,7 +14,7 @@ class TagsTest extends PHPUnit_Framework_TestCase
protected function setUp()
{
global $dbhost, $dbuser, $dbpass, $dbname, $dbport, $dbpersist, $dbtype, $tableprefix;
- require_once('./header.inc.php');
+ require_once dirname(__FILE__) . '/../src/SemanticScuttle/header.php';
$this->ts =SemanticScuttle_Service_Factory::getServiceInstance('Tag');
$this->ts->deleteAll();
diff --git a/tests/allTests.php b/tests/allTests.php
deleted file mode 100644
index 843911c..0000000
--- a/tests/allTests.php
+++ /dev/null
@@ -1,39 +0,0 @@
-<?php
-
-/*
-* To launch all tests, type the following line into the root directory
-* of SemanticScuttle (where is the config.inc.php file) :
-*
-* phpunit --testdox-html tests/dox.html AllTests tests/allTests.php
-*
-* !!Check that $debugMode = false in config.inc.php to avoid unstable beahviours!!
-*
-* A dox.html file will be created into the tests/ directory providing a summary
-* of tests according to agile development.
-* */
-
-class AllTests extends PHPUnit_Framework_TestSuite
-{
- public static function suite()
- {
- $suite = new AllTests();
- $suite->addTestFile('tests/bookmarksTest.php');
- $suite->addTestFile('tests/tag2TagTest.php');
- $suite->addTestFile('tests/tagsCacheTest.php');
- $suite->addTestFile('tests/commonDescriptionTest.php');
- $suite->addTestFile('tests/searchTest.php');
- $suite->addTestFile('tests/tagsTest.php');
- return $suite;
- }
-
- protected function setUp()
- {
- global $dbhost, $dbuser, $dbpass, $dbname, $dbport, $dbpersist, $dbtype, $tableprefix, $TEMPLATES_DIR, $filetypes, $debugMode;
- require_once('./header.inc.php');
- }
-
- protected function tearDown()
- {
- }
-}
-?> \ No newline at end of file