public function testSearchResults() { $to = new TwitterOAuth('', '', '', ''); $twitter_data = $to->http('http://search.twitter.com/search.json?q=%40whitehouse&result_type=recent'); $api = new CrawlerTwitterAPIAccessorOAuth('111', '222', 1234, 1234, 5, 3200, 5, 350); $results = $api->parseJSON($twitter_data); $this->assertEqual($results[0]['post_id'], 11837318124); }
public function testSearchResults() { global $THINKUP_CFG; $to = new TwitterOAuth('', '', '', ''); $twitter_data = $to->http('http://search.twitter.com/search.json?q=%40whitehouse&result_type=recent'); $api = new CrawlerTwitterAPIAccessorOAuth('111', '222', 1234, 1234, $this->getTestInstance(), 3200); $results = $api->parseJSON($twitter_data); //print_r($results); $this->assertEqual($results[0]['post_id'], 11837318124); }
function testSearchResults() { global $THINKTANK_CFG; $r = array(); $r["id"] = 0; $r['network_username'] = '******'; $r['network_user_id'] = 0; $r['last_status_id'] = 0; $r['last_page_fetched_replies'] = 0; $r['last_page_fetched_tweets'] = 0; $r['total_posts_in_system'] = 0; $r['total_replies_in_system'] = 0; $r['total_follows_in_system'] = 0; $r['total_users_in_system'] = 0; $r['is_archive_loaded_replies'] = 0; $r['is_archive_loaded_follows'] = 0; $r['crawler_last_run'] = '1/1/2007'; $r['earliest_reply_in_system'] = 0; $r['api_calls_to_leave_unmade_per_minute'] = 5; $r['avg_replies_per_day'] = 0; $r['is_public'] = 1; $r['is_active'] = 1; $r['network'] = 'twitter'; $i = new Instance($r); $to = new TwitterOAuth('', '', '', ''); $twitter_data = $to->noAuthRequest('http://search.twitter.com/search.json?q=%40whitehouse&result_type=recent'); $api = new CrawlerTwitterAPIAccessorOAuth('111', '222', $THINKTANK_CFG['oauth_consumer_key'], $THINKTANK_CFG['oauth_consumer_secret'], $i, $THINKTANK_CFG['archive_limit']); $results = $api->parseJSON($twitter_data); //print_r($results); $this->assertEqual($results[0]['post_id'], 11837318124.0); }