From 1917aeaab29438639b5305b6d9c4957f1341863f Mon Sep 17 00:00:00 2001 From: mensonge Date: Thu, 18 Dec 2008 11:29:43 +0000 Subject: Minor Fix: improve cache test git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@205 b3834d28-1941-0410-a4f8-b48e95affb8f --- tests/tagsCacheTest.php | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'tests') diff --git a/tests/tagsCacheTest.php b/tests/tagsCacheTest.php index f08de05..595afb9 100644 --- a/tests/tagsCacheTest.php +++ b/tests/tagsCacheTest.php @@ -163,6 +163,10 @@ class TagsCacheTest extends PHPUnit_Framework_TestCase $this->assertEquals(array('b', 'c', 'd', 'e'), $tts->getAllLinkedTags('a', '>', 1)); $this->assertEquals(array('d', 'e'), $tts->getAllLinkedTags('c', '>', 1)); + // check that result comes from cache (artificial changes in cache must appear in result) + $tcs->removeChild('a', 'e', 1); + $this->assertEquals(array('b', 'c', 'd'), $tts->getAllLinkedTags('a', '>', 1)); + //cache must be deleted for user when links are modified $tts->addLinkedTags('a', 'f', '=', 1); $this->assertEquals(array(), $tcs->getChildren('a', 1)); -- cgit v1.2.3