From d1c4ef504360063936f767c7ab6c251c97c3f41f Mon Sep 17 00:00:00 2001 From: cweiske Date: Sat, 31 Oct 2009 10:17:55 +0000 Subject: test getObjectUsers() and fix a bug found by the tests git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@484 b3834d28-1941-0410-a4f8-b48e95affb8f --- tests/UserTest.php | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) (limited to 'tests') diff --git a/tests/UserTest.php b/tests/UserTest.php index 513011b..a68d7dc 100644 --- a/tests/UserTest.php +++ b/tests/UserTest.php @@ -53,6 +53,7 @@ class UserTest extends TestBase protected function setUp() { $this->us = SemanticScuttle_Service_Factory::get('User'); + $this->us->deleteAll(); } @@ -118,6 +119,51 @@ class UserTest extends TestBase ); } + + + /** + * Check if getObjectUsers() without any user works + * + * @return void + */ + public function testGetObjectUsersNone() + { + $users = $this->us->getObjectUsers(); + $this->assertEquals(0, count($users)); + } + + + + /** + * Check if getObjectUsers() with a single user works + * + * @return void + */ + public function testGetObjectUsersSingle() + { + $uid = $this->addUser(); + $users = $this->us->getObjectUsers(); + $this->assertEquals(1, count($users)); + $this->assertType('SemanticScuttle_Model_User', reset($users)); + } + + + + /** + * Check if getObjectUsers() with a several users works + * + * @return void + */ + public function testGetObjectUsersMultiple() + { + $uid = $this->addUser(); + $uid2 = $this->addUser(); + $uid3 = $this->addUser(); + $users = $this->us->getObjectUsers(); + $this->assertEquals(3, count($users)); + $this->assertType('SemanticScuttle_Model_User', reset($users)); + } + } -- cgit v1.2.3-54-g00ecf