You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

954 lines
42 KiB

8 years ago
8 years ago
  1. <?php
  2. use Symfony\Component\HttpFoundation\Request;
  3. use Symfony\Component\HttpFoundation\Response;
  4. class ParseTest extends PHPUnit_Framework_TestCase {
  5. private $http;
  6. public function setUp() {
  7. $this->client = new Parse();
  8. $this->client->http = new p3k\HTTP\Test(dirname(__FILE__).'/data/');
  9. $this->client->mc = null;
  10. }
  11. private function parse($params) {
  12. $request = new Request($params);
  13. $response = new Response();
  14. return $this->client->parse($request, $response);
  15. }
  16. public function testMissingURL() {
  17. $response = $this->parse([]);
  18. $body = $response->getContent();
  19. $this->assertEquals(400, $response->getStatusCode());
  20. $data = json_decode($body);
  21. $this->assertObjectHasAttribute('error', $data);
  22. $this->assertEquals('missing_url', $data->error);
  23. }
  24. public function testInvalidURL() {
  25. $url = 'ftp://example.com/foo';
  26. $response = $this->parse(['url' => $url]);
  27. $body = $response->getContent();
  28. $this->assertEquals(400, $response->getStatusCode());
  29. $data = json_decode($body);
  30. $this->assertObjectHasAttribute('error', $data);
  31. $this->assertEquals('invalid_url', $data->error);
  32. }
  33. public function testTargetNotFound() {
  34. $url = 'http://source.example.com/basictest';
  35. $response = $this->parse(['url' => $url, 'target' => 'http://example.net']);
  36. $body = $response->getContent();
  37. $this->assertEquals(200, $response->getStatusCode());
  38. $data = json_decode($body);
  39. $this->assertObjectHasAttribute('error', $data);
  40. $this->assertEquals('no_link_found', $data->error);
  41. $this->assertEquals('200', $data->code);
  42. $this->assertEquals($url, $data->url);
  43. }
  44. public function testTargetFound() {
  45. $url = 'http://source.example.com/basictest';
  46. $response = $this->parse(['url' => $url, 'target' => 'http://target.example.com']);
  47. $body = $response->getContent();
  48. $this->assertEquals(200, $response->getStatusCode());
  49. $data = json_decode($body);
  50. $this->assertObjectNotHasAttribute('error', $data);
  51. }
  52. public function testHTMLContent() {
  53. $url = 'http://source.example.com/html-content';
  54. $response = $this->parse(['url' => $url]);
  55. $body = $response->getContent();
  56. $this->assertEquals(200, $response->getStatusCode());
  57. $data = json_decode($body);
  58. $this->assertObjectNotHasAttribute('name', $data->data);
  59. $this->assertEquals('This page has a link to target.example.com and some formatted text.', $data->data->content->text);
  60. $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);
  61. }
  62. public function testContentFromJSONOnlyPlaintext() {
  63. $mf2JSON = json_encode([
  64. 'items' => [[
  65. 'type' => ['h-entry'],
  66. 'properties' => [
  67. 'content' => [
  68. 'plaintext'
  69. ]
  70. ]
  71. ]]
  72. ]);
  73. $xray = new \p3k\XRay();
  74. $parsed = $xray->process(false, $mf2JSON);
  75. $this->assertEquals('mf2+json', $parsed['source-format']);
  76. $item = $parsed['data'];
  77. $this->assertEquals('entry', $item['type']);
  78. $this->assertEquals('note', $item['post-type']);
  79. $this->assertEquals('plaintext', $item['content']['text']);
  80. $this->assertArrayNotHasKey('html', $item['content']);
  81. }
  82. public function testHTMLContentFromJSONNoPlaintext() {
  83. $mf2JSON = json_encode([
  84. 'items' => [[
  85. 'type' => ['h-entry'],
  86. 'properties' => [
  87. 'content' => [[
  88. 'html' => '<b>bold</b> <i>italic</i> text'
  89. ]]
  90. ]
  91. ]]
  92. ]);
  93. $xray = new \p3k\XRay();
  94. $parsed = $xray->process(false, $mf2JSON);
  95. $this->assertEquals('mf2+json', $parsed['source-format']);
  96. $item = $parsed['data'];
  97. $this->assertEquals('entry', $item['type']);
  98. $this->assertEquals('note', $item['post-type']);
  99. $this->assertEquals('bold italic text', $item['content']['text']);
  100. $this->assertEquals('<b>bold</b> <i>italic</i> text', $item['content']['html']);
  101. }
  102. public function testHTMLContentFromJSONEmptyTags() {
  103. $mf2JSON = json_encode([
  104. 'items' => [[
  105. 'type' => ['h-entry'],
  106. 'properties' => [
  107. 'content' => [[
  108. 'html' => '<b></b><i></i>'
  109. ]]
  110. ]
  111. ]]
  112. ]);
  113. $xray = new \p3k\XRay();
  114. $parsed = $xray->process(false, $mf2JSON);
  115. $this->assertEquals('mf2+json', $parsed['source-format']);
  116. $item = $parsed['data'];
  117. $this->assertEquals('entry', $item['type']);
  118. $this->assertEquals('note', $item['post-type']);
  119. $this->assertArrayNotHasKey('content', $item);
  120. }
  121. public function testHTMLContentFromJSONContentMismatch() {
  122. $mf2JSON = json_encode([
  123. 'items' => [[
  124. 'type' => ['h-entry'],
  125. 'properties' => [
  126. 'content' => [[
  127. 'value' => 'foo',
  128. 'html' => '<b>bar</b>'
  129. ]]
  130. ]
  131. ]]
  132. ]);
  133. $xray = new \p3k\XRay();
  134. $parsed = $xray->process(false, $mf2JSON);
  135. $this->assertEquals('mf2+json', $parsed['source-format']);
  136. $item = $parsed['data'];
  137. $this->assertEquals('entry', $item['type']);
  138. $this->assertEquals('note', $item['post-type']);
  139. $this->assertEquals('bar', $item['content']['text']);
  140. $this->assertEquals('<b>bar</b>', $item['content']['html']);
  141. }
  142. public function testHTMLContentFromJSONNoHTML() {
  143. $mf2JSON = json_encode([
  144. 'items' => [[
  145. 'type' => ['h-entry'],
  146. 'properties' => [
  147. 'content' => [[
  148. 'value' => 'foo',
  149. ]]
  150. ]
  151. ]]
  152. ]);
  153. $xray = new \p3k\XRay();
  154. $parsed = $xray->process(false, $mf2JSON);
  155. $this->assertEquals('mf2+json', $parsed['source-format']);
  156. $item = $parsed['data'];
  157. $this->assertEquals('entry', $item['type']);
  158. $this->assertEquals('note', $item['post-type']);
  159. $this->assertArrayNotHasKey('content', $item);
  160. }
  161. public function testFindTargetLinkIsImage() {
  162. $url = 'http://source.example.com/link-is-img';
  163. $response = $this->parse(['url' => $url, 'target' => 'http://target.example.com/photo.jpg']);
  164. $body = $response->getContent();
  165. $this->assertEquals(200, $response->getStatusCode());
  166. $data = json_decode($body);
  167. $this->assertEquals('mf2+html', $data->{'source-format'});
  168. $this->assertEquals('photo', $data->data->{'post-type'});
  169. $this->assertObjectNotHasAttribute('name', $data->data);
  170. $this->assertEquals('This page has an img tag with the target URL.', $data->data->content->text);
  171. }
  172. public function testFindTargetLinkIsVideo() {
  173. $url = 'http://source.example.com/link-is-video';
  174. $response = $this->parse(['url' => $url, 'target' => 'http://target.example.com/movie.mp4']);
  175. $body = $response->getContent();
  176. $this->assertEquals(200, $response->getStatusCode());
  177. $data = json_decode($body);
  178. $this->assertEquals('mf2+html', $data->{'source-format'});
  179. $this->assertEquals('video', $data->data->{'post-type'});
  180. $this->assertObjectNotHasAttribute('name', $data->data);
  181. $this->assertEquals('This page has a video tag with the target URL.', $data->data->content->text);
  182. }
  183. public function testFindTargetLinkIsAudio() {
  184. $url = 'http://source.example.com/link-is-audio';
  185. $response = $this->parse(['url' => $url, 'target' => 'http://target.example.com/media.mp3']);
  186. $body = $response->getContent();
  187. $this->assertEquals(200, $response->getStatusCode());
  188. $data = json_decode($body);
  189. $this->assertEquals('mf2+html', $data->{'source-format'});
  190. $this->assertEquals('audio', $data->data->{'post-type'});
  191. $this->assertObjectNotHasAttribute('name', $data->data);
  192. $this->assertEquals('This page has an audio tag with the target URL.', $data->data->content->text);
  193. }
  194. public function testTextContent() {
  195. $url = 'http://source.example.com/text-content';
  196. $response = $this->parse(['url' => $url]);
  197. $body = $response->getContent();
  198. $this->assertEquals(200, $response->getStatusCode());
  199. $data = json_decode($body);
  200. $this->assertEquals('mf2+html', $data->{'source-format'});
  201. $this->assertObjectNotHasAttribute('name', $data->data);
  202. $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);
  203. }
  204. public function testArticleWithFeaturedImage() {
  205. $url = 'http://source.example.com/article-with-featured-image';
  206. $response = $this->parse(['url' => $url]);
  207. $body = $response->getContent();
  208. $this->assertEquals(200, $response->getStatusCode());
  209. $data = json_decode($body);
  210. $this->assertEquals('mf2+html', $data->{'source-format'});
  211. $this->assertEquals('article', $data->data->{'post-type'});
  212. $this->assertEquals('Post Title', $data->data->name);
  213. $this->assertEquals('This is a blog post.', $data->data->content->text);
  214. $this->assertEquals('http://source.example.com/featured.jpg', $data->data->featured);
  215. }
  216. public function testContentWithPrefixedName() {
  217. $url = 'http://source.example.com/content-with-prefixed-name';
  218. $response = $this->parse(['url' => $url]);
  219. $body = $response->getContent();
  220. $this->assertEquals(200, $response->getStatusCode());
  221. $data = json_decode($body);
  222. $this->assertEquals('mf2+html', $data->{'source-format'});
  223. $this->assertObjectNotHasAttribute('name', $data->data);
  224. $this->assertEquals('note', $data->data->{'post-type'});
  225. $this->assertEquals('This page has a link to target.example.com and some formatted text.', $data->data->content->text);
  226. $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);
  227. }
  228. public function testContentWithDistinctName() {
  229. $url = 'http://source.example.com/content-with-distinct-name';
  230. $response = $this->parse(['url' => $url]);
  231. $body = $response->getContent();
  232. $this->assertEquals(200, $response->getStatusCode());
  233. $data = json_decode($body);
  234. $this->assertEquals('mf2+html', $data->{'source-format'});
  235. $this->assertEquals('Hello World', $data->data->name);
  236. $this->assertEquals('article', $data->data->{'post-type'});
  237. $this->assertEquals('This page has a link to target.example.com and some formatted text.', $data->data->content->text);
  238. $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);
  239. }
  240. public function testNameWithNoContent() {
  241. $url = 'http://source.example.com/name-no-content';
  242. $response = $this->parse(['url' => $url]);
  243. $body = $response->getContent();
  244. $this->assertEquals(200, $response->getStatusCode());
  245. $data = json_decode($body);
  246. $this->assertEquals('mf2+html', $data->{'source-format'});
  247. $this->assertEquals('Hello World', $data->data->name);
  248. $this->assertEquals('article', $data->data->{'post-type'});
  249. $this->assertObjectNotHasAttribute('content', $data->data);
  250. }
  251. public function testEntryWithDuplicateCategories() {
  252. $url = 'http://source.example.com/h-entry-duplicate-categories';
  253. $response = $this->parse(['url' => $url]);
  254. $body = $response->getContent();
  255. $this->assertEquals(200, $response->getStatusCode());
  256. $data = json_decode($body);
  257. $this->assertEquals('mf2+html', $data->{'source-format'});
  258. $this->assertEquals(['indieweb'], $data->data->category);
  259. }
  260. public function testEntryStripHashtagWithDuplicateCategories() {
  261. $url = 'http://source.example.com/h-entry-strip-hashtag-from-categories';
  262. $response = $this->parse(['url' => $url]);
  263. $body = $response->getContent();
  264. $this->assertEquals(200, $response->getStatusCode());
  265. $data = json_decode($body);
  266. $this->assertEquals('mf2+html', $data->{'source-format'});
  267. $this->assertContains('indieweb', $data->data->category);
  268. $this->assertContains('xray', $data->data->category);
  269. $this->assertEquals(2, count($data->data->category));
  270. }
  271. public function testNoHEntryMarkup() {
  272. $url = 'http://source.example.com/no-h-entry';
  273. $response = $this->parse(['url' => $url]);
  274. $body = $response->getContent();
  275. $this->assertEquals(200, $response->getStatusCode());
  276. $data = json_decode($body);
  277. $this->assertEquals('unknown', $data->data->type);
  278. }
  279. public function testReplyIsURL() {
  280. $url = 'http://source.example.com/reply-is-url';
  281. $response = $this->parse(['url' => $url]);
  282. $body = $response->getContent();
  283. $this->assertEquals(200, $response->getStatusCode());
  284. $data = json_decode($body, true);
  285. $this->assertEquals('mf2+html', $data['source-format']);
  286. $this->assertEquals('entry', $data['data']['type']);
  287. $this->assertEquals('http://example.com/100', $data['data']['in-reply-to'][0]);
  288. }
  289. public function testReplyIsHCite() {
  290. $url = 'http://source.example.com/reply-is-h-cite';
  291. $response = $this->parse(['url' => $url]);
  292. $body = $response->getContent();
  293. $this->assertEquals(200, $response->getStatusCode());
  294. $data = json_decode($body, true);
  295. $this->assertEquals('mf2+html', $data['source-format']);
  296. $this->assertEquals('entry', $data['data']['type']);
  297. $this->assertEquals('reply', $data['data']['post-type']);
  298. $this->assertEquals('http://example.com/100', $data['data']['in-reply-to'][0]);
  299. $this->assertArrayHasKey('http://example.com/100', $data['data']['refs']);
  300. $this->assertEquals('Example Post', $data['data']['refs']['http://example.com/100']['name']);
  301. $this->assertEquals('http://example.com/100', $data['data']['refs']['http://example.com/100']['url']);
  302. }
  303. public function testPersonTagIsURL() {
  304. $url = 'http://source.example.com/person-tag-is-url';
  305. $response = $this->parse(['url' => $url]);
  306. $body = $response->getContent();
  307. $this->assertEquals(200, $response->getStatusCode());
  308. $data = json_decode($body, true);
  309. $this->assertEquals('mf2+html', $data['source-format']);
  310. $this->assertEquals('entry', $data['data']['type']);
  311. $this->assertEquals('http://alice.example.com/', $data['data']['category'][0]);
  312. }
  313. public function testPersonTagIsHCard() {
  314. $url = 'http://source.example.com/person-tag-is-h-card';
  315. $response = $this->parse(['url' => $url]);
  316. $body = $response->getContent();
  317. $this->assertEquals(200, $response->getStatusCode());
  318. $data = json_decode($body, true);
  319. $this->assertEquals('mf2+html', $data['source-format']);
  320. $this->assertEquals('entry', $data['data']['type']);
  321. $this->assertEquals('http://alice.example.com/', $data['data']['category'][0]);
  322. $this->assertArrayHasKey('http://alice.example.com/', $data['data']['refs']);
  323. $this->assertEquals('card', $data['data']['refs']['http://alice.example.com/']['type']);
  324. $this->assertEquals('http://alice.example.com/', $data['data']['refs']['http://alice.example.com/']['url']);
  325. $this->assertEquals('Alice', $data['data']['refs']['http://alice.example.com/']['name']);
  326. }
  327. public function testSyndicationIsURL() {
  328. $url = 'http://source.example.com/has-syndication';
  329. $response = $this->parse(['url' => $url]);
  330. $body = $response->getContent();
  331. $this->assertEquals(200, $response->getStatusCode());
  332. $data = json_decode($body, true);
  333. $this->assertEquals('mf2+html', $data['source-format']);
  334. $this->assertEquals('entry', $data['data']['type']);
  335. $this->assertEquals('http://syndicated.example/', $data['data']['syndication'][0]);
  336. }
  337. public function testHEntryNoContent() {
  338. $url = 'http://source.example.com/h-entry-no-content';
  339. $response = $this->parse(['url' => $url]);
  340. $body = $response->getContent();
  341. $this->assertEquals(200, $response->getStatusCode());
  342. $data = json_decode($body);
  343. $this->assertEquals('mf2+html', $data->{'source-format'});
  344. $this->assertObjectNotHasAttribute('content', $data->data);
  345. $this->assertEquals('This is a Post', $data->data->name);
  346. }
  347. public function testHEntryIsNotFirstObject() {
  348. $url = 'http://source.example.com/h-entry-is-not-first';
  349. $response = $this->parse(['url' => $url]);
  350. $body = $response->getContent();
  351. $this->assertEquals(200, $response->getStatusCode());
  352. $data = json_decode($body, true);
  353. $this->assertEquals('mf2+html', $data['source-format']);
  354. $this->assertEquals('entry', $data['data']['type']);
  355. $this->assertEquals('Hello World', $data['data']['content']['text']);
  356. }
  357. public function testHEntryRSVP() {
  358. $url = 'http://source.example.com/h-entry-rsvp';
  359. $response = $this->parse(['url' => $url]);
  360. $body = $response->getContent();
  361. $this->assertEquals(200, $response->getStatusCode());
  362. $data = json_decode($body, true);
  363. $this->assertEquals('mf2+html', $data['source-format']);
  364. $this->assertEquals('entry', $data['data']['type']);
  365. $this->assertEquals('rsvp', $data['data']['post-type']);
  366. $this->assertEquals('I\'ll be there!', $data['data']['content']['text']);
  367. $this->assertEquals('yes', $data['data']['rsvp']);
  368. }
  369. public function testMultipleHEntryOnPermalink() {
  370. $url = 'http://source.example.com/multiple-h-entry-on-permalink';
  371. $response = $this->parse(['url' => $url]);
  372. $body = $response->getContent();
  373. $this->assertEquals(200, $response->getStatusCode());
  374. $data = json_decode($body, true);
  375. $this->assertEquals('mf2+html', $data['source-format']);
  376. $this->assertEquals('entry', $data['data']['type']);
  377. $this->assertEquals('Primary Post', $data['data']['name']);
  378. }
  379. public function testHEntryWithHCardSibling() {
  380. $url = 'http://source.example.com/h-entry-with-h-card-sibling';
  381. $response = $this->parse(['url' => $url]);
  382. $body = $response->getContent();
  383. $this->assertEquals(200, $response->getStatusCode());
  384. $data = json_decode($body, true);
  385. $this->assertEquals('mf2+html', $data['source-format']);
  386. $this->assertEquals('entry', $data['data']['type']);
  387. $this->assertEquals('Hello World', $data['data']['content']['text']);
  388. }
  389. public function testHEntryRedirectWithHCardSibling() {
  390. $url = 'http://source.example.com/h-entry-redirect-with-h-card-sibling';
  391. $response = $this->parse(['url' => $url]);
  392. $body = $response->getContent();
  393. $this->assertEquals(200, $response->getStatusCode());
  394. $data = json_decode($body, true);
  395. $this->assertEquals('mf2+html', $data['source-format']);
  396. $this->assertEquals('entry', $data['data']['type']);
  397. $this->assertEquals('Hello World', $data['data']['content']['text']);
  398. }
  399. public function testSingleHEntryHasNoPermalink() {
  400. $url = 'http://source.example.com/single-h-entry-has-no-permalink';
  401. $response = $this->parse(['url' => $url]);
  402. $body = $response->getContent();
  403. $this->assertEquals(200, $response->getStatusCode());
  404. $data = json_decode($body, true);
  405. $this->assertEquals('mf2+html', $data['source-format']);
  406. $this->assertEquals('entry', $data['data']['type']);
  407. $this->assertEquals('Hello World', $data['data']['content']['text']);
  408. }
  409. public function testBridgyExampleWithNoMatchingURL() {
  410. $url = 'http://source.example.com/bridgy-example';
  411. $response = $this->parse(['url' => $url]);
  412. $body = $response->getContent();
  413. $this->assertEquals(200, $response->getStatusCode());
  414. $data = json_decode($body, true);
  415. $this->assertEquals('mf2+html', $data['source-format']);
  416. $this->assertEquals('entry', $data['data']['type']);
  417. }
  418. public function testEventWithHTMLDescription() {
  419. $url = 'http://source.example.com/h-event';
  420. $response = $this->parse(['url' => $url]);
  421. $body = $response->getContent();
  422. $this->assertEquals(200, $response->getStatusCode());
  423. $data = json_decode($body, true);
  424. $this->assertEquals('mf2+html', $data['source-format']);
  425. $this->assertEquals('event', $data['data']['type']);
  426. $this->assertEquals('event', $data['data']['post-type']);
  427. $this->assertEquals('Homebrew Website Club', $data['data']['name']);
  428. $this->assertEquals($url, $data['data']['url']);
  429. $this->assertEquals('2016-03-09T18:30', $data['data']['start']);
  430. $this->assertEquals('2016-03-09T19:30', $data['data']['end']);
  431. $this->assertStringStartsWith("Are you building your own website? Indie reader? Personal publishing web app? Or some other digital magic-cloud proxy? If so, come on by and join a gathering of people with likeminded interests. Bring your friends that want to start a personal web site. Exchange information, swap ideas, talk shop, help work on a project...", $data['data']['description']['text']);
  432. $this->assertStringEndsWith("See the Homebrew Website Club Newsletter Volume 1 Issue 1 for a description of the first meeting.", $data['data']['description']['text']);
  433. $this->assertStringStartsWith("<p>Are you building your own website? Indie reader? Personal publishing web app? Or some other digital magic-cloud proxy? If so, come on by and join a gathering of people with likeminded interests. Bring your friends that want to start a personal web site. Exchange information, swap ideas, talk shop, help work on a project...</p>", $data['data']['description']['html']);
  434. $this->assertStringEndsWith('<p>See the <a href="http://tantek.com/2013/332/b1/homebrew-website-club-newsletter">Homebrew Website Club Newsletter Volume 1 Issue 1</a> for a description of the first meeting.</p>', $data['data']['description']['html']);
  435. }
  436. public function testEventWithTextDescription() {
  437. $url = 'http://source.example.com/h-event-text-description';
  438. $response = $this->parse(['url' => $url]);
  439. $body = $response->getContent();
  440. $this->assertEquals(200, $response->getStatusCode());
  441. $data = json_decode($body, true);
  442. $this->assertEquals('mf2+html', $data['source-format']);
  443. $this->assertEquals('event', $data['data']['type']);
  444. $this->assertEquals('event', $data['data']['post-type']);
  445. $this->assertEquals('Homebrew Website Club', $data['data']['name']);
  446. $this->assertEquals($url, $data['data']['url']);
  447. $this->assertEquals('2016-03-09T18:30', $data['data']['start']);
  448. $this->assertEquals('2016-03-09T19:30', $data['data']['end']);
  449. $this->assertStringStartsWith("Are you building your own website? Indie reader? Personal publishing web app? Or some other digital magic-cloud proxy? If so, come on by and join a gathering of people with likeminded interests. Bring your friends that want to start a personal web site. Exchange information, swap ideas, talk shop, help work on a project...", $data['data']['description']['text']);
  450. $this->assertStringEndsWith("See the Homebrew Website Club Newsletter Volume 1 Issue 1 for a description of the first meeting.", $data['data']['description']['text']);
  451. $this->assertArrayNotHasKey('html', $data['data']['description']);
  452. }
  453. public function testEventWithHCardLocation() {
  454. $url = 'http://source.example.com/h-event-with-h-card-location';
  455. $response = $this->parse(['url' => $url]);
  456. $body = $response->getContent();
  457. $this->assertEquals(200, $response->getStatusCode());
  458. $data = json_decode($body, true);
  459. $this->assertEquals('mf2+html', $data['source-format']);
  460. $this->assertEquals('event', $data['data']['type']);
  461. $this->assertEquals('event', $data['data']['post-type']);
  462. $this->assertEquals('Homebrew Website Club', $data['data']['name']);
  463. $this->assertEquals($url, $data['data']['url']);
  464. $this->assertEquals('2016-02-09T18:30', $data['data']['start']);
  465. $this->assertEquals('2016-02-09T19:30', $data['data']['end']);
  466. $this->assertArrayHasKey('http://source.example.com/venue', $data['data']['refs']);
  467. $this->assertEquals('card', $data['data']['refs']['http://source.example.com/venue']['type']);
  468. $this->assertEquals('http://source.example.com/venue', $data['data']['refs']['http://source.example.com/venue']['url']);
  469. $this->assertEquals('Venue', $data['data']['refs']['http://source.example.com/venue']['name']);
  470. }
  471. public function testMf2ReviewOfProduct() {
  472. $url = 'http://source.example.com/h-review-of-product';
  473. $response = $this->parse(['url' => $url]);
  474. $body = $response->getContent();
  475. $this->assertEquals(200, $response->getStatusCode());
  476. $data = json_decode($body, true);
  477. $this->assertEquals('mf2+html', $data['source-format']);
  478. $this->assertEquals('review', $data['data']['type']);
  479. $this->assertEquals('review', $data['data']['post-type']);
  480. $this->assertEquals('Review', $data['data']['name']);
  481. $this->assertEquals('Not great', $data['data']['summary']);
  482. $this->assertEquals('3', $data['data']['rating']);
  483. $this->assertEquals('5', $data['data']['best']);
  484. $this->assertEquals('This is the full text of the review', $data['data']['content']['text']);
  485. $this->assertContains('red', $data['data']['category']);
  486. $this->assertContains('blue', $data['data']['category']);
  487. $this->assertContains('http://product.example.com/', $data['data']['item']);
  488. $this->assertArrayHasKey('http://product.example.com/', $data['data']['refs']);
  489. $this->assertEquals('product', $data['data']['refs']['http://product.example.com/']['type']);
  490. $this->assertEquals('The Reviewed Product', $data['data']['refs']['http://product.example.com/']['name']);
  491. $this->assertEquals('http://product.example.com/', $data['data']['refs']['http://product.example.com/']['url']);
  492. }
  493. public function testMf2ReviewOfHCard() {
  494. $url = 'http://source.example.com/h-review-of-h-card';
  495. $response = $this->parse(['url' => $url]);
  496. $body = $response->getContent();
  497. $this->assertEquals(200, $response->getStatusCode());
  498. $data = json_decode($body, true);
  499. $this->assertEquals('mf2+html', $data['source-format']);
  500. $this->assertEquals('review', $data['data']['type']);
  501. $this->assertEquals('review', $data['data']['post-type']);
  502. $this->assertEquals('Review', $data['data']['name']);
  503. $this->assertEquals('Not great', $data['data']['summary']);
  504. $this->assertEquals('3', $data['data']['rating']);
  505. $this->assertEquals('5', $data['data']['best']);
  506. $this->assertEquals('This is the full text of the review', $data['data']['content']['text']);
  507. $this->assertContains('http://business.example.com/', $data['data']['item']);
  508. $this->assertArrayHasKey('http://business.example.com/', $data['data']['refs']);
  509. $this->assertEquals('card', $data['data']['refs']['http://business.example.com/']['type']);
  510. $this->assertEquals('The Reviewed Business', $data['data']['refs']['http://business.example.com/']['name']);
  511. $this->assertEquals('http://business.example.com/', $data['data']['refs']['http://business.example.com/']['url']);
  512. }
  513. public function testMf1Review() {
  514. $url = 'http://source.example.com/hReview';
  515. $response = $this->parse(['url' => $url]);
  516. $body = $response->getContent();
  517. $this->assertEquals(200, $response->getStatusCode());
  518. $data = json_decode($body, true);
  519. $this->assertEquals('mf2+html', $data['source-format']);
  520. $this->assertEquals('review', $data['data']['type']);
  521. $this->assertEquals('review', $data['data']['post-type']);
  522. $this->assertEquals('Not great', $data['data']['name']);
  523. $this->assertEquals('3', $data['data']['rating']);
  524. $this->assertEquals('5', $data['data']['best']);
  525. $this->assertEquals('This is the full text of the review', $data['data']['content']['text']);
  526. $this->assertContains('http://product.example.com/', $data['data']['item']);
  527. $this->assertArrayHasKey('http://product.example.com/', $data['data']['refs']);
  528. $this->assertEquals('item', $data['data']['refs']['http://product.example.com/']['type']);
  529. $this->assertEquals('The Reviewed Product', $data['data']['refs']['http://product.example.com/']['name']);
  530. $this->assertEquals('http://product.example.com/', $data['data']['refs']['http://product.example.com/']['url']);
  531. }
  532. public function testMf2Recipe() {
  533. $url = 'http://source.example.com/h-recipe';
  534. $response = $this->parse(['url' => $url]);
  535. $body = $response->getContent();
  536. $this->assertEquals(200, $response->getStatusCode());
  537. $data = json_decode($body, true);
  538. $this->assertEquals('mf2+html', $data['source-format']);
  539. $this->assertEquals('recipe', $data['data']['type']);
  540. $this->assertEquals('recipe', $data['data']['post-type']);
  541. $this->assertEquals('Cookie Recipe', $data['data']['name']);
  542. $this->assertEquals('12 Cookies', $data['data']['yield']);
  543. $this->assertEquals('PT30M', $data['data']['duration']);
  544. $this->assertEquals('The best chocolate chip cookie recipe', $data['data']['summary']);
  545. $this->assertContains('3 cups flour', $data['data']['ingredient']);
  546. $this->assertContains('chocolate chips', $data['data']['ingredient']);
  547. }
  548. public function testEntryIsAnInvitee() {
  549. $url = 'http://source.example.com/bridgy-invitee';
  550. $response = $this->parse(['url' => $url]);
  551. $body = $response->getContent();
  552. $this->assertEquals(200, $response->getStatusCode());
  553. $data = json_decode($body, true);
  554. $this->assertEquals('mf2+html', $data['source-format']);
  555. $this->assertEquals('entry', $data['data']['type']);
  556. $this->assertEquals('https://www.facebook.com/555707837940351#tantek', $data['data']['url']);
  557. $this->assertContains('https://www.facebook.com/tantek.celik', $data['data']['invitee']);
  558. $this->assertArrayHasKey('https://www.facebook.com/tantek.celik', $data['data']['refs']);
  559. $this->assertEquals('Tantek Çelik', $data['data']['refs']['https://www.facebook.com/tantek.celik']['name']);
  560. }
  561. public function testEntryAtFragmentID() {
  562. $url = 'http://source.example.com/fragment-id#comment-1000';
  563. $response = $this->parse(['url' => $url]);
  564. $body = $response->getContent();
  565. $this->assertEquals(200, $response->getStatusCode());
  566. $data = json_decode($body, true);
  567. $this->assertEquals('mf2+html', $data['source-format']);
  568. $this->assertEquals('entry', $data['data']['type']);
  569. $this->assertEquals('note', $data['data']['post-type']);
  570. $this->assertEquals('Comment text', $data['data']['content']['text']);
  571. $this->assertEquals('http://source.example.com/fragment-id#comment-1000', $data['data']['url']);
  572. $this->assertTrue($data['info']['found_fragment']);
  573. }
  574. public function testEntryAtNonExistentFragmentID() {
  575. $url = 'http://source.example.com/fragment-id#comment-404';
  576. $response = $this->parse(['url' => $url]);
  577. $body = $response->getContent();
  578. $this->assertEquals(200, $response->getStatusCode());
  579. $data = json_decode($body, true);
  580. $this->assertEquals('mf2+html', $data['source-format']);
  581. $this->assertEquals('entry', $data['data']['type']);
  582. $this->assertEquals('http://source.example.com/fragment-id', $data['data']['url']);
  583. $this->assertFalse($data['info']['found_fragment']);
  584. }
  585. public function testCheckin() {
  586. $url = 'http://source.example.com/checkin';
  587. $response = $this->parse(['url' => $url]);
  588. $body = $response->getContent();
  589. $this->assertEquals(200, $response->getStatusCode());
  590. $data = json_decode($body, true);
  591. $this->assertEquals('mf2+html', $data['source-format']);
  592. $this->assertEquals('entry', $data['data']['type']);
  593. $venue = $data['data']['checkin'];
  594. $this->assertEquals('checkin', $data['data']['post-type']);
  595. $this->assertEquals('https://foursquare.com/v/57104d2e498ece022e169dca', $venue['url']);
  596. $this->assertEquals('DreamHost', $venue['name']);
  597. $this->assertEquals('45.518716', $venue['latitude']);
  598. $this->assertEquals('Homebrew Website Club!', $data['data']['content']['text']);
  599. $this->assertEquals('https://aaronparecki.com/2017/06/07/12/photo.jpg', $data['data']['photo'][0]);
  600. $this->assertEquals('2017-06-07T17:14:40-07:00', $data['data']['published']);
  601. $this->assertArrayNotHasKey('name', $data['data']);
  602. }
  603. public function testCheckinURLOnly() {
  604. $url = 'http://source.example.com/checkin-url';
  605. $response = $this->parse(['url' => $url]);
  606. $body = $response->getContent();
  607. $this->assertEquals(200, $response->getStatusCode());
  608. $data = json_decode($body, true);
  609. $this->assertEquals('mf2+html', $data['source-format']);
  610. $this->assertEquals('entry', $data['data']['type']);
  611. $this->assertEquals('checkin', $data['data']['post-type']);
  612. $venue = $data['data']['checkin'];
  613. $this->assertEquals('https://foursquare.com/v/57104d2e498ece022e169dca', $venue['url']);
  614. $this->assertEquals('Homebrew Website Club!', $data['data']['content']['text']);
  615. $this->assertEquals('https://aaronparecki.com/2017/06/07/12/photo.jpg', $data['data']['photo'][0]);
  616. $this->assertEquals('2017-06-07T17:14:40-07:00', $data['data']['published']);
  617. $this->assertArrayNotHasKey('name', $data['data']);
  618. }
  619. public function testXKCD() {
  620. $url = 'http://xkcd.com/1810/';
  621. $response = $this->parse(['url' => $url]);
  622. $body = $response->getContent();
  623. $this->assertEquals(200, $response->getStatusCode());
  624. $data = json_decode($body, true);
  625. $this->assertEquals(200, $data['code']);
  626. $this->assertEquals('xkcd', $data['source-format']);
  627. $this->assertEquals('entry', $data['data']['type']);
  628. $this->assertEquals('photo', $data['data']['post-type']);
  629. $this->assertEquals('http://xkcd.com/1810/', $data['data']['url']);
  630. $this->assertEquals('Chat Systems', $data['data']['name']);
  631. $this->assertContains('http://imgs.xkcd.com/comics/chat_systems_2x.png', $data['data']['photo']);
  632. }
  633. public function testEntryHasMultipleURLs() {
  634. $url = 'http://source.example.com/multiple-urls';
  635. $response = $this->parse(['url' => $url]);
  636. $body = $response->getContent();
  637. $this->assertEquals(200, $response->getStatusCode());
  638. $data = json_decode($body, true);
  639. // Should prioritize the URL on the same domain
  640. $this->assertEquals($url, $data['data']['url']);
  641. }
  642. public function testEntryHasMultipleURLsOffDomain() {
  643. $url = 'http://source.example.com/multiple-urls-off-domain';
  644. $response = $this->parse(['url' => $url]);
  645. $body = $response->getContent();
  646. $this->assertEquals(200, $response->getStatusCode());
  647. $data = json_decode($body, true);
  648. // Neither URL is on the same domain, so should use the first
  649. $this->assertEquals('http://one.example.com/test', $data['data']['url']);
  650. }
  651. public function testInputIsParsedMf2() {
  652. $html = '<div class="h-entry"><p class="p-content p-name">Hello World</p><img src="/photo.jpg"></p></div>';
  653. $mf2 = Mf2\parse($html, 'http://example.com/entry');
  654. $url = 'http://example.com/entry';
  655. $response = $this->parse([
  656. 'url' => $url,
  657. 'body' => json_encode($mf2)
  658. ]);
  659. $body = $response->getContent();
  660. $this->assertEquals(200, $response->getStatusCode());
  661. $data = json_decode($body, true);
  662. $this->assertEquals('mf2+json', $data['source-format']);
  663. $this->assertEquals('Hello World', $data['data']['content']['text']);
  664. $this->assertEquals('http://example.com/photo.jpg', $data['data']['photo'][0]);
  665. }
  666. public function testInputIsParsedMf2WithHTML() {
  667. $html = '<div class="h-entry"><p class="e-content p-name"><b>Hello</b> <i>World</i></p><img src="/photo.jpg"></p></div>';
  668. $mf2 = Mf2\parse($html, 'http://example.com/entry');
  669. $url = 'http://example.com/entry';
  670. $response = $this->parse([
  671. 'url' => $url,
  672. 'body' => json_encode($mf2)
  673. ]);
  674. $body = $response->getContent();
  675. $this->assertEquals(200, $response->getStatusCode());
  676. $data = json_decode($body, true);
  677. $this->assertEquals('mf2+json', $data['source-format']);
  678. $this->assertEquals('Hello World', $data['data']['content']['text']);
  679. $this->assertEquals('<b>Hello</b> <i>World</i>', $data['data']['content']['html']);
  680. $this->assertEquals('http://example.com/photo.jpg', $data['data']['photo'][0]);
  681. }
  682. public function testHApp() {
  683. $url = 'http://source.example.com/h-app';
  684. $response = $this->parse(['url' => $url]);
  685. $body = $response->getContent();
  686. $this->assertEquals(200, $response->getStatusCode());
  687. $data = json_decode($body, true);
  688. $this->assertEquals('mf2+html', $data['source-format']);
  689. $this->assertEquals('app', $data['data']['type']);
  690. $this->assertEquals('http://source.example.com/images/quill.png', $data['data']['logo']);
  691. $this->assertEquals('Quill', $data['data']['name']);
  692. $this->assertEquals($url, $data['data']['url']);
  693. $this->assertEquals(['http://source.example.com/redirect1','http://source.example.com/redirect2'], $data['data']['redirect-uri']);
  694. $this->assertArrayNotHasKey('photo', $data['data']);
  695. }
  696. public function testHXApp() {
  697. $url = 'http://source.example.com/h-x-app';
  698. $response = $this->parse(['url' => $url]);
  699. $body = $response->getContent();
  700. $this->assertEquals(200, $response->getStatusCode());
  701. $data = json_decode($body);
  702. $this->assertEquals('mf2+html', $data->{'source-format'});
  703. $this->assertEquals('app', $data->data->type);
  704. $this->assertEquals('http://source.example.com/images/quill.png', $data->data->logo);
  705. $this->assertEquals('Quill', $data->data->name);
  706. $this->assertEquals($url, $data->data->url);
  707. $this->assertObjectNotHasAttribute('photo', $data->data);
  708. }
  709. public function testDuplicateReplyURLValues() {
  710. $url = 'http://source.example.com/duplicate-in-reply-to-urls';
  711. $response = $this->parse(['url' => $url]);
  712. $body = $response->getContent();
  713. $this->assertEquals(200, $response->getStatusCode());
  714. $data = json_decode($body, true);
  715. $this->assertEquals('http://example.com/100', $data['data']['in-reply-to'][0]);
  716. $this->assertEquals(1, count($data['data']['in-reply-to']));
  717. }
  718. public function testDuplicateLikeOfURLValues() {
  719. $url = 'http://source.example.com/duplicate-like-of-urls';
  720. $response = $this->parse(['url' => $url]);
  721. $body = $response->getContent();
  722. $this->assertEquals(200, $response->getStatusCode());
  723. $data = json_decode($body, true);
  724. $this->assertEquals('http://example.com/100', $data['data']['like-of'][0]);
  725. $this->assertEquals(1, count($data['data']['like-of']));
  726. }
  727. public function testQuotationOf() {
  728. $url = 'http://source.example.com/quotation-of';
  729. $response = $this->parse(['url' => $url]);
  730. $body = $response->getContent();
  731. $this->assertEquals(200, $response->getStatusCode());
  732. $data = json_decode($body, true);
  733. $this->assertEquals('I’m so making this into a t-shirt', $data['data']['content']['text']);
  734. $this->assertEquals('https://twitter.com/gitlost/status/1015005409726357504', $data['data']['quotation-of']);
  735. $this->assertArrayHasKey('https://twitter.com/gitlost/status/1015005409726357504', $data['data']['refs']);
  736. $q = $data['data']['refs']['https://twitter.com/gitlost/status/1015005409726357504'];
  737. $this->assertEquals("Still can't git fer shit", $q['content']['text']);
  738. $this->assertEquals('2018-07-05T22:52:02+00:00', $q['published']);
  739. }
  740. public function testHTML5Markup() {
  741. $url = 'http://source.example.com/html5-tags';
  742. $response = $this->parse(['url' => $url]);
  743. $body = $response->getContent();
  744. $this->assertEquals(200, $response->getStatusCode());
  745. $data = json_decode($body, true);
  746. $this->assertEquals('Hello World', $data['data']['name']);
  747. $this->assertEquals('The content of the blog post', $data['data']['content']['text']);
  748. }
  749. public function testRelAlternateToMf2JSON() {
  750. $url = 'http://source.example.com/rel-alternate-mf2-json';
  751. $response = $this->parse(['url' => $url]);
  752. $body = $response->getContent();
  753. $this->assertEquals(200, $response->getStatusCode());
  754. $data = json_decode($body, true);
  755. $this->assertEquals('mf2+json', $data['source-format']);
  756. $this->assertEquals('http://source.example.com/rel-alternate-mf2-json.json', $data['parsed-url']);
  757. $this->assertEquals('Pretty great to see a new self-hosted IndieAuth server! Congrats @nilshauk, and great project name! https://twitter.com/nilshauk/status/1017485223716630528', $data['data']['content']['text']);
  758. }
  759. public function testRelAlternateToNotFoundURL() {
  760. $url = 'http://source.example.com/rel-alternate-not-found';
  761. $response = $this->parse(['url' => $url]);
  762. $body = $response->getContent();
  763. $this->assertEquals(200, $response->getStatusCode());
  764. $data = json_decode($body, true);
  765. $this->assertEquals('mf2+html', $data['source-format']);
  766. $this->assertArrayNotHasKey('parsed-url', $data);
  767. $this->assertEquals('Test content with a rel alternate link to a 404 page', $data['data']['content']['text']);
  768. }
  769. public function testRelAlternatePrioritizesJSON() {
  770. $url = 'http://source.example.com/rel-alternate-priority';
  771. $response = $this->parse(['url' => $url]);
  772. $body = $response->getContent();
  773. $this->assertEquals(200, $response->getStatusCode());
  774. $data = json_decode($body, true);
  775. $this->assertEquals('mf2+json', $data['source-format']);
  776. $this->assertEquals('http://source.example.com/rel-alternate-priority.json', $data['parsed-url']);
  777. $this->assertEquals('This should be the content from XRay', $data['data']['content']['text']);
  778. }
  779. public function testRelAlternatePrioritizesMf2OverAS2() {
  780. $url = 'http://source.example.com/rel-alternate-priority-mf2-as2';
  781. $response = $this->parse(['url' => $url]);
  782. $body = $response->getContent();
  783. $this->assertEquals(200, $response->getStatusCode());
  784. $data = json_decode($body, true);
  785. $this->assertEquals('mf2+json', $data['source-format']);
  786. $this->assertEquals('http://source.example.com/rel-alternate-priority.json', $data['parsed-url']);
  787. $this->assertEquals('This should be the content from XRay', $data['data']['content']['text']);
  788. }
  789. public function testRelAlternateFallsBackOnInvalidJSON() {
  790. $url = 'http://source.example.com/rel-alternate-fallback';
  791. $response = $this->parse(['url' => $url]);
  792. $body = $response->getContent();
  793. $this->assertEquals(200, $response->getStatusCode());
  794. $data = json_decode($body, true);
  795. $this->assertEquals('mf2+html', $data['source-format']);
  796. $this->assertArrayNotHasKey('parsed-url', $data);
  797. $this->assertEquals('XRay should use this content since the JSON in the rel-alternate is invalid', $data['data']['content']['text']);
  798. }
  799. public function testMultipleContentTypeHeaders() {
  800. $url = 'http://source.example.com/multiple-content-type';
  801. $response = $this->parse(['url' => $url]);
  802. $body = $response->getContent();
  803. $this->assertEquals(200, $response->getStatusCode());
  804. $data = json_decode($body, true);
  805. $this->assertEquals('mf2+html', $data['source-format']);
  806. }
  807. }