The hasTag was always returning false, which probably is a bug. Fixed it and added a test to catch it. Thanks for Ricardo Soares de Lima for the first patch version

This commit is contained in:
Christian Weiske 2013-03-21 06:49:37 +01:00
parent 20e3b5ebd7
commit 26352761d3
2 changed files with 14 additions and 4 deletions

View File

@ -626,12 +626,13 @@ class SemanticScuttle_Service_Bookmark2Tag extends SemanticScuttle_DbService
return false;
}
$output = false;
if ($row = $this->db->sql_fetchrow($dbresult)) {
if ($row['tCount'] > 0) {
$output = true;
}
}
$output = false;
$this->db->sql_freeresult($dbresult);
return $output;
}

View File

@ -675,5 +675,14 @@ class Bookmark2TagTest extends TestBase
$this->assertContains(array('tag' => 'usertag1', 'bCount' => '1'), $arTags);
$this->assertContains(array('tag' => 'usable', 'bCount' => '2'), $arTags);
}
public function testHasTag()
{
$bid = $this->addBookmark(null, null, 0, array('foo'));
$this->assertTrue($this->b2ts->hasTag($bid, 'foo'));
$this->assertFalse($this->b2ts->hasTag($bid, 'bar'));
}
}
?>