summaryrefslogtreecommitdiffstatshomepage
path: root/tests/commonDescriptionTest.php
diff options
context:
space:
mode:
authorGravatar cweiske2009-10-03 23:18:49 +0000
committerGravatar cweiske2009-10-03 23:18:49 +0000
commitde031f043f9918424b26534d233df90b7d5c42f9 (patch)
tree679d307a234c71872194f36236cd8d38e3293955 /tests/commonDescriptionTest.php
parentd5f09b7e4d802cdc2d5f3f876c48ea918c961488 (diff)
downloadscuttle-de031f043f9918424b26534d233df90b7d5c42f9.tar.gz
scuttle-de031f043f9918424b26534d233df90b7d5c42f9.zip
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/commonDescriptionTest.php')
-rw-r--r--tests/commonDescriptionTest.php96
1 files changed, 0 insertions, 96 deletions
diff --git a/tests/commonDescriptionTest.php b/tests/commonDescriptionTest.php
deleted file mode 100644
index f73b646..0000000
--- a/tests/commonDescriptionTest.php
+++ /dev/null
@@ -1,96 +0,0 @@
-<?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 CommonDescriptionTest tests/commonDescriptionTest.php
-*/
-
-class CommonDescriptionTest extends PHPUnit_Framework_TestCase
-{
- protected $us;
- protected $bs;
- protected $b2ts;
- protected $tts;
- protected $tsts;
- protected $cds;
-
- protected function setUp()
- {
- global $dbhost, $dbuser, $dbpass, $dbname, $dbport, $dbpersist, $dbtype, $tableprefix;
- require_once('./header.inc.php');
-
- $this->us =SemanticScuttle_Service_Factory::getServiceInstance('User');
- $this->bs =SemanticScuttle_Service_Factory::getServiceInstance('Bookmark');
- $this->bs->deleteAll();
- $this->b2ts =SemanticScuttle_Service_Factory::getServiceInstance('Bookmark2Tag');
- $this->b2ts->deleteAll();
- $this->tts =SemanticScuttle_Service_Factory::getServiceInstance('Tag2Tag');
- $this->tts->deleteAll();
- $this->tsts =SemanticScuttle_Service_Factory::getServiceInstance('TagStat');
- $this->tsts->deleteAll();
- $this->cds =SemanticScuttle_Service_Factory::getServiceInstance('CommonDescription');
- $this->cds->deleteAll();
- }
-
- public function testModifyDescription()
- {
- $cds = $this->cds;
-
- $uId1 = 1;
- $uId2 = 2;
- $title1 = "title1";
- $title2 = "title2";
- $desc1 = "&é\"'(-è_çà)=´~#'#{{[\\\\[||`\^\^@^@}¹²¡×¿ ?./§µ%";
- $desc2 = "æâ€êþÿûîîôôöŀï'üð’‘ßä«≤»©»  ↓¿×÷¡¹²³";
- $time1 = time();
- $time2 = time()+200;
-
- $tagDesc1 = array('cdId'=>1, 'tag'=>'taghouse', 'cdDescription'=>$desc1, 'uId'=>$uId1,'cdDatetime'=>$time1);
- $tagDesc2 = array('cdId'=>2, 'tag'=>'taghouse', 'cdDescription'=>$desc2, 'uId'=>$uId2,'cdDatetime'=>$time2);
-
- $cds->addTagDescription('taghouse', $desc1, $uId1, $time1);
- $cds->addTagDescription('taghouse', $desc2, $uId2, $time2);
-
- $desc = $cds->getLastTagDescription('taghouse');
- $this->assertContains('taghouse', $desc);
- $this->assertContains($desc2, $desc);
- $this->assertContains(gmdate('Y-m-d H:i:s', $time2), $desc);
-
- $desc = $cds->getAllTagsDescription('taghouse');
- $this->assertContains($desc1, $desc[1]);
- $this->assertContains(gmdate('Y-m-d H:i:s', $time1), $desc[1]);
- $this->assertContains($desc2, $desc[0]);
- $this->assertContains(gmdate('Y-m-d H:i:s', $time2), $desc[0]);
-
- $desc = $cds->getDescriptionById(1);
- $this->assertContains($desc1, $desc);
-
- $bkDesc1 = array('cdId'=>3, 'bHash'=>'10', 'cdTitle'=>$title1, 'cdDescription'=>$desc1, 'uId'=>$uId1,'cdDatetime'=>$time1);
- $bkDesc2 = array('cdId'=>4, 'bHash'=>'10', 'cdTitle'=>$title2, 'cdDescription'=>$desc2, 'uId'=>$uId2,'cdDatetime'=>$time2);
-
- $cds->addBookmarkDescription(10, $title1, $desc1, $uId1, $time1);
- $cds->addBookmarkDescription(10, $title2, $desc2, $uId2, $time2);
-
- $desc = $cds->getLastBookmarkDescription(10);
- $this->assertContains($title2, $desc);
- $this->assertContains($desc2, $desc);
- $this->assertContains(gmdate('Y-m-d H:i:s', $time2), $desc);
-
- $desc = $cds->getAllBookmarksDescription(10);
- $this->assertContains($title1, $desc[1]);
- $this->assertContains($desc1, $desc[1]);
- $this->assertContains(gmdate('Y-m-d H:i:s', $time1), $desc[1]);
- $this->assertContains($title2, $desc[0]);
- $this->assertContains($desc2, $desc[0]);
- $this->assertContains(gmdate('Y-m-d H:i:s', $time2), $desc[0]);
-
- $desc = $cds->getDescriptionById(3);
- $this->assertContains($desc1, $desc);
-
-
- }
-
-}
-?>