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.

973 lines
43 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']['content']['text']);
  432. $this->assertStringEndsWith("See the Homebrew Website Club Newsletter Volume 1 Issue 1 for a description of the first meeting.", $data['data']['content']['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']['content']['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']['content']['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']['content']['text']);
  450. $this->assertStringEndsWith("See the Homebrew Website Club Newsletter Volume 1 Issue 1 for a description of the first meeting.", $data['data']['content']['text']);
  451. $this->assertArrayNotHasKey('html', $data['data']['content']);
  452. }
  453. public function testEventWithTextContent() {
  454. $url = 'http://source.example.com/h-event-text-content';
  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-03-09T18:30', $data['data']['start']);
  465. $this->assertEquals('2016-03-09T19:30', $data['data']['end']);
  466. $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']['content']['text']);
  467. $this->assertStringEndsWith("See the Homebrew Website Club Newsletter Volume 1 Issue 1 for a description of the first meeting.", $data['data']['content']['text']);
  468. $this->assertArrayNotHasKey('html', $data['data']['content']);
  469. }
  470. public function testEventWithHCardLocation() {
  471. $url = 'http://source.example.com/h-event-with-h-card-location';
  472. $response = $this->parse(['url' => $url]);
  473. $body = $response->getContent();
  474. $this->assertEquals(200, $response->getStatusCode());
  475. $data = json_decode($body, true);
  476. $this->assertEquals('mf2+html', $data['source-format']);
  477. $this->assertEquals('event', $data['data']['type']);
  478. $this->assertEquals('event', $data['data']['post-type']);
  479. $this->assertEquals('Homebrew Website Club', $data['data']['name']);
  480. $this->assertEquals($url, $data['data']['url']);
  481. $this->assertEquals('2016-02-09T18:30', $data['data']['start']);
  482. $this->assertEquals('2016-02-09T19:30', $data['data']['end']);
  483. $this->assertArrayHasKey('http://source.example.com/venue', $data['data']['refs']);
  484. $this->assertEquals('card', $data['data']['refs']['http://source.example.com/venue']['type']);
  485. $this->assertEquals('http://source.example.com/venue', $data['data']['refs']['http://source.example.com/venue']['url']);
  486. $this->assertEquals('Venue', $data['data']['refs']['http://source.example.com/venue']['name']);
  487. }
  488. public function testMf2ReviewOfProduct() {
  489. $url = 'http://source.example.com/h-review-of-product';
  490. $response = $this->parse(['url' => $url]);
  491. $body = $response->getContent();
  492. $this->assertEquals(200, $response->getStatusCode());
  493. $data = json_decode($body, true);
  494. $this->assertEquals('mf2+html', $data['source-format']);
  495. $this->assertEquals('review', $data['data']['type']);
  496. $this->assertEquals('review', $data['data']['post-type']);
  497. $this->assertEquals('Review', $data['data']['name']);
  498. $this->assertEquals('Not great', $data['data']['summary']);
  499. $this->assertEquals('3', $data['data']['rating']);
  500. $this->assertEquals('5', $data['data']['best']);
  501. $this->assertEquals('This is the full text of the review', $data['data']['content']['text']);
  502. $this->assertContains('red', $data['data']['category']);
  503. $this->assertContains('blue', $data['data']['category']);
  504. $this->assertContains('http://product.example.com/', $data['data']['item']);
  505. $this->assertArrayHasKey('http://product.example.com/', $data['data']['refs']);
  506. $this->assertEquals('product', $data['data']['refs']['http://product.example.com/']['type']);
  507. $this->assertEquals('The Reviewed Product', $data['data']['refs']['http://product.example.com/']['name']);
  508. $this->assertEquals('http://product.example.com/', $data['data']['refs']['http://product.example.com/']['url']);
  509. }
  510. public function testMf2ReviewOfHCard() {
  511. $url = 'http://source.example.com/h-review-of-h-card';
  512. $response = $this->parse(['url' => $url]);
  513. $body = $response->getContent();
  514. $this->assertEquals(200, $response->getStatusCode());
  515. $data = json_decode($body, true);
  516. $this->assertEquals('mf2+html', $data['source-format']);
  517. $this->assertEquals('review', $data['data']['type']);
  518. $this->assertEquals('review', $data['data']['post-type']);
  519. $this->assertEquals('Review', $data['data']['name']);
  520. $this->assertEquals('Not great', $data['data']['summary']);
  521. $this->assertEquals('3', $data['data']['rating']);
  522. $this->assertEquals('5', $data['data']['best']);
  523. $this->assertEquals('This is the full text of the review', $data['data']['content']['text']);
  524. $this->assertContains('http://business.example.com/', $data['data']['item']);
  525. $this->assertArrayHasKey('http://business.example.com/', $data['data']['refs']);
  526. $this->assertEquals('card', $data['data']['refs']['http://business.example.com/']['type']);
  527. $this->assertEquals('The Reviewed Business', $data['data']['refs']['http://business.example.com/']['name']);
  528. $this->assertEquals('http://business.example.com/', $data['data']['refs']['http://business.example.com/']['url']);
  529. }
  530. public function testMf1Review() {
  531. $url = 'http://source.example.com/hReview';
  532. $response = $this->parse(['url' => $url]);
  533. $body = $response->getContent();
  534. $this->assertEquals(200, $response->getStatusCode());
  535. $data = json_decode($body, true);
  536. $this->assertEquals('mf2+html', $data['source-format']);
  537. $this->assertEquals('review', $data['data']['type']);
  538. $this->assertEquals('review', $data['data']['post-type']);
  539. $this->assertEquals('Not great', $data['data']['name']);
  540. $this->assertEquals('3', $data['data']['rating']);
  541. $this->assertEquals('5', $data['data']['best']);
  542. $this->assertEquals('This is the full text of the review', $data['data']['content']['text']);
  543. $this->assertContains('http://product.example.com/', $data['data']['item']);
  544. $this->assertArrayHasKey('http://product.example.com/', $data['data']['refs']);
  545. $this->assertEquals('item', $data['data']['refs']['http://product.example.com/']['type']);
  546. $this->assertEquals('The Reviewed Product', $data['data']['refs']['http://product.example.com/']['name']);
  547. $this->assertEquals('http://product.example.com/', $data['data']['refs']['http://product.example.com/']['url']);
  548. }
  549. public function testMf2Recipe() {
  550. $url = 'http://source.example.com/h-recipe';
  551. $response = $this->parse(['url' => $url]);
  552. $body = $response->getContent();
  553. $this->assertEquals(200, $response->getStatusCode());
  554. $data = json_decode($body, true);
  555. $this->assertEquals('mf2+html', $data['source-format']);
  556. $this->assertEquals('recipe', $data['data']['type']);
  557. $this->assertEquals('recipe', $data['data']['post-type']);
  558. $this->assertEquals('Cookie Recipe', $data['data']['name']);
  559. $this->assertEquals('12 Cookies', $data['data']['yield']);
  560. $this->assertEquals('PT30M', $data['data']['duration']);
  561. $this->assertEquals('The best chocolate chip cookie recipe', $data['data']['summary']);
  562. $this->assertContains('3 cups flour', $data['data']['ingredient']);
  563. $this->assertContains('chocolate chips', $data['data']['ingredient']);
  564. }
  565. public function testEntryIsAnInvitee() {
  566. $url = 'http://source.example.com/bridgy-invitee';
  567. $response = $this->parse(['url' => $url]);
  568. $body = $response->getContent();
  569. $this->assertEquals(200, $response->getStatusCode());
  570. $data = json_decode($body, true);
  571. $this->assertEquals('mf2+html', $data['source-format']);
  572. $this->assertEquals('entry', $data['data']['type']);
  573. $this->assertEquals('https://www.facebook.com/555707837940351#tantek', $data['data']['url']);
  574. $this->assertContains('https://www.facebook.com/tantek.celik', $data['data']['invitee']);
  575. $this->assertArrayHasKey('https://www.facebook.com/tantek.celik', $data['data']['refs']);
  576. $this->assertEquals('Tantek Çelik', $data['data']['refs']['https://www.facebook.com/tantek.celik']['name']);
  577. }
  578. public function testEntryAtFragmentID() {
  579. $url = 'http://source.example.com/fragment-id#comment-1000';
  580. $response = $this->parse(['url' => $url]);
  581. $body = $response->getContent();
  582. $this->assertEquals(200, $response->getStatusCode());
  583. $data = json_decode($body, true);
  584. $this->assertEquals('mf2+html', $data['source-format']);
  585. $this->assertEquals('entry', $data['data']['type']);
  586. $this->assertEquals('note', $data['data']['post-type']);
  587. $this->assertEquals('Comment text', $data['data']['content']['text']);
  588. $this->assertEquals('http://source.example.com/fragment-id#comment-1000', $data['data']['url']);
  589. $this->assertTrue($data['info']['found_fragment']);
  590. }
  591. public function testEntryAtNonExistentFragmentID() {
  592. $url = 'http://source.example.com/fragment-id#comment-404';
  593. $response = $this->parse(['url' => $url]);
  594. $body = $response->getContent();
  595. $this->assertEquals(200, $response->getStatusCode());
  596. $data = json_decode($body, true);
  597. $this->assertEquals('mf2+html', $data['source-format']);
  598. $this->assertEquals('entry', $data['data']['type']);
  599. $this->assertEquals('http://source.example.com/fragment-id', $data['data']['url']);
  600. $this->assertFalse($data['info']['found_fragment']);
  601. }
  602. public function testCheckin() {
  603. $url = 'http://source.example.com/checkin';
  604. $response = $this->parse(['url' => $url]);
  605. $body = $response->getContent();
  606. $this->assertEquals(200, $response->getStatusCode());
  607. $data = json_decode($body, true);
  608. $this->assertEquals('mf2+html', $data['source-format']);
  609. $this->assertEquals('entry', $data['data']['type']);
  610. $venue = $data['data']['checkin'];
  611. $this->assertEquals('checkin', $data['data']['post-type']);
  612. $this->assertEquals('https://foursquare.com/v/57104d2e498ece022e169dca', $venue['url']);
  613. $this->assertEquals('DreamHost', $venue['name']);
  614. $this->assertEquals('45.518716', $venue['latitude']);
  615. $this->assertEquals('Homebrew Website Club!', $data['data']['content']['text']);
  616. $this->assertEquals('https://aaronparecki.com/2017/06/07/12/photo.jpg', $data['data']['photo'][0]);
  617. $this->assertEquals('2017-06-07T17:14:40-07:00', $data['data']['published']);
  618. $this->assertArrayNotHasKey('name', $data['data']);
  619. }
  620. public function testCheckinURLOnly() {
  621. $url = 'http://source.example.com/checkin-url';
  622. $response = $this->parse(['url' => $url]);
  623. $body = $response->getContent();
  624. $this->assertEquals(200, $response->getStatusCode());
  625. $data = json_decode($body, true);
  626. $this->assertEquals('mf2+html', $data['source-format']);
  627. $this->assertEquals('entry', $data['data']['type']);
  628. $this->assertEquals('checkin', $data['data']['post-type']);
  629. $venue = $data['data']['checkin'];
  630. $this->assertEquals('https://foursquare.com/v/57104d2e498ece022e169dca', $venue['url']);
  631. $this->assertEquals('Homebrew Website Club!', $data['data']['content']['text']);
  632. $this->assertEquals('https://aaronparecki.com/2017/06/07/12/photo.jpg', $data['data']['photo'][0]);
  633. $this->assertEquals('2017-06-07T17:14:40-07:00', $data['data']['published']);
  634. $this->assertArrayNotHasKey('name', $data['data']);
  635. }
  636. public function testXKCD() {
  637. $url = 'http://xkcd.com/1810/';
  638. $response = $this->parse(['url' => $url]);
  639. $body = $response->getContent();
  640. $this->assertEquals(200, $response->getStatusCode());
  641. $data = json_decode($body, true);
  642. $this->assertEquals(200, $data['code']);
  643. $this->assertEquals('xkcd', $data['source-format']);
  644. $this->assertEquals('entry', $data['data']['type']);
  645. $this->assertEquals('photo', $data['data']['post-type']);
  646. $this->assertEquals('http://xkcd.com/1810/', $data['data']['url']);
  647. $this->assertEquals('Chat Systems', $data['data']['name']);
  648. $this->assertContains('http://imgs.xkcd.com/comics/chat_systems_2x.png', $data['data']['photo']);
  649. }
  650. public function testEntryHasMultipleURLs() {
  651. $url = 'http://source.example.com/multiple-urls';
  652. $response = $this->parse(['url' => $url]);
  653. $body = $response->getContent();
  654. $this->assertEquals(200, $response->getStatusCode());
  655. $data = json_decode($body, true);
  656. // Should prioritize the URL on the same domain
  657. $this->assertEquals($url, $data['data']['url']);
  658. }
  659. public function testEntryHasMultipleURLsOffDomain() {
  660. $url = 'http://source.example.com/multiple-urls-off-domain';
  661. $response = $this->parse(['url' => $url]);
  662. $body = $response->getContent();
  663. $this->assertEquals(200, $response->getStatusCode());
  664. $data = json_decode($body, true);
  665. // Neither URL is on the same domain, so should use the first
  666. $this->assertEquals('http://one.example.com/test', $data['data']['url']);
  667. }
  668. public function testInputIsParsedMf2() {
  669. $html = '<div class="h-entry"><p class="p-content p-name">Hello World</p><img src="/photo.jpg"></p></div>';
  670. $mf2 = Mf2\parse($html, 'http://example.com/entry');
  671. $url = 'http://example.com/entry';
  672. $response = $this->parse([
  673. 'url' => $url,
  674. 'body' => json_encode($mf2)
  675. ]);
  676. $body = $response->getContent();
  677. $this->assertEquals(200, $response->getStatusCode());
  678. $data = json_decode($body, true);
  679. $this->assertEquals('mf2+json', $data['source-format']);
  680. $this->assertEquals('Hello World', $data['data']['content']['text']);
  681. $this->assertEquals('http://example.com/photo.jpg', $data['data']['photo'][0]);
  682. }
  683. public function testInputIsParsedMf2WithHTML() {
  684. $html = '<div class="h-entry"><p class="e-content p-name"><b>Hello</b> <i>World</i></p><img src="/photo.jpg"></p></div>';
  685. $mf2 = Mf2\parse($html, 'http://example.com/entry');
  686. $url = 'http://example.com/entry';
  687. $response = $this->parse([
  688. 'url' => $url,
  689. 'body' => json_encode($mf2)
  690. ]);
  691. $body = $response->getContent();
  692. $this->assertEquals(200, $response->getStatusCode());
  693. $data = json_decode($body, true);
  694. $this->assertEquals('mf2+json', $data['source-format']);
  695. $this->assertEquals('Hello World', $data['data']['content']['text']);
  696. $this->assertEquals('<b>Hello</b> <i>World</i>', $data['data']['content']['html']);
  697. $this->assertEquals('http://example.com/photo.jpg', $data['data']['photo'][0]);
  698. }
  699. public function testHApp() {
  700. $url = 'http://source.example.com/h-app';
  701. $response = $this->parse(['url' => $url]);
  702. $body = $response->getContent();
  703. $this->assertEquals(200, $response->getStatusCode());
  704. $data = json_decode($body, true);
  705. $this->assertEquals('mf2+html', $data['source-format']);
  706. $this->assertEquals('app', $data['data']['type']);
  707. $this->assertEquals('http://source.example.com/images/quill.png', $data['data']['logo']);
  708. $this->assertEquals('Quill', $data['data']['name']);
  709. $this->assertEquals($url, $data['data']['url']);
  710. $this->assertEquals(['http://source.example.com/redirect1','http://source.example.com/redirect2'], $data['data']['redirect-uri']);
  711. $this->assertArrayNotHasKey('photo', $data['data']);
  712. }
  713. public function testHXApp() {
  714. $url = 'http://source.example.com/h-x-app';
  715. $response = $this->parse(['url' => $url]);
  716. $body = $response->getContent();
  717. $this->assertEquals(200, $response->getStatusCode());
  718. $data = json_decode($body);
  719. $this->assertEquals('mf2+html', $data->{'source-format'});
  720. $this->assertEquals('app', $data->data->type);
  721. $this->assertEquals('http://source.example.com/images/quill.png', $data->data->logo);
  722. $this->assertEquals('Quill', $data->data->name);
  723. $this->assertEquals($url, $data->data->url);
  724. $this->assertObjectNotHasAttribute('photo', $data->data);
  725. }
  726. public function testDuplicateReplyURLValues() {
  727. $url = 'http://source.example.com/duplicate-in-reply-to-urls';
  728. $response = $this->parse(['url' => $url]);
  729. $body = $response->getContent();
  730. $this->assertEquals(200, $response->getStatusCode());
  731. $data = json_decode($body, true);
  732. $this->assertEquals('http://example.com/100', $data['data']['in-reply-to'][0]);
  733. $this->assertEquals(1, count($data['data']['in-reply-to']));
  734. }
  735. public function testDuplicateLikeOfURLValues() {
  736. $url = 'http://source.example.com/duplicate-like-of-urls';
  737. $response = $this->parse(['url' => $url]);
  738. $body = $response->getContent();
  739. $this->assertEquals(200, $response->getStatusCode());
  740. $data = json_decode($body, true);
  741. $this->assertEquals('http://example.com/100', $data['data']['like-of'][0]);
  742. $this->assertEquals(1, count($data['data']['like-of']));
  743. }
  744. public function testQuotationOf() {
  745. $url = 'http://source.example.com/quotation-of';
  746. $response = $this->parse(['url' => $url]);
  747. $body = $response->getContent();
  748. $this->assertEquals(200, $response->getStatusCode());
  749. $data = json_decode($body, true);
  750. $this->assertEquals('I’m so making this into a t-shirt', $data['data']['content']['text']);
  751. $this->assertEquals('https://twitter.com/gitlost/status/1015005409726357504', $data['data']['quotation-of']);
  752. $this->assertArrayHasKey('https://twitter.com/gitlost/status/1015005409726357504', $data['data']['refs']);
  753. $q = $data['data']['refs']['https://twitter.com/gitlost/status/1015005409726357504'];
  754. $this->assertEquals("Still can't git fer shit", $q['content']['text']);
  755. $this->assertEquals('2018-07-05T22:52:02+00:00', $q['published']);
  756. }
  757. public function testHTML5Markup() {
  758. $url = 'http://source.example.com/html5-tags';
  759. $response = $this->parse(['url' => $url]);
  760. $body = $response->getContent();
  761. $this->assertEquals(200, $response->getStatusCode());
  762. $data = json_decode($body, true);
  763. $this->assertEquals('Hello World', $data['data']['name']);
  764. $this->assertEquals('The content of the blog post', $data['data']['content']['text']);
  765. }
  766. public function testRelAlternateToMf2JSON() {
  767. $url = 'http://source.example.com/rel-alternate-mf2-json';
  768. $response = $this->parse(['url' => $url]);
  769. $body = $response->getContent();
  770. $this->assertEquals(200, $response->getStatusCode());
  771. $data = json_decode($body, true);
  772. $this->assertEquals('mf2+json', $data['source-format']);
  773. $this->assertEquals('http://source.example.com/rel-alternate-mf2-json.json', $data['parsed-url']);
  774. $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']);
  775. }
  776. public function testRelAlternateToNotFoundURL() {
  777. $url = 'http://source.example.com/rel-alternate-not-found';
  778. $response = $this->parse(['url' => $url]);
  779. $body = $response->getContent();
  780. $this->assertEquals(200, $response->getStatusCode());
  781. $data = json_decode($body, true);
  782. $this->assertEquals('mf2+html', $data['source-format']);
  783. $this->assertArrayNotHasKey('parsed-url', $data);
  784. $this->assertEquals('Test content with a rel alternate link to a 404 page', $data['data']['content']['text']);
  785. }
  786. public function testRelAlternatePrioritizesJSON() {
  787. $url = 'http://source.example.com/rel-alternate-priority';
  788. $response = $this->parse(['url' => $url]);
  789. $body = $response->getContent();
  790. $this->assertEquals(200, $response->getStatusCode());
  791. $data = json_decode($body, true);
  792. $this->assertEquals('mf2+json', $data['source-format']);
  793. $this->assertEquals('http://source.example.com/rel-alternate-priority.json', $data['parsed-url']);
  794. $this->assertEquals('This should be the content from XRay', $data['data']['content']['text']);
  795. }
  796. public function testRelAlternatePrioritizesMf2OverAS2() {
  797. $url = 'http://source.example.com/rel-alternate-priority-mf2-as2';
  798. $response = $this->parse(['url' => $url]);
  799. $body = $response->getContent();
  800. $this->assertEquals(200, $response->getStatusCode());
  801. $data = json_decode($body, true);
  802. $this->assertEquals('mf2+json', $data['source-format']);
  803. $this->assertEquals('http://source.example.com/rel-alternate-priority.json', $data['parsed-url']);
  804. $this->assertEquals('This should be the content from XRay', $data['data']['content']['text']);
  805. }
  806. public function testRelAlternateFallsBackOnInvalidJSON() {
  807. $url = 'http://source.example.com/rel-alternate-fallback';
  808. $response = $this->parse(['url' => $url]);
  809. $body = $response->getContent();
  810. $this->assertEquals(200, $response->getStatusCode());
  811. $data = json_decode($body, true);
  812. $this->assertEquals('mf2+html', $data['source-format']);
  813. $this->assertArrayNotHasKey('parsed-url', $data);
  814. $this->assertEquals('XRay should use this content since the JSON in the rel-alternate is invalid', $data['data']['content']['text']);
  815. }
  816. public function testMultipleContentTypeHeaders() {
  817. $url = 'http://source.example.com/multiple-content-type';
  818. $response = $this->parse(['url' => $url]);
  819. $body = $response->getContent();
  820. $this->assertEquals(200, $response->getStatusCode());
  821. $data = json_decode($body, true);
  822. $this->assertEquals('mf2+html', $data['source-format']);
  823. }
  824. }