Skip to content

Commit

Permalink
* mock byUrl() test
Browse files Browse the repository at this point in the history
  • Loading branch information
till committed Jul 9, 2011
1 parent 9aa46a6 commit ff8bbaf
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
10 changes: 8 additions & 2 deletions tests/Services/NYTimes/ArticlesearchTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,14 @@ protected function setUp()
*/
public function testUrlSearch()
{
$search = new Articlesearch(ARTICLESEARCH_API_KEY);
$data = $search->byUrl('http://www.nytimes.com/2011/07/09/business/economy/job-growth-falters-badly-clouding-hope-for-recovery.html?hp');
$responseObject = $this->setUpResponseObject(
'articlesearch',
'v1',
'by-url.php'
);

$asMock = $this->getApiMocked('articlesearch', $responseObject);
$data = $asMock->byUrl('http://www.nytimes.com/2011/07/09/business/economy/job-growth-falters-badly-clouding-hope-for-recovery.html?hp');

$this->assertInstanceOf('stdClass', $data);
}
Expand Down
6 changes: 6 additions & 0 deletions tests/fixtures/articlesearch/v1/by-url.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?php
return array(
'effectiveUrl' => 'http://api.nytimes.com/svc/search/v1/article?query=url%3Ahttp%3A%2F%2Fwww.nytimes.com%2F2011%2F07%2F09%2Fbusiness%2Feconomy%2Fjob-growth-falters-badly-clouding-hope-for-recovery.html&api-key=f8f203975851104767077c83bb51fd95%3A6%3A57657007',
'body' => '{"offset" : "0" , "results" : [{"body" : "For the second consecutive month, employers added scarcely any jobs in June, startling evidence that the economic recovery is stumbling. All levels of government shed workers, and hiring by companies continued to slow, resulting in a meager 18,000 new nonfarm payroll jobs last month, the Labor Department reported on Friday. The government also" , "byline" : "By MOTOKO RICH" , "date" : "20110709" , "title" : "Job Growth Falters, Clouding Hope for Recovery" , "url" : "http:\/\/www.nytimes.com\/2011\/07\/09\/business\/economy\/job-growth-falters-badly-clouding-hope-for-recovery.html"}] , "tokens" : ["url:http" , "www" , "nytimes" , "com" , "2011" , "07" , "09" , "business" , "economy" , "job" , "growth" , "falters" , "badly" , "clouding" , "hope" , "for" , "recovery" , "html"] , "total" : 1}',
'statusLine' => 'HTTP/1.1 200 OK',
);

0 comments on commit ff8bbaf

Please sign in to comment.