diff options
author | Christian Weiske <cweiske@cweiske.de> | 2011-03-25 08:00:32 +0100 |
---|---|---|
committer | Christian Weiske <cweiske@cweiske.de> | 2011-03-25 08:00:32 +0100 |
commit | d6e99db40dc88de1782099b30941075ebc8dfa97 (patch) | |
tree | da9234cc3edf8bcb812cc451902afbf7794f5576 /tests/Bookmark2TagTest.php | |
parent | e667feb0ca9ff30a063149a2ce20b3398585dd4f (diff) | |
download | semanticscuttle-d6e99db40dc88de1782099b30941075ebc8dfa97.tar.gz semanticscuttle-d6e99db40dc88de1782099b30941075ebc8dfa97.tar.bz2 |
do not generate invalid SQL when called with a not-so valid array
Diffstat (limited to 'tests/Bookmark2TagTest.php')
-rw-r--r-- | tests/Bookmark2TagTest.php | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/Bookmark2TagTest.php b/tests/Bookmark2TagTest.php index ffd83c3..fff4222 100644 --- a/tests/Bookmark2TagTest.php +++ b/tests/Bookmark2TagTest.php @@ -427,6 +427,23 @@ class Bookmark2TagTest extends TestBase /** + * This may happen when the method is called with a problematic user array. + * In that case we may not generate invalid SQL or so. + * + * @covers SemanticScuttle_Service_Bookmark2Tag::getPopularTags + */ + public function testGetPopularTagsUserArrayWithNull() + { + $user1 = $this->addUser(); + $this->addTagBookmark($user1, array('one')); + + $arTags = $this->b2ts->getPopularTags(array(null)); + $this->assertEquals(0, count($arTags)); + } + + + + /** * @covers SemanticScuttle_Service_Bookmark2Tag::getPopularTags */ public function testGetPopularTagsPublicOnlyNoUser() |