|  | <?php | 
						
						
							|  | use Symfony\Component\HttpFoundation\Request; | 
						
						
							|  | use Symfony\Component\HttpFoundation\Response; | 
						
						
							|  | 
 | 
						
						
							|  | class ActivityStreamsTest extends PHPUnit_Framework_TestCase { | 
						
						
							|  | 
 | 
						
						
							|  |   private $http; | 
						
						
							|  | 
 | 
						
						
							|  |   public function setUp() { | 
						
						
							|  |     $this->client = new Parse(); | 
						
						
							|  |     $this->client->http = new p3k\HTTP\Test(dirname(__FILE__).'/data/'); | 
						
						
							|  |     $this->client->mc = null; | 
						
						
							|  |   } | 
						
						
							|  | 
 | 
						
						
							|  |   private function parse($params) { | 
						
						
							|  |     $request = new Request($params); | 
						
						
							|  |     $response = new Response(); | 
						
						
							|  |     return $this->client->parse($request, $response); | 
						
						
							|  |   } | 
						
						
							|  | 
 | 
						
						
							|  |   public function testAuthorProfile() { | 
						
						
							|  |     $url = 'http://activitystreams.example/aaronpk'; | 
						
						
							|  |     $response = $this->parse(['url' => $url]); | 
						
						
							|  | 
 | 
						
						
							|  |     $body = $response->getContent(); | 
						
						
							|  |     $this->assertEquals(200, $response->getStatusCode()); | 
						
						
							|  |     $data = json_decode($body, true); | 
						
						
							|  | 
 | 
						
						
							|  |     $this->assertEquals('activity+json', $data['source-format']); | 
						
						
							|  |     $this->assertEquals('card', $data['data']['type']); | 
						
						
							|  |     $this->assertEquals('aaronpk', $data['data']['name']); | 
						
						
							|  |     $this->assertEquals('https://aaronparecki.com/images/profile.jpg', $data['data']['photo']); | 
						
						
							|  |     $this->assertEquals('https://aaronparecki.com/', $data['data']['url']); | 
						
						
							|  |   } | 
						
						
							|  | 
 | 
						
						
							|  |   public function testNoteWithTags() { | 
						
						
							|  |     $url = 'http://activitystreams.example/note.json'; | 
						
						
							|  |     $response = $this->parse(['url' => $url]); | 
						
						
							|  | 
 | 
						
						
							|  |     $body = $response->getContent(); | 
						
						
							|  |     $this->assertEquals(200, $response->getStatusCode()); | 
						
						
							|  |     $data = json_decode($body, true); | 
						
						
							|  | 
 | 
						
						
							|  |     $this->assertEquals('activity+json', $data['source-format']); | 
						
						
							|  |     $this->assertEquals('note', $data['data']['post-type']); | 
						
						
							|  |     $this->assertEquals($url, $data['data']['url']); | 
						
						
							|  |     $this->assertEquals('2018-07-12T13:02:04-07:00', $data['data']['published']); | 
						
						
							|  |     $this->assertEquals('This is the text content of an ActivityStreams note', $data['data']['content']['text']); | 
						
						
							|  |     $this->assertArrayNotHasKey('html', $data['data']['content']); | 
						
						
							|  |     $this->assertSame(['activitystreams'], $data['data']['category']); | 
						
						
							|  |     $this->assertEquals('aaronpk', $data['data']['author']['name']); | 
						
						
							|  |     $this->assertEquals('https://aaronparecki.com/images/profile.jpg', $data['data']['author']['photo']); | 
						
						
							|  |     $this->assertEquals('https://aaronparecki.com/', $data['data']['author']['url']); | 
						
						
							|  |   } | 
						
						
							|  | 
 | 
						
						
							|  |   public function testPhoto() { | 
						
						
							|  |     $url = 'http://activitystreams.example/photo.json'; | 
						
						
							|  |     $response = $this->parse(['url' => $url]); | 
						
						
							|  | 
 | 
						
						
							|  |     $body = $response->getContent(); | 
						
						
							|  |     $this->assertEquals(200, $response->getStatusCode()); | 
						
						
							|  |     $data = json_decode($body, true); | 
						
						
							|  | 
 | 
						
						
							|  |     $this->assertEquals('activity+json', $data['source-format']); | 
						
						
							|  |     $this->assertEquals($url, $data['data']['url']); | 
						
						
							|  |     $this->assertEquals('photo', $data['data']['post-type']); | 
						
						
							|  |     $this->assertEquals('2018-07-12T13:02:04-07:00', $data['data']['published']); | 
						
						
							|  |     $this->assertEquals('This is the text content of an ActivityStreams photo', $data['data']['content']['text']); | 
						
						
							|  |     $this->assertArrayNotHasKey('html', $data['data']['content']); | 
						
						
							|  |     $this->assertSame(['activitystreams'], $data['data']['category']); | 
						
						
							|  |     $this->assertSame(['https://aaronparecki.com/2018/06/28/26/photo.jpg'], $data['data']['photo']); | 
						
						
							|  |   } | 
						
						
							|  | 
 | 
						
						
							|  |   public function testVideo() { | 
						
						
							|  |     $url = 'http://activitystreams.example/video.json'; | 
						
						
							|  |     $response = $this->parse(['url' => $url]); | 
						
						
							|  | 
 | 
						
						
							|  |     $body = $response->getContent(); | 
						
						
							|  |     $this->assertEquals(200, $response->getStatusCode()); | 
						
						
							|  |     $data = json_decode($body, true); | 
						
						
							|  | 
 | 
						
						
							|  |     $this->assertEquals('activity+json', $data['source-format']); | 
						
						
							|  |     $this->assertEquals('video', $data['data']['post-type']); | 
						
						
							|  |     $this->assertEquals('2018-07-12T13:02:04-07:00', $data['data']['published']); | 
						
						
							|  |     $this->assertSame(['https://aaronparecki.com/2018/07/21/19/video.mp4'], $data['data']['video']); | 
						
						
							|  |   } | 
						
						
							|  | 
 | 
						
						
							|  |   public function testReply() { | 
						
						
							|  |     $url = 'http://activitystreams.example/reply.json'; | 
						
						
							|  |     $response = $this->parse(['url' => $url]); | 
						
						
							|  | 
 | 
						
						
							|  |     $body = $response->getContent(); | 
						
						
							|  |     $this->assertEquals(200, $response->getStatusCode()); | 
						
						
							|  |     $data = json_decode($body, true); | 
						
						
							|  | 
 | 
						
						
							|  |     $this->assertEquals('activity+json', $data['source-format']); | 
						
						
							|  |     $this->assertEquals('reply', $data['data']['post-type']); | 
						
						
							|  |     $this->assertEquals('2018-07-12T13:02:04-07:00', $data['data']['published']); | 
						
						
							|  |     $this->assertArrayNotHasKey('category', $data['data']); // should not include the person-tag | 
						
						
							|  |     // For now, don't fetch the reply context | 
						
						
							|  |     $this->assertEquals(['http://activitystreams.example/note.json'], $data['data']['in-reply-to']); | 
						
						
							|  |   } | 
						
						
							|  | 
 | 
						
						
							|  |   public function testCustomEmoji() { | 
						
						
							|  |     $url = 'http://activitystreams.example/custom-emoji.json'; | 
						
						
							|  |     $response = $this->parse(['url' => $url]); | 
						
						
							|  | 
 | 
						
						
							|  |     $body = $response->getContent(); | 
						
						
							|  |     $this->assertEquals(200, $response->getStatusCode()); | 
						
						
							|  |     $data = json_decode($body, true); | 
						
						
							|  | 
 | 
						
						
							|  |     $this->assertEquals('activity+json', $data['source-format']); | 
						
						
							|  |     $this->assertEquals('note', $data['data']['post-type']); | 
						
						
							|  |     $this->assertEquals("https://mastodon.social/@Gargron/100465999501820229", $data['data']['url']); | 
						
						
							|  |     $this->assertEquals('2018-07-30T22:24:54+00:00', $data['data']['published']); | 
						
						
							|  |     $this->assertEquals(':yikes:', $data['data']['content']['text']); | 
						
						
							|  |     $this->assertEquals('<p><img src="https://files.mastodon.social/custom_emojis/images/000/031/275/original/yikes.png" alt=":yikes:" title=":yikes:" height="24" class="xray-custom-emoji"></p>', $data['data']['content']['html']); | 
						
						
							|  |     $this->assertEquals('Eugen', $data['data']['author']['name']); | 
						
						
							|  |     $this->assertEquals('Gargron', $data['data']['author']['nickname']); | 
						
						
							|  |     $this->assertEquals('https://files.mastodon.social/accounts/avatars/000/000/001/original/eb9e00274b135808.png', $data['data']['author']['photo']); | 
						
						
							|  |     $this->assertEquals('https://mastodon.social/@Gargron', $data['data']['author']['url']); | 
						
						
							|  |   } | 
						
						
							|  | 
 | 
						
						
							|  |   public function testRelAlternatePriority() { | 
						
						
							|  |     $url = 'http://source.example.com/rel-alternate-as2'; | 
						
						
							|  |     $response = $this->parse(['url' => $url]); | 
						
						
							|  | 
 | 
						
						
							|  |     $body = $response->getContent(); | 
						
						
							|  |     $this->assertEquals(200, $response->getStatusCode()); | 
						
						
							|  |     $data = json_decode($body, true); | 
						
						
							|  | 
 | 
						
						
							|  |     $this->assertEquals('activity+json', $data['source-format']); | 
						
						
							|  |     $this->assertEquals('http://activitystreams.example/note.json', $data['parsed-url']); | 
						
						
							|  |     $this->assertEquals('http://source.example.com/rel-alternate-as2', $data['url']); | 
						
						
							|  |     $this->assertEquals('note', $data['data']['post-type']); | 
						
						
							|  |     $this->assertEquals('2018-07-12T13:02:04-07:00', $data['data']['published']); | 
						
						
							|  |     $this->assertEquals('This is the text content of an ActivityStreams note', $data['data']['content']['text']); | 
						
						
							|  |     $this->assertArrayNotHasKey('html', $data['data']['content']); | 
						
						
							|  |     $this->assertSame(['activitystreams'], $data['data']['category']); | 
						
						
							|  |   } | 
						
						
							|  | 
 | 
						
						
							|  | }
 |