本文整理汇总了PHP中InsightMySQLDAO::getPublicInsights方法的典型用法代码示例。如果您正苦于以下问题:PHP InsightMySQLDAO::getPublicInsights方法的具体用法?PHP InsightMySQLDAO::getPublicInsights怎么用?PHP InsightMySQLDAO::getPublicInsights使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类InsightMySQLDAO
的用法示例。
在下文中一共展示了InsightMySQLDAO::getPublicInsights方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: testGetPublicInsights
public function testGetPublicInsights()
{
$builders = array();
//insert a public instance
$builders[] = FixtureBuilder::build('instances', array('id' => 1, 'network_user_id' => 10, 'network_username' => 'jack', 'network' => 'twitter', 'network_viewer_id' => 10, 'crawler_last_run' => '1988-01-20 12:00:00', 'is_active' => 1, 'is_public' => 0));
//insert a private instance
$builders[] = FixtureBuilder::build('instances', array('id' => 2, 'network_user_id' => 12, 'network_username' => 'jill', 'network' => 'twitter', 'network_viewer_id' => 12, 'crawler_last_run' => '2010-01-20 12:00:00', 'is_active' => 1, 'is_public' => 1));
//insert 2 insights for a private instance and 3 for a public instance
$time_now = date("Y-m-d H:i:s");
$builders[] = FixtureBuilder::build('insights', array('date' => '2012-05-02', 'slug' => 'avg_replies_per_week', 'instance_id' => '1', 'text' => 'Retweet spike! Your post got retweeted 110 times', 'emphasis' => Insight::EMPHASIS_HIGH, 'time_generated' => $time_now));
$builders[] = FixtureBuilder::build('insights', array('date' => '2012-05-01', 'slug' => 'avg_replies_per_week', 'instance_id' => '2', 'text' => 'Retweet spike! Your post got retweeted 110 times', 'emphasis' => Insight::EMPHASIS_HIGH, 'time_generated' => $time_now));
$builders[] = FixtureBuilder::build('insights', array('date' => '2012-05-02', 'slug' => 'avg_replies_per_week', 'instance_id' => '2', 'text' => 'Retweet spike! Your post got retweeted 110 times', 'emphasis' => Insight::EMPHASIS_HIGH, 'time_generated' => $time_now));
$builders[] = FixtureBuilder::build('insights', array('date' => '2012-05-03', 'slug' => 'avg_replies_per_week', 'instance_id' => '2', 'text' => 'Retweet spike! Your post got retweeted 110 times', 'emphasis' => Insight::EMPHASIS_HIGH, 'time_generated' => $time_now));
$builders[] = FixtureBuilder::build('insights', array('date' => '2012-05-01', 'slug' => 'another_slug', 'instance_id' => '1', 'text' => 'Retweet spike! Your post got retweeted 110 times', 'emphasis' => Insight::EMPHASIS_HIGH, 'time_generated' => $time_now));
//assert that page of insights is only 3 long for public instane
$dao = new InsightMySQLDAO();
$results = $dao->getPublicInsights($page_count = 10, $page_number = 1);
$this->assertEqual(sizeof($results), 3);
foreach ($results as $result) {
$this->assertTrue(isset($result->instance));
}
}
示例2: testGetPublicInsightsPaging
public function testGetPublicInsightsPaging()
{
$builders = array();
//insert a public instance
$builders[] = FixtureBuilder::build('instances', array('id' => 1, 'network_user_id' => 10, 'network_username' => 'jack', 'network' => 'twitter', 'network_viewer_id' => 10, 'crawler_last_run' => '1988-01-20 12:00:00', 'is_active' => 1, 'is_public' => 0));
//insert a private instance
$builders[] = FixtureBuilder::build('instances', array('id' => 2, 'network_user_id' => 12, 'network_username' => 'jill', 'network' => 'twitter', 'network_viewer_id' => 12, 'crawler_last_run' => '2010-01-20 12:00:00', 'is_active' => 1, 'is_public' => 1));
$time_now = date("Y-m-d H:i:s");
//Insert 25 insights
$time_now = date("Y-m-d H:i:s");
$i = 25;
while ($i > 0) {
//insert 2 insights for a private instance and 3 for a public instance
$builders[] = FixtureBuilder::build('insights', array('date' => '2012-05-01', 'slug' => 'avg_replies_per_week', 'instance_id' => 2, 'text' => 'Insight ' . $i, 'emphasis' => Insight::EMPHASIS_HIGH, 'time_updated' => $time_now, 'date' => $time_now, 'filename' => 'test.php', 'related_data' => null));
$i--;
}
//Assert that a page of 10 insights with 1 extra comes back correctly
$dao = new InsightMySQLDAO();
$results = $dao->getPublicInsights($page_count = 11, $page_number = 1);
$this->assertEqual(sizeof($results), 11);
$this->assertEqual($results[0]->text, 'Insight 1');
$this->assertEqual($results[9]->text, 'Insight 10');
$this->debug(Utils::varDumpToString($results));
$results = $dao->getPublicInsights($page_count = 11, $page_number = 2);
$this->assertEqual($results[0]->text, 'Insight 11');
$this->assertEqual($results[9]->text, 'Insight 20');
}