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.

340 lines
16 KiB

8 years ago
  1. <?php
  2. use Symfony\Component\HttpFoundation\Request;
  3. use Symfony\Component\HttpFoundation\Response;
  4. class SanitizeTest 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 testAllowsWhitelistedTags() {
  17. $url = 'http://sanitize.example/entry-with-valid-tags';
  18. $response = $this->parse(['url' => $url]);
  19. $body = $response->getContent();
  20. $this->assertEquals(200, $response->getStatusCode());
  21. $data = json_decode($body, true);
  22. $html = $data['data']['content']['html'];
  23. $this->assertEquals('entry', $data['data']['type']);
  24. $this->assertContains('This content has only valid tags.', $html);
  25. $this->assertContains('<a href="http://sanitize.example/example">links</a>,', $html, '<a> missing');
  26. $this->assertContains('<abbr>abbreviations</abbr>,', $html, '<abbr> missing');
  27. $this->assertContains('<b>bold</b>,', $html, '<b> missing');
  28. $this->assertContains('<code>inline code</code>,', $html, '<code> missing');
  29. $this->assertContains('<del>delete</del>,', $html, '<del> missing');
  30. $this->assertContains('<em>emphasis</em>,', $html, '<em> missing');
  31. $this->assertContains('<i>italics</i>,', $html, '<i> missing');
  32. $this->assertContains('<img src="http://sanitize.example/example.jpg" alt="images are allowed" />', $html, '<img> missing');
  33. $this->assertContains('<q>inline quote</q>,', $html, '<q> missing');
  34. $this->assertContains('<strike>strikethrough</strike>,', $html, '<strike> missing');
  35. $this->assertContains('<strong>strong text</strong>,', $html, '<strong> missing');
  36. $this->assertContains('<time datetime="2016-01-01">time elements</time>', $html, '<time> missing');
  37. $this->assertContains('<blockquote>Blockquote tags are okay</blockquote>', $html);
  38. $this->assertContains('<pre>preformatted text is okay too', $html, '<pre> missing');
  39. $this->assertContains('for code examples and such</pre>', $html, '<pre> missing');
  40. $this->assertContains('<p>Paragraph tags are allowed</p>', $html, '<p> missing');
  41. $this->assertContains('<h1>One</h1>', $html, '<h1> missing');
  42. $this->assertContains('<h2>Two</h2>', $html, '<h2> missing');
  43. $this->assertContains('<h3>Three</h3>', $html, '<h3> missing');
  44. $this->assertContains('<h4>Four</h4>', $html, '<h4> missing');
  45. $this->assertContains('<h5>Five</h5>', $html, '<h5> missing');
  46. $this->assertContains('<h6>Six</h6>', $html, '<h6> missing');
  47. $this->assertContains('<ul>', $html, '<ul> missing');
  48. $this->assertContains('<li>One</li>', $html, '<li> missing');
  49. $this->assertContains('<p>We should allow<br />break<br />tags too</p>', $html, '<br> missing');
  50. }
  51. public function testRemovesUnsafeTags() {
  52. $url = 'http://sanitize.example/entry-with-unsafe-tags';
  53. $response = $this->parse(['url' => $url]);
  54. $body = $response->getContent();
  55. $this->assertEquals(200, $response->getStatusCode());
  56. $data = json_decode($body, true);
  57. $html = $data['data']['content']['html'];
  58. $text = $data['data']['content']['text'];
  59. $this->assertEquals('entry', $data['data']['type']);
  60. $this->assertNotContains('<script>', $html);
  61. $this->assertNotContains('<style>', $html);
  62. $this->assertNotContains('visiblity', $html); // from the CSS
  63. $this->assertNotContains('alert', $html); // from the JS
  64. $this->assertNotContains('visiblity', $text);
  65. $this->assertNotContains('alert', $text);
  66. }
  67. public function testAllowsMF2Classes() {
  68. $url = 'http://sanitize.example/entry-with-mf2-classes';
  69. $response = $this->parse(['url' => $url]);
  70. $body = $response->getContent();
  71. $this->assertEquals(200, $response->getStatusCode());
  72. $data = json_decode($body, true);
  73. $html = $data['data']['content']['html'];
  74. $this->assertEquals('entry', $data['data']['type']);
  75. $this->assertContains('<h2 class="p-name">Hello World</h2>', $html);
  76. $this->assertContains('<h3>Utility Class</h3>', $html);
  77. }
  78. public function testEscapingHTMLTagsInText() {
  79. $url = 'http://sanitize.example/html-escaping-in-text';
  80. $response = $this->parse(['url' => $url]);
  81. $body = $response->getContent();
  82. $this->assertEquals(200, $response->getStatusCode());
  83. $data = json_decode($body, true);
  84. $this->assertEquals('entry', $data['data']['type']);
  85. $this->assertEquals('This content has some HTML escaped entities such as & ampersand, " quote, escaped <code> HTML tags, an ümlaut, an @at sign.', $data['data']['content']['text']);
  86. }
  87. public function testEscapingHTMLTagsInHTML() {
  88. $url = 'http://sanitize.example/html-escaping-in-html';
  89. $response = $this->parse(['url' => $url]);
  90. $body = $response->getContent();
  91. $this->assertEquals(200, $response->getStatusCode());
  92. $data = json_decode($body, true);
  93. $this->assertEquals('entry', $data['data']['type']);
  94. $this->assertArrayNotHasKey('name', $data['data']);
  95. $this->assertEquals('This content has some HTML escaped entities such as & ampersand, " quote, escaped <code> HTML tags, an ümlaut, an @at sign.', $data['data']['content']['text']);
  96. $this->assertEquals('This content has some <i>HTML escaped</i> entities such as &amp; ampersand, " quote, escaped &lt;code&gt; HTML tags, an ümlaut, an @at sign.', $data['data']['content']['html']);
  97. }
  98. public function testSanitizeJavascriptURLs() {
  99. $url = 'http://sanitize.example/h-entry-with-javascript-urls';
  100. $response = $this->parse(['url' => $url]);
  101. $body = $response->getContent();
  102. $this->assertEquals(200, $response->getStatusCode());
  103. $data = json_decode($body, true);
  104. $this->assertEquals('entry', $data['data']['type']);
  105. $this->assertEquals('', $data['data']['author']['url']);
  106. $this->assertArrayNotHasKey('url', $data['data']);
  107. $this->assertArrayNotHasKey('photo', $data['data']);
  108. $this->assertArrayNotHasKey('audio', $data['data']);
  109. $this->assertArrayNotHasKey('video', $data['data']);
  110. $this->assertArrayNotHasKey('syndication', $data['data']);
  111. $this->assertArrayNotHasKey('in-reply-to', $data['data']);
  112. $this->assertArrayNotHasKey('like-of', $data['data']);
  113. $this->assertArrayNotHasKey('repost-of', $data['data']);
  114. $this->assertArrayNotHasKey('bookmark-of', $data['data']);
  115. $this->assertEquals('Author', $data['data']['author']['name']);
  116. $this->assertEquals('', $data['data']['author']['photo']);
  117. }
  118. public function testSanitizeEmailAuthorURL() {
  119. $url = 'http://sanitize.example/h-entry-with-email-author';
  120. $response = $this->parse(['url' => $url]);
  121. $body = $response->getContent();
  122. $this->assertEquals(200, $response->getStatusCode());
  123. $data = json_decode($body);
  124. $this->assertEquals('entry', $data->data->type);
  125. $this->assertEquals('', $data->data->author->url);
  126. $this->assertEquals('Author', $data->data->author->name);
  127. $this->assertEquals('http://sanitize.example/photo.jpg', $data->data->author->photo);
  128. }
  129. public function testPhotoInContentNoAlt() {
  130. // https://github.com/aaronpk/XRay/issues/52
  131. $url = 'http://sanitize.example/photo-in-content';
  132. $response = $this->parse(['url' => $url]);
  133. $body = $response->getContent();
  134. $this->assertEquals(200, $response->getStatusCode());
  135. $data = json_decode($body);
  136. $this->assertObjectNotHasAttribute('name', $data->data);
  137. $this->assertEquals('http://target.example.com/photo.jpg', $data->data->photo[0]);
  138. $this->assertEquals('This is a photo post with an img tag inside the content.', $data->data->content->text);
  139. $this->assertEquals('This is a photo post with an <code>img</code> tag inside the content.', $data->data->content->html);
  140. }
  141. /*
  142. // Commented out until #56 is resolved
  143. // https://github.com/aaronpk/XRay/issues/56
  144. public function testPhotoInTextContentNoAlt() {
  145. $url = 'http://sanitize.example/photo-in-text-content';
  146. $response = $this->parse(['url' => $url]);
  147. $body = $response->getContent();
  148. $this->assertEquals(200, $response->getStatusCode());
  149. $data = json_decode($body);
  150. $this->assertObjectNotHasAttribute('name', $data->data);
  151. $this->assertEquals('http://target.example.com/photo.jpg', $data->data->photo[0]);
  152. $this->assertEquals('This is a photo post with an img tag inside the content.', $data->data->content->text);
  153. $this->assertEquals('This is a photo post with an <code>img</code> tag inside the content.', $data->data->content->html);
  154. }
  155. */
  156. public function testRelativePhotoInContent() {
  157. $url = 'http://sanitize.example/photo-in-content-relative';
  158. $response = $this->parse(['url' => $url]);
  159. $body = $response->getContent();
  160. $this->assertEquals(200, $response->getStatusCode());
  161. $data = json_decode($body);
  162. $this->assertContains('http://sanitize.example/photo1.jpg', $data->data->content->html);
  163. }
  164. public function testRelativePhotoProperty() {
  165. $url = 'http://sanitize.example/photo-relative';
  166. $response = $this->parse(['url' => $url]);
  167. $body = $response->getContent();
  168. $this->assertEquals(200, $response->getStatusCode());
  169. $data = json_decode($body);
  170. $this->assertEquals('http://sanitize.example/photo.jpg', $data->data->photo[0]);
  171. }
  172. public function testPhotoInContentEmptyAltAttribute() {
  173. // https://github.com/aaronpk/XRay/issues/52
  174. $url = 'http://sanitize.example/photo-in-content-empty-alt';
  175. $response = $this->parse(['url' => $url]);
  176. $body = $response->getContent();
  177. $this->assertEquals(200, $response->getStatusCode());
  178. $data = json_decode($body);
  179. $this->assertObjectNotHasAttribute('name', $data->data);
  180. $this->assertEquals('http://target.example.com/photo.jpg', $data->data->photo[0]);
  181. $this->assertEquals('This is a photo post with an img tag inside the content.', $data->data->content->text);
  182. $this->assertEquals('This is a photo post with an <code>img</code> tag inside the content.', $data->data->content->html);
  183. }
  184. public function testPhotoInContentWithAlt() {
  185. // https://github.com/aaronpk/XRay/issues/52
  186. $url = 'http://sanitize.example/photo-in-content-with-alt';
  187. $response = $this->parse(['url' => $url]);
  188. $body = $response->getContent();
  189. $this->assertEquals(200, $response->getStatusCode());
  190. $data = json_decode($body);
  191. $this->assertObjectNotHasAttribute('name', $data->data);
  192. $this->assertEquals('http://target.example.com/photo.jpg', $data->data->photo[0]);
  193. $this->assertEquals('This is a photo post with an img tag inside the content.', $data->data->content->text);
  194. $this->assertEquals('This is a photo post with an <code>img</code> tag inside the content.', $data->data->content->html);
  195. }
  196. public function testPhotoInContentWithNoText() {
  197. $url = 'http://sanitize.example/cleverdevil';
  198. $response = $this->parse(['url' => $url]);
  199. $body = $response->getContent();
  200. $this->assertEquals(200, $response->getStatusCode());
  201. $data = json_decode($body);
  202. $this->assertObjectHasAttribute('name', $data->data);
  203. $this->assertEquals('Oh, how well they know me! 🥃', $data->data->name);
  204. $this->assertObjectNotHasAttribute('content', $data->data);
  205. $this->assertEquals('https://cleverdevil.io/file/5bf2fa91c3d4c592f9978200923cb56e/thumb.jpg', $data->data->photo[0]);
  206. }
  207. public function testPhotoWithDupeNameAndAlt1() {
  208. // https://github.com/aaronpk/XRay/issues/57
  209. $url = 'http://sanitize.example/photo-with-dupe-name-alt';
  210. $response = $this->parse(['url' => $url]);
  211. $body = $response->getContent();
  212. $this->assertEquals(200, $response->getStatusCode());
  213. $data = json_decode($body);
  214. $this->assertObjectHasAttribute('name', $data->data);
  215. $this->assertEquals('Photo caption', $data->data->name);
  216. $this->assertObjectNotHasAttribute('content', $data->data);
  217. $this->assertEquals('http://sanitize.example/photo.jpg', $data->data->photo[0]);
  218. }
  219. public function testPhotoWithDupeNameAndAlt2() {
  220. // This is simliar to adactio's markup
  221. // https://adactio.com/notes/13301
  222. $url = 'http://sanitize.example/photo-with-dupe-name-alt-2';
  223. $response = $this->parse(['url' => $url]);
  224. $body = $response->getContent();
  225. $this->assertEquals(200, $response->getStatusCode());
  226. $data = json_decode($body);
  227. $this->assertObjectHasAttribute('content', $data->data);
  228. $this->assertEquals('Photo caption', $data->data->content->text);
  229. $this->assertObjectNotHasAttribute('name', $data->data);
  230. $this->assertEquals('http://sanitize.example/photo.jpg', $data->data->photo[0]);
  231. }
  232. public function testPhotosWithAlt() {
  233. // https://github.com/microformats/microformats2-parsing/issues/16
  234. $url = 'http://sanitize.example/photos-with-alt';
  235. $response = $this->parse(['url' => $url]);
  236. $body = $response->getContent();
  237. $this->assertEquals(200, $response->getStatusCode());
  238. $data = json_decode($body);
  239. #print_r($data->data);
  240. $this->assertEquals('🌆 Made it to the first #NPSF #earlygang of the year, did in-betweeners abs, and 6:30 workout with a brutal burnout that was really its own workout. But wow pretty sunrise. Plus 50+ deg F? I’ll take it. #100PDPD'."\n\n".'#justshowup #darknesstodawn #wakeupthesun #fromwhereirun #NovemberProject #sunrise #latergram #nofilter', $data->data->content->text);
  241. $this->assertObjectNotHasAttribute('name', $data->data);
  242. $this->assertEquals('https://igx.4sqi.net/img/general/original/476_g7yruXflacsGr7PyVmECefyTBMB_R99zmPQxW7pftzA.jpg', $data->data->photo[0]);
  243. $this->assertEquals('https://igx.4sqi.net/img/general/original/476_zM3UgU9JHNhom907Ac_1WCEcUhGOJZaNWGlRmev86YA.jpg', $data->data->photo[1]);
  244. }
  245. /*
  246. // Commented out until #55 is resolved
  247. // https://github.com/aaronpk/XRay/issues/55
  248. public function testEntryWithImgNoImpliedPhoto() {
  249. // See https://github.com/microformats/microformats2-parsing/issues/6#issuecomment-357286985
  250. // and https://github.com/aaronpk/XRay/issues/52#issuecomment-357269683
  251. // and https://github.com/microformats/microformats2-parsing/issues/16
  252. $url = 'http://sanitize.example/entry-with-img-no-implied-photo';
  253. $response = $this->parse(['url' => $url]);
  254. $body = $response->getContent();
  255. $this->assertEquals(200, $response->getStatusCode());
  256. $data = json_decode($body);
  257. $this->assertObjectNotHasAttribute('photo', $data->data);
  258. $this->assertObjectNotHasAttribute('name', $data->data);
  259. $this->assertEquals('http://target.example.com/photo.jpg', $data->data->photo[0]);
  260. $this->assertEquals('This is a photo post with an img tag inside the content, which does not have a u-photo class so should not be removed.', $data->data->content->text);
  261. $this->assertEquals('This is a photo post with an <code>img</code> tag inside the content, which does not have a u-photo class so should not be removed. <img src="http://target.example.com/photo.jpg" alt="a photo">', $data->data->content->html);
  262. }
  263. */
  264. public function testWhitespaceWithBreakTags() {
  265. $url = 'http://sanitize.example/entry-with-br-tags';
  266. $response = $this->parse(['url' => $url]);
  267. $body = $response->getContent();
  268. $this->assertEquals(200, $response->getStatusCode());
  269. $data = json_decode($body);
  270. $this->assertEquals('This content has two break tags to indicate a paragraph break.<br /><br />This is how tantek\'s autolinker works.', $data->data->content->html);
  271. $this->assertEquals("This content has two break tags to indicate a paragraph break.\n\nThis is how tantek's autolinker works.", $data->data->content->text);
  272. }
  273. }