test deleteall in searchhistory
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@758 b3834d28-1941-0410-a4f8-b48e95affb8f
This commit is contained in:
parent
f0456530b4
commit
ab618a8908
1 changed files with 17 additions and 3 deletions
|
@ -12,13 +12,12 @@
|
||||||
* @license GPL http://www.gnu.org/licenses/gpl.html
|
* @license GPL http://www.gnu.org/licenses/gpl.html
|
||||||
* @link http://sourceforge.net/projects/semanticscuttle
|
* @link http://sourceforge.net/projects/semanticscuttle
|
||||||
*/
|
*/
|
||||||
|
|
||||||
require_once 'prepare.php';
|
|
||||||
|
|
||||||
if (!defined('PHPUnit_MAIN_METHOD')) {
|
if (!defined('PHPUnit_MAIN_METHOD')) {
|
||||||
define('PHPUnit_MAIN_METHOD', 'SearchHistoryTest::main');
|
define('PHPUnit_MAIN_METHOD', 'SearchHistoryTest::main');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
require_once 'prepare.php';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Unit tests for the SemanticScuttle search history service.
|
* Unit tests for the SemanticScuttle search history service.
|
||||||
*
|
*
|
||||||
|
@ -190,6 +189,8 @@ class SearchHistoryTest extends TestBase
|
||||||
|
|
||||||
$this->shs->deleteOldestSearch();
|
$this->shs->deleteOldestSearch();
|
||||||
|
|
||||||
|
$this->assertEquals(1, $this->shs->countSearches());
|
||||||
|
|
||||||
$rows = $this->shs->getAllSearches();
|
$rows = $this->shs->getAllSearches();
|
||||||
$this->assertEquals(1, count($rows));
|
$this->assertEquals(1, count($rows));
|
||||||
$this->assertEquals(
|
$this->assertEquals(
|
||||||
|
@ -197,6 +198,19 @@ class SearchHistoryTest extends TestBase
|
||||||
$rows[0]['shId']
|
$rows[0]['shId']
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Test deleting all of the search history
|
||||||
|
*/
|
||||||
|
public function testDeleteAll()
|
||||||
|
{
|
||||||
|
$this->shs->addSearch('testsearchterm1', 'all', 0);
|
||||||
|
$this->shs->addSearch('testsearchterm2', 'all', 0);
|
||||||
|
$this->shs->deleteAll();
|
||||||
|
$this->assertEquals(0, $this->shs->countSearches());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue