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.

html_test.go 17KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410
  1. // Copyright 2017 The Gitea Authors. All rights reserved.
  2. // Use of this source code is governed by a MIT-style
  3. // license that can be found in the LICENSE file.
  4. package markup_test
  5. import (
  6. "strings"
  7. "testing"
  8. "code.gitea.io/gitea/modules/emoji"
  9. . "code.gitea.io/gitea/modules/markup"
  10. "code.gitea.io/gitea/modules/markup/markdown"
  11. "code.gitea.io/gitea/modules/setting"
  12. "code.gitea.io/gitea/modules/util"
  13. "github.com/stretchr/testify/assert"
  14. )
  15. var localMetas = map[string]string{
  16. "user": "gogits",
  17. "repo": "gogs",
  18. "repoPath": "../../integrations/gitea-repositories-meta/user13/repo11.git/",
  19. }
  20. func TestRender_Commits(t *testing.T) {
  21. setting.AppURL = AppURL
  22. setting.AppSubURL = AppSubURL
  23. test := func(input, expected string) {
  24. buffer := RenderString(".md", input, setting.AppSubURL, localMetas)
  25. assert.Equal(t, strings.TrimSpace(expected), strings.TrimSpace(buffer))
  26. }
  27. var sha = "65f1bf27bc3bf70f64657658635e66094edbcb4d"
  28. var commit = util.URLJoin(AppSubURL, "commit", sha)
  29. var subtree = util.URLJoin(commit, "src")
  30. var tree = strings.ReplaceAll(subtree, "/commit/", "/tree/")
  31. test(sha, `<p><a href="`+commit+`" rel="nofollow"><code>65f1bf27bc</code></a></p>`)
  32. test(sha[:7], `<p><a href="`+commit[:len(commit)-(40-7)]+`" rel="nofollow"><code>65f1bf2</code></a></p>`)
  33. test(sha[:39], `<p><a href="`+commit[:len(commit)-(40-39)]+`" rel="nofollow"><code>65f1bf27bc</code></a></p>`)
  34. test(commit, `<p><a href="`+commit+`" rel="nofollow"><code>65f1bf27bc</code></a></p>`)
  35. test(tree, `<p><a href="`+tree+`" rel="nofollow"><code>65f1bf27bc/src</code></a></p>`)
  36. test("commit "+sha, `<p>commit <a href="`+commit+`" rel="nofollow"><code>65f1bf27bc</code></a></p>`)
  37. test("/home/gitea/"+sha, "<p>/home/gitea/"+sha+"</p>")
  38. test("deadbeef", `<p>deadbeef</p>`)
  39. test("d27ace93", `<p>d27ace93</p>`)
  40. test(sha[:14]+".x", `<p>`+sha[:14]+`.x</p>`)
  41. expected14 := `<a href="` + commit[:len(commit)-(40-14)] + `" rel="nofollow"><code>` + sha[:10] + `</code></a>`
  42. test(sha[:14]+".", `<p>`+expected14+`.</p>`)
  43. test(sha[:14]+",", `<p>`+expected14+`,</p>`)
  44. test("["+sha[:14]+"]", `<p>[`+expected14+`]</p>`)
  45. }
  46. func TestRender_CrossReferences(t *testing.T) {
  47. setting.AppURL = AppURL
  48. setting.AppSubURL = AppSubURL
  49. test := func(input, expected string) {
  50. buffer := RenderString("a.md", input, setting.AppSubURL, localMetas)
  51. assert.Equal(t, strings.TrimSpace(expected), strings.TrimSpace(buffer))
  52. }
  53. test(
  54. "gogits/gogs#12345",
  55. `<p><a href="`+util.URLJoin(AppURL, "gogits", "gogs", "issues", "12345")+`" class="ref-issue" rel="nofollow">gogits/gogs#12345</a></p>`)
  56. test(
  57. "go-gitea/gitea#12345",
  58. `<p><a href="`+util.URLJoin(AppURL, "go-gitea", "gitea", "issues", "12345")+`" class="ref-issue" rel="nofollow">go-gitea/gitea#12345</a></p>`)
  59. test(
  60. "/home/gitea/go-gitea/gitea#12345",
  61. `<p>/home/gitea/go-gitea/gitea#12345</p>`)
  62. }
  63. func TestMisc_IsSameDomain(t *testing.T) {
  64. setting.AppURL = AppURL
  65. setting.AppSubURL = AppSubURL
  66. var sha = "b6dd6210eaebc915fd5be5579c58cce4da2e2579"
  67. var commit = util.URLJoin(AppSubURL, "commit", sha)
  68. assert.True(t, IsSameDomain(commit))
  69. assert.False(t, IsSameDomain("http://google.com/ncr"))
  70. assert.False(t, IsSameDomain("favicon.ico"))
  71. }
  72. func TestRender_links(t *testing.T) {
  73. setting.AppURL = AppURL
  74. setting.AppSubURL = AppSubURL
  75. test := func(input, expected string) {
  76. buffer := RenderString("a.md", input, setting.AppSubURL, nil)
  77. assert.Equal(t, strings.TrimSpace(expected), strings.TrimSpace(buffer))
  78. }
  79. // Text that should be turned into URL
  80. defaultCustom := setting.Markdown.CustomURLSchemes
  81. setting.Markdown.CustomURLSchemes = []string{"ftp", "magnet"}
  82. ReplaceSanitizer()
  83. CustomLinkURLSchemes(setting.Markdown.CustomURLSchemes)
  84. test(
  85. "https://www.example.com",
  86. `<p><a href="https://www.example.com" rel="nofollow">https://www.example.com</a></p>`)
  87. test(
  88. "http://www.example.com",
  89. `<p><a href="http://www.example.com" rel="nofollow">http://www.example.com</a></p>`)
  90. test(
  91. "https://example.com",
  92. `<p><a href="https://example.com" rel="nofollow">https://example.com</a></p>`)
  93. test(
  94. "http://example.com",
  95. `<p><a href="http://example.com" rel="nofollow">http://example.com</a></p>`)
  96. test(
  97. "http://foo.com/blah_blah",
  98. `<p><a href="http://foo.com/blah_blah" rel="nofollow">http://foo.com/blah_blah</a></p>`)
  99. test(
  100. "http://foo.com/blah_blah/",
  101. `<p><a href="http://foo.com/blah_blah/" rel="nofollow">http://foo.com/blah_blah/</a></p>`)
  102. test(
  103. "http://www.example.com/wpstyle/?p=364",
  104. `<p><a href="http://www.example.com/wpstyle/?p=364" rel="nofollow">http://www.example.com/wpstyle/?p=364</a></p>`)
  105. test(
  106. "https://www.example.com/foo/?bar=baz&inga=42&quux",
  107. `<p><a href="https://www.example.com/foo/?bar=baz&inga=42&quux" rel="nofollow">https://www.example.com/foo/?bar=baz&amp;inga=42&amp;quux</a></p>`)
  108. test(
  109. "http://142.42.1.1/",
  110. `<p><a href="http://142.42.1.1/" rel="nofollow">http://142.42.1.1/</a></p>`)
  111. test(
  112. "https://github.com/go-gitea/gitea/?p=aaa/bbb.html#ccc-ddd",
  113. `<p><a href="https://github.com/go-gitea/gitea/?p=aaa%2Fbbb.html#ccc-ddd" rel="nofollow">https://github.com/go-gitea/gitea/?p=aaa/bbb.html#ccc-ddd</a></p>`)
  114. test(
  115. "https://en.wikipedia.org/wiki/URL_(disambiguation)",
  116. `<p><a href="https://en.wikipedia.org/wiki/URL_(disambiguation)" rel="nofollow">https://en.wikipedia.org/wiki/URL_(disambiguation)</a></p>`)
  117. test(
  118. "https://foo_bar.example.com/",
  119. `<p><a href="https://foo_bar.example.com/" rel="nofollow">https://foo_bar.example.com/</a></p>`)
  120. test(
  121. "https://stackoverflow.com/questions/2896191/what-is-go-used-fore",
  122. `<p><a href="https://stackoverflow.com/questions/2896191/what-is-go-used-fore" rel="nofollow">https://stackoverflow.com/questions/2896191/what-is-go-used-fore</a></p>`)
  123. test(
  124. "https://username:password@gitea.com",
  125. `<p><a href="https://username:password@gitea.com" rel="nofollow">https://username:password@gitea.com</a></p>`)
  126. test(
  127. "ftp://gitea.com/file.txt",
  128. `<p><a href="ftp://gitea.com/file.txt" rel="nofollow">ftp://gitea.com/file.txt</a></p>`)
  129. test(
  130. "magnet:?xt=urn:btih:5dee65101db281ac9c46344cd6b175cdcadabcde&dn=download",
  131. `<p><a href="magnet:?xt=urn%3Abtih%3A5dee65101db281ac9c46344cd6b175cdcadabcde&dn=download" rel="nofollow">magnet:?xt=urn:btih:5dee65101db281ac9c46344cd6b175cdcadabcde&amp;dn=download</a></p>`)
  132. // Test that should *not* be turned into URL
  133. test(
  134. "www.example.com",
  135. `<p>www.example.com</p>`)
  136. test(
  137. "example.com",
  138. `<p>example.com</p>`)
  139. test(
  140. "test.example.com",
  141. `<p>test.example.com</p>`)
  142. test(
  143. "http://",
  144. `<p>http://</p>`)
  145. test(
  146. "https://",
  147. `<p>https://</p>`)
  148. test(
  149. "://",
  150. `<p>://</p>`)
  151. test(
  152. "www",
  153. `<p>www</p>`)
  154. test(
  155. "ftps://gitea.com",
  156. `<p>ftps://gitea.com</p>`)
  157. // Restore previous settings
  158. setting.Markdown.CustomURLSchemes = defaultCustom
  159. ReplaceSanitizer()
  160. CustomLinkURLSchemes(setting.Markdown.CustomURLSchemes)
  161. }
  162. func TestRender_email(t *testing.T) {
  163. setting.AppURL = AppURL
  164. setting.AppSubURL = AppSubURL
  165. test := func(input, expected string) {
  166. buffer := RenderString("a.md", input, setting.AppSubURL, nil)
  167. assert.Equal(t, strings.TrimSpace(expected), strings.TrimSpace(buffer))
  168. }
  169. // Text that should be turned into email link
  170. test(
  171. "info@gitea.com",
  172. `<p><a href="mailto:info@gitea.com" rel="nofollow">info@gitea.com</a></p>`)
  173. test(
  174. "(info@gitea.com)",
  175. `<p>(<a href="mailto:info@gitea.com" rel="nofollow">info@gitea.com</a>)</p>`)
  176. test(
  177. "[info@gitea.com]",
  178. `<p>[<a href="mailto:info@gitea.com" rel="nofollow">info@gitea.com</a>]</p>`)
  179. test(
  180. "info@gitea.com.",
  181. `<p><a href="mailto:info@gitea.com" rel="nofollow">info@gitea.com</a>.</p>`)
  182. test(
  183. "firstname+lastname@gitea.com",
  184. `<p><a href="mailto:firstname+lastname@gitea.com" rel="nofollow">firstname+lastname@gitea.com</a></p>`)
  185. test(
  186. "send email to info@gitea.co.uk.",
  187. `<p>send email to <a href="mailto:info@gitea.co.uk" rel="nofollow">info@gitea.co.uk</a>.</p>`)
  188. // Test that should *not* be turned into email links
  189. test(
  190. "\"info@gitea.com\"",
  191. `<p>&#34;info@gitea.com&#34;</p>`)
  192. test(
  193. "/home/gitea/mailstore/info@gitea/com",
  194. `<p>/home/gitea/mailstore/info@gitea/com</p>`)
  195. test(
  196. "git@try.gitea.io:go-gitea/gitea.git",
  197. `<p>git@try.gitea.io:go-gitea/gitea.git</p>`)
  198. test(
  199. "gitea@3",
  200. `<p>gitea@3</p>`)
  201. test(
  202. "gitea@gmail.c",
  203. `<p>gitea@gmail.c</p>`)
  204. test(
  205. "email@domain@domain.com",
  206. `<p>email@domain@domain.com</p>`)
  207. test(
  208. "email@domain..com",
  209. `<p>email@domain..com</p>`)
  210. }
  211. func TestRender_emoji(t *testing.T) {
  212. setting.AppURL = AppURL
  213. setting.AppSubURL = AppSubURL
  214. setting.StaticURLPrefix = AppURL
  215. test := func(input, expected string) {
  216. expected = strings.ReplaceAll(expected, "&", "&amp;")
  217. buffer := RenderString("a.md", input, setting.AppSubURL, nil)
  218. assert.Equal(t, strings.TrimSpace(expected), strings.TrimSpace(buffer))
  219. }
  220. // Make sure we can successfully match every emoji in our dataset with regex
  221. for i := range emoji.GemojiData {
  222. test(
  223. emoji.GemojiData[i].Emoji,
  224. `<p><span class="emoji" aria-label="`+emoji.GemojiData[i].Description+`">`+emoji.GemojiData[i].Emoji+`</span></p>`)
  225. }
  226. for i := range emoji.GemojiData {
  227. test(
  228. ":"+emoji.GemojiData[i].Aliases[0]+":",
  229. `<p><span class="emoji" aria-label="`+emoji.GemojiData[i].Description+`">`+emoji.GemojiData[i].Emoji+`</span></p>`)
  230. }
  231. //Text that should be turned into or recognized as emoji
  232. test(
  233. ":gitea:",
  234. `<p><span class="emoji" aria-label="gitea"><img alt=":gitea:" src="`+setting.StaticURLPrefix+`/img/emoji/gitea.png"/></span></p>`)
  235. test(
  236. "Some text with 😄 in the middle",
  237. `<p>Some text with <span class="emoji" aria-label="grinning face with smiling eyes">😄</span> in the middle</p>`)
  238. test(
  239. "Some text with :smile: in the middle",
  240. `<p>Some text with <span class="emoji" aria-label="grinning face with smiling eyes">😄</span> in the middle</p>`)
  241. test(
  242. "Some text with 😄😄 2 emoji next to each other",
  243. `<p>Some text with <span class="emoji" aria-label="grinning face with smiling eyes">😄</span><span class="emoji" aria-label="grinning face with smiling eyes">😄</span> 2 emoji next to each other</p>`)
  244. test(
  245. "😎🤪🔐🤑❓",
  246. `<p><span class="emoji" aria-label="smiling face with sunglasses">😎</span><span class="emoji" aria-label="zany face">🤪</span><span class="emoji" aria-label="locked with key">🔐</span><span class="emoji" aria-label="money-mouth face">🤑</span><span class="emoji" aria-label="question mark">❓</span></p>`)
  247. // should match nothing
  248. test(
  249. "2001:0db8:85a3:0000:0000:8a2e:0370:7334",
  250. `<p>2001:0db8:85a3:0000:0000:8a2e:0370:7334</p>`)
  251. test(
  252. ":not exist:",
  253. `<p>:not exist:</p>`)
  254. }
  255. func TestRender_ShortLinks(t *testing.T) {
  256. setting.AppURL = AppURL
  257. setting.AppSubURL = AppSubURL
  258. tree := util.URLJoin(AppSubURL, "src", "master")
  259. test := func(input, expected, expectedWiki string) {
  260. buffer := markdown.RenderString(input, tree, nil)
  261. assert.Equal(t, strings.TrimSpace(expected), strings.TrimSpace(buffer))
  262. buffer = markdown.RenderWiki([]byte(input), setting.AppSubURL, localMetas)
  263. assert.Equal(t, strings.TrimSpace(expectedWiki), strings.TrimSpace(buffer))
  264. }
  265. rawtree := util.URLJoin(AppSubURL, "raw", "master")
  266. url := util.URLJoin(tree, "Link")
  267. otherURL := util.URLJoin(tree, "Other-Link")
  268. encodedURL := util.URLJoin(tree, "Link%3F")
  269. imgurl := util.URLJoin(rawtree, "Link.jpg")
  270. otherImgurl := util.URLJoin(rawtree, "Link+Other.jpg")
  271. encodedImgurl := util.URLJoin(rawtree, "Link+%23.jpg")
  272. notencodedImgurl := util.URLJoin(rawtree, "some", "path", "Link+#.jpg")
  273. urlWiki := util.URLJoin(AppSubURL, "wiki", "Link")
  274. otherURLWiki := util.URLJoin(AppSubURL, "wiki", "Other-Link")
  275. encodedURLWiki := util.URLJoin(AppSubURL, "wiki", "Link%3F")
  276. imgurlWiki := util.URLJoin(AppSubURL, "wiki", "raw", "Link.jpg")
  277. otherImgurlWiki := util.URLJoin(AppSubURL, "wiki", "raw", "Link+Other.jpg")
  278. encodedImgurlWiki := util.URLJoin(AppSubURL, "wiki", "raw", "Link+%23.jpg")
  279. notencodedImgurlWiki := util.URLJoin(AppSubURL, "wiki", "raw", "some", "path", "Link+#.jpg")
  280. favicon := "http://google.com/favicon.ico"
  281. test(
  282. "[[Link]]",
  283. `<p><a href="`+url+`" rel="nofollow">Link</a></p>`,
  284. `<p><a href="`+urlWiki+`" rel="nofollow">Link</a></p>`)
  285. test(
  286. "[[Link.jpg]]",
  287. `<p><a href="`+imgurl+`" rel="nofollow"><img src="`+imgurl+`" title="Link.jpg" alt="Link.jpg"/></a></p>`,
  288. `<p><a href="`+imgurlWiki+`" rel="nofollow"><img src="`+imgurlWiki+`" title="Link.jpg" alt="Link.jpg"/></a></p>`)
  289. test(
  290. "[["+favicon+"]]",
  291. `<p><a href="`+favicon+`" rel="nofollow"><img src="`+favicon+`" title="favicon.ico" alt="`+favicon+`"/></a></p>`,
  292. `<p><a href="`+favicon+`" rel="nofollow"><img src="`+favicon+`" title="favicon.ico" alt="`+favicon+`"/></a></p>`)
  293. test(
  294. "[[Name|Link]]",
  295. `<p><a href="`+url+`" rel="nofollow">Name</a></p>`,
  296. `<p><a href="`+urlWiki+`" rel="nofollow">Name</a></p>`)
  297. test(
  298. "[[Name|Link.jpg]]",
  299. `<p><a href="`+imgurl+`" rel="nofollow"><img src="`+imgurl+`" title="Name" alt="Name"/></a></p>`,
  300. `<p><a href="`+imgurlWiki+`" rel="nofollow"><img src="`+imgurlWiki+`" title="Name" alt="Name"/></a></p>`)
  301. test(
  302. "[[Name|Link.jpg|alt=AltName]]",
  303. `<p><a href="`+imgurl+`" rel="nofollow"><img src="`+imgurl+`" title="AltName" alt="AltName"/></a></p>`,
  304. `<p><a href="`+imgurlWiki+`" rel="nofollow"><img src="`+imgurlWiki+`" title="AltName" alt="AltName"/></a></p>`)
  305. test(
  306. "[[Name|Link.jpg|title=Title]]",
  307. `<p><a href="`+imgurl+`" rel="nofollow"><img src="`+imgurl+`" title="Title" alt="Title"/></a></p>`,
  308. `<p><a href="`+imgurlWiki+`" rel="nofollow"><img src="`+imgurlWiki+`" title="Title" alt="Title"/></a></p>`)
  309. test(
  310. "[[Name|Link.jpg|alt=AltName|title=Title]]",
  311. `<p><a href="`+imgurl+`" rel="nofollow"><img src="`+imgurl+`" title="Title" alt="AltName"/></a></p>`,
  312. `<p><a href="`+imgurlWiki+`" rel="nofollow"><img src="`+imgurlWiki+`" title="Title" alt="AltName"/></a></p>`)
  313. test(
  314. "[[Name|Link.jpg|alt=\"AltName\"|title='Title']]",
  315. `<p><a href="`+imgurl+`" rel="nofollow"><img src="`+imgurl+`" title="Title" alt="AltName"/></a></p>`,
  316. `<p><a href="`+imgurlWiki+`" rel="nofollow"><img src="`+imgurlWiki+`" title="Title" alt="AltName"/></a></p>`)
  317. test(
  318. "[[Name|Link Other.jpg|alt=\"AltName\"|title='Title']]",
  319. `<p><a href="`+otherImgurl+`" rel="nofollow"><img src="`+otherImgurl+`" title="Title" alt="AltName"/></a></p>`,
  320. `<p><a href="`+otherImgurlWiki+`" rel="nofollow"><img src="`+otherImgurlWiki+`" title="Title" alt="AltName"/></a></p>`)
  321. test(
  322. "[[Link]] [[Other Link]]",
  323. `<p><a href="`+url+`" rel="nofollow">Link</a> <a href="`+otherURL+`" rel="nofollow">Other Link</a></p>`,
  324. `<p><a href="`+urlWiki+`" rel="nofollow">Link</a> <a href="`+otherURLWiki+`" rel="nofollow">Other Link</a></p>`)
  325. test(
  326. "[[Link?]]",
  327. `<p><a href="`+encodedURL+`" rel="nofollow">Link?</a></p>`,
  328. `<p><a href="`+encodedURLWiki+`" rel="nofollow">Link?</a></p>`)
  329. test(
  330. "[[Link]] [[Other Link]] [[Link?]]",
  331. `<p><a href="`+url+`" rel="nofollow">Link</a> <a href="`+otherURL+`" rel="nofollow">Other Link</a> <a href="`+encodedURL+`" rel="nofollow">Link?</a></p>`,
  332. `<p><a href="`+urlWiki+`" rel="nofollow">Link</a> <a href="`+otherURLWiki+`" rel="nofollow">Other Link</a> <a href="`+encodedURLWiki+`" rel="nofollow">Link?</a></p>`)
  333. test(
  334. "[[Link #.jpg]]",
  335. `<p><a href="`+encodedImgurl+`" rel="nofollow"><img src="`+encodedImgurl+`" title="Link #.jpg" alt="Link #.jpg"/></a></p>`,
  336. `<p><a href="`+encodedImgurlWiki+`" rel="nofollow"><img src="`+encodedImgurlWiki+`" title="Link #.jpg" alt="Link #.jpg"/></a></p>`)
  337. test(
  338. "[[Name|Link #.jpg|alt=\"AltName\"|title='Title']]",
  339. `<p><a href="`+encodedImgurl+`" rel="nofollow"><img src="`+encodedImgurl+`" title="Title" alt="AltName"/></a></p>`,
  340. `<p><a href="`+encodedImgurlWiki+`" rel="nofollow"><img src="`+encodedImgurlWiki+`" title="Title" alt="AltName"/></a></p>`)
  341. test(
  342. "[[some/path/Link #.jpg]]",
  343. `<p><a href="`+notencodedImgurl+`" rel="nofollow"><img src="`+notencodedImgurl+`" title="Link #.jpg" alt="some/path/Link #.jpg"/></a></p>`,
  344. `<p><a href="`+notencodedImgurlWiki+`" rel="nofollow"><img src="`+notencodedImgurlWiki+`" title="Link #.jpg" alt="some/path/Link #.jpg"/></a></p>`)
  345. test(
  346. "<p><a href=\"https://example.org\">[[foobar]]</a></p>",
  347. `<p><a href="https://example.org" rel="nofollow">[[foobar]]</a></p>`,
  348. `<p><a href="https://example.org" rel="nofollow">[[foobar]]</a></p>`)
  349. }
  350. func Test_ParseClusterFuzz(t *testing.T) {
  351. setting.AppURL = AppURL
  352. setting.AppSubURL = AppSubURL
  353. var localMetas = map[string]string{
  354. "user": "go-gitea",
  355. "repo": "gitea",
  356. }
  357. data := "<A><maTH><tr><MN><bodY ÿ><temPlate></template><tH><tr></A><tH><d<bodY "
  358. val, err := PostProcess([]byte(data), "https://example.com", localMetas, false)
  359. assert.NoError(t, err)
  360. assert.NotContains(t, string(val), "<html")
  361. data = "<!DOCTYPE html>\n<A><maTH><tr><MN><bodY ÿ><temPlate></template><tH><tr></A><tH><d<bodY "
  362. val, err = PostProcess([]byte(data), "https://example.com", localMetas, false)
  363. assert.NoError(t, err)
  364. assert.NotContains(t, string(val), "<html")
  365. }