aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authormensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f>2008-03-14 10:32:00 +0000
committermensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f>2008-03-14 10:32:00 +0000
commit219888d4899fa1704452ed7169b718f6766aaa07 (patch)
tree5584dabf3b28af36af08ebbb55878fdf06103a29 /tests
parent6ab15b1c291b35bcb2564ae5a20e10ef19a208e9 (diff)
downloadsemanticscuttle-219888d4899fa1704452ed7169b718f6766aaa07.tar.gz
semanticscuttle-219888d4899fa1704452ed7169b718f6766aaa07.tar.bz2
New Feature: save searches (and display a searchhistory box)
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@80 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'tests')
-rw-r--r--tests/LAUNCH_TESTS2
-rw-r--r--tests/searchTest.php80
2 files changed, 81 insertions, 1 deletions
diff --git a/tests/LAUNCH_TESTS b/tests/LAUNCH_TESTS
index dc8bdf4..52d4ba5 100644
--- a/tests/LAUNCH_TESTS
+++ b/tests/LAUNCH_TESTS
@@ -4,4 +4,4 @@ Then
To launch the tests, put in a console situated in the root of the SEMANTICSCUTTLE project (where is the SEMANTICSCUTTLE config file):
-phpunit BookmarksTest ./tests/bookmarksTest.php ; phpunit CommonDescriptionTest tests/commonDescriptionTest.php ; phpunit Tag2TagTest tests/tag2TagTest.php
+phpunit BookmarksTest ./tests/bookmarksTest.php ; phpunit CommonDescriptionTest tests/commonDescriptionTest.php ; phpunit Tag2TagTest tests/tag2TagTest.php ; phpunit SearchTest tests/searchTest.php
diff --git a/tests/searchTest.php b/tests/searchTest.php
new file mode 100644
index 0000000..ecdc6ad
--- /dev/null
+++ b/tests/searchTest.php
@@ -0,0 +1,80 @@
+<?php
+require_once 'PHPUnit/Framework.php';
+
+/*
+To launch this test, type the following line into a shell
+at the root of the scuttlePlus directory :
+ phpunit SearchTest tests/searchTest.php
+*/
+
+class SearchTest extends PHPUnit_Framework_TestCase
+{
+ protected $us;
+ protected $bs;
+ protected $ts;
+ protected $tts;
+ protected $shs;
+
+ protected function setUp()
+ {
+ global $dbhost, $dbuser, $dbpass, $dbname, $dbport, $dbpersist, $dbtype, $tableprefix;
+ require_once('./header.inc.php');
+
+ $this->us =& ServiceFactory::getServiceInstance('UserService');
+ $this->bs =& ServiceFactory::getServiceInstance('BookmarkService');
+ $this->bs->deleteAll();
+ $this->ts =& ServiceFactory::getServiceInstance('TagService');
+ $this->ts->deleteAll();
+ $this->tts =& ServiceFactory::getServiceInstance('Tag2TagService');
+ $this->tts->deleteAll();
+ $this->tsts =& ServiceFactory::getServiceInstance('TagStatService');
+ $this->tsts->deleteAll();
+ $this->shs =& ServiceFactory::getServiceInstance('SearchHistoryService');
+ $this->shs->deleteAll();
+ }
+
+ public function testSearchHistory()
+ {
+ $shs = $this->shs;
+
+ $terms = 'bbqsdkbb;,:,:q;,qddds&é"\'\\\\\(-è_çà)';
+ $terms2 = '~#{|`]';
+ $range = 'all';
+ $nbResults = 10908;
+ $uId = 10;
+
+ $shs->addSearch($terms, $range, $nbResults, $uId);
+ $shs->addSearch($terms2, $range, $nbResults, $uId);
+ $shs->addSearch('', $range, $nbResults, $uId); // A void search must not be saved
+
+ $searches = $shs->getAllSearches();
+ $this->assertSame(2, count($searches));
+ $searches = $shs->getAllSearches($range, $uId);
+ $this->assertEquals(2, count($searches));
+ $searches = $shs->getAllSearches($range, 20); // fake userid
+ $this->assertEquals(0, count($searches));
+ $searches = $shs->getAllSearches($range, $uId, 1);
+ $this->assertEquals(1, count($searches));
+ $searches = $shs->getAllSearches($range, null, 1, 1);
+ $this->assertEquals(1, count($searches));
+
+ //test content of results
+ $searches = $shs->getAllSearches();
+ $this->assertSame($terms2, $searches[0]['shTerms']);
+ $this->assertSame($range, $searches[0]['shRange']);
+ $this->assertEquals($nbResults, $searches[0]['shNbResults']);
+ $this->assertEquals($uId, $searches[0]['uId']);
+ $this->assertSame($terms, $searches[1]['shTerms']);
+ $this->assertSame($range, $searches[1]['shRange']);
+ $this->assertEquals($nbResults, $searches[1]['shNbResults']);
+ $this->assertEquals($uId, $searches[1]['uId']);
+
+ //test distinct parameter
+ $shs->addSearch($terms, $range, $nbResults, 30); // we repeat a search (same terms)
+ $searches = $shs->getAllSearches();
+ $this->assertSame(3, count($searches));
+ $searches = $shs->getAllSearches(NULL, NULL, NULL, NULL, true);
+ $this->assertSame(2, count($searches));
+ }
+}
+?>