| 
						 | 
						- <?php
 - use Symfony\Component\HttpFoundation\Request;
 - use Symfony\Component\HttpFoundation\Response;
 - 
 - class ParseTest extends PHPUnit_Framework_TestCase {
 - 
 -   private $http;
 - 
 -   public function setUp() {
 -     $this->client = new Parse();
 -     $this->client->http = new p3k\HTTPTest(dirname(__FILE__).'/data/');
 -   }
 - 
 -   private function parse($params) {
 -     $request = new Request($params);
 -     $response = new Response();
 -     return $this->client->parse($request, $response);
 -   }
 - 
 -   public function testMissingURL() {
 -     $response = $this->parse([]);
 - 
 -     $body = $response->getContent();
 -     $this->assertEquals(400, $response->getStatusCode());
 -     $data = json_decode($body);
 -     $this->assertObjectHasAttribute('error', $data);
 -     $this->assertEquals('missing_url', $data->error);
 -   }
 - 
 -   public function testInvalidURL() {
 -     $url = 'ftp://example.com/foo';
 -     $response = $this->parse(['url' => $url]);
 - 
 -     $body = $response->getContent();
 -     $this->assertEquals(400, $response->getStatusCode());
 -     $data = json_decode($body);
 -     $this->assertObjectHasAttribute('error', $data);
 -     $this->assertEquals('invalid_url', $data->error);
 -   }
 - 
 -   public function testTargetNotFound() {
 -     $url = 'http://source.example.com/basictest';
 -     $response = $this->parse(['url' => $url, 'target' => 'http://example.net']);
 - 
 -     $body = $response->getContent();
 -     $this->assertEquals(400, $response->getStatusCode());
 -     $data = json_decode($body);
 -     $this->assertObjectHasAttribute('error', $data);
 -     $this->assertEquals('no_link_found', $data->error);
 -   }
 - 
 -   public function testTargetFound() {
 -     $url = 'http://source.example.com/basictest';
 -     $response = $this->parse(['url' => $url, 'target' => 'http://target.example.com']);
 - 
 -     $body = $response->getContent();
 -     $this->assertEquals(200, $response->getStatusCode());
 -     $data = json_decode($body);
 -     $this->assertObjectNotHasAttribute('error', $data);
 -     $this->assertObjectNotHasAttribute('error', $data);
 -   }
 - 
 -   public function testHTMLContent() {
 -     $url = 'http://source.example.com/html-content';
 -     $response = $this->parse(['url' => $url]);
 - 
 -     $body = $response->getContent();
 -     $this->assertEquals(200, $response->getStatusCode());
 -     $data = json_decode($body);
 -     $this->assertObjectNotHasAttribute('name', $data->data);
 -     $this->assertEquals('This page has a link to target.example.com and some formatted text.', $data->data->content->text);
 -     $this->assertEquals('This page has a link to <a href="http://target.example.com">target.example.com</a> and some <b>formatted text</b>.', $data->data->content->html);
 -   }
 - 
 -   public function testTextContent() {
 -     $url = 'http://source.example.com/text-content';
 -     $response = $this->parse(['url' => $url]);
 - 
 -     $body = $response->getContent();
 -     $this->assertEquals(200, $response->getStatusCode());
 -     $data = json_decode($body);
 -     $this->assertObjectNotHasAttribute('name', $data->data);
 -     $this->assertEquals('This page has a link to target.example.com and some formatted text but is in a p-content element so is plaintext.', $data->data->content->text);
 -   }
 - 
 -   public function testContentWithPrefixedName() {
 -     $url = 'http://source.example.com/content-with-prefixed-name';
 -     $response = $this->parse(['url' => $url]);
 - 
 -     $body = $response->getContent();
 -     $this->assertEquals(200, $response->getStatusCode());
 -     $data = json_decode($body);
 -     $this->assertObjectNotHasAttribute('name', $data->data);
 -     $this->assertEquals('This page has a link to target.example.com and some formatted text.', $data->data->content->text);
 -     $this->assertEquals('This page has a link to <a href="http://target.example.com">target.example.com</a> and some <b>formatted text</b>.', $data->data->content->html);
 -   }
 - 
 -   public function testContentWithDistinctName() {
 -     $url = 'http://source.example.com/content-with-distinct-name';
 -     $response = $this->parse(['url' => $url]);
 - 
 -     $body = $response->getContent();
 -     $this->assertEquals(200, $response->getStatusCode());
 -     $data = json_decode($body);
 -     $this->assertEquals('Hello World', $data->data->name);
 -     $this->assertEquals('This page has a link to target.example.com and some formatted text.', $data->data->content->text);
 -     $this->assertEquals('This page has a link to <a href="http://target.example.com">target.example.com</a> and some <b>formatted text</b>.', $data->data->content->html);
 -   }
 - 
 -   public function testNameWithNoContent() {
 -     $url = 'http://source.example.com/name-no-content';
 -     $response = $this->parse(['url' => $url]);
 - 
 -     $body = $response->getContent();
 -     $this->assertEquals(200, $response->getStatusCode());
 -     $data = json_decode($body);
 -     $this->assertEquals('Hello World', $data->data->name);
 -     $this->assertObjectNotHasAttribute('content', $data->data);
 -   }
 - 
 -   public function testNoHEntryMarkup() {
 -     $url = 'http://source.example.com/no-h-entry';
 -     $response = $this->parse(['url' => $url]);
 - 
 -     $body = $response->getContent();
 -     $this->assertEquals(200, $response->getStatusCode());
 -     $data = json_decode($body);
 -     $this->assertEquals('unknown', $data->data->type);
 -   }
 - 
 -   public function testReplyIsURL() {
 -     $url = 'http://source.example.com/reply-is-url';
 -     $response = $this->parse(['url' => $url]);
 - 
 -     $body = $response->getContent();
 -     $this->assertEquals(200, $response->getStatusCode());
 -     $data = json_decode($body, true);
 -     $this->assertEquals('entry', $data['data']['type']);
 -     $this->assertEquals('http://example.com/100', $data['data']['in-reply-to'][0]);
 -   }
 - 
 -   public function testReplyIsHCite() {
 -     $url = 'http://source.example.com/reply-is-h-cite';
 -     $response = $this->parse(['url' => $url]);
 - 
 -     $body = $response->getContent();
 -     $this->assertEquals(200, $response->getStatusCode());
 -     $data = json_decode($body, true);
 -     $this->assertEquals('entry', $data['data']['type']);    
 -     $this->assertEquals('http://example.com/100', $data['data']['in-reply-to'][0]);
 -     $this->assertArrayHasKey('http://example.com/100', $data['refs']);
 -     $this->assertEquals('Example Post', $data['refs']['http://example.com/100']['name']);
 -     $this->assertEquals('http://example.com/100', $data['refs']['http://example.com/100']['url']);
 -   }
 - 
 -   public function testPersonTagIsURL() {
 -     $url = 'http://source.example.com/person-tag-is-url';
 -     $response = $this->parse(['url' => $url]);
 - 
 -     $body = $response->getContent();
 -     $this->assertEquals(200, $response->getStatusCode());
 -     $data = json_decode($body, true);
 -     $this->assertEquals('entry', $data['data']['type']);
 -     $this->assertEquals('http://alice.example.com/', $data['data']['category'][0]);
 -   }
 - 
 -   public function testPersonTagIsHCard() {
 -     $url = 'http://source.example.com/person-tag-is-h-card';
 -     $response = $this->parse(['url' => $url]);
 - 
 -     $body = $response->getContent();
 -     $this->assertEquals(200, $response->getStatusCode());
 -     $data = json_decode($body, true);
 -     $this->assertEquals('entry', $data['data']['type']);
 -     $this->assertEquals('http://alice.example.com/', $data['data']['category'][0]);
 -     $this->assertArrayHasKey('http://alice.example.com/', $data['refs']);
 -     $this->assertEquals('card', $data['refs']['http://alice.example.com/']['type']);
 -     $this->assertEquals('http://alice.example.com/', $data['refs']['http://alice.example.com/']['url']);
 -     $this->assertEquals('Alice', $data['refs']['http://alice.example.com/']['name']);
 -   }
 - 
 - }
 
 
  |