diff options
author | techknowlogick <techknowlogick@gitea.io> | 2020-04-07 16:08:47 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-07 23:08:47 +0300 |
commit | d00ebf445bac3ee70616032e3fc89781cac3000c (patch) | |
tree | edb86af028c01765b2ee03245c97ecb0b0f9bc4a /modules/markup | |
parent | 4c54477bb5580c876e1d8c53b62be5db85d7bd22 (diff) | |
download | gitea-d00ebf445bac3ee70616032e3fc89781cac3000c.tar.gz gitea-d00ebf445bac3ee70616032e3fc89781cac3000c.zip |
upgrade to most recent bluemonday (#11007)
* upgrade to most recent bluemonday
* make vendor
* update tests for bluemonday
* update tests for bluemonday
* update tests for bluemonday
Diffstat (limited to 'modules/markup')
-rw-r--r-- | modules/markup/html_test.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/markup/html_test.go b/modules/markup/html_test.go index 6dcecc4956..44f5926ac7 100644 --- a/modules/markup/html_test.go +++ b/modules/markup/html_test.go @@ -117,13 +117,13 @@ func TestRender_links(t *testing.T) { `<p><a href="http://www.example.com/wpstyle/?p=364" rel="nofollow">http://www.example.com/wpstyle/?p=364</a></p>`) test( "https://www.example.com/foo/?bar=baz&inga=42&quux", - `<p><a href="https://www.example.com/foo/?bar=baz&inga=42&quux" rel="nofollow">https://www.example.com/foo/?bar=baz&inga=42&quux</a></p>`) + `<p><a href="https://www.example.com/foo/?bar=baz&inga=42&quux=" rel="nofollow">https://www.example.com/foo/?bar=baz&inga=42&quux</a></p>`) test( "http://142.42.1.1/", `<p><a href="http://142.42.1.1/" rel="nofollow">http://142.42.1.1/</a></p>`) test( "https://github.com/go-gitea/gitea/?p=aaa/bbb.html#ccc-ddd", - `<p><a href="https://github.com/go-gitea/gitea/?p=aaa/bbb.html#ccc-ddd" rel="nofollow">https://github.com/go-gitea/gitea/?p=aaa/bbb.html#ccc-ddd</a></p>`) + `<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>`) test( "https://en.wikipedia.org/wiki/URL_(disambiguation)", `<p><a href="https://en.wikipedia.org/wiki/URL_(disambiguation)" rel="nofollow">https://en.wikipedia.org/wiki/URL_(disambiguation)</a></p>`) @@ -141,7 +141,7 @@ func TestRender_links(t *testing.T) { `<p><a href="ftp://gitea.com/file.txt" rel="nofollow">ftp://gitea.com/file.txt</a></p>`) test( "magnet:?xt=urn:btih:5dee65101db281ac9c46344cd6b175cdcadabcde&dn=download", - `<p><a href="magnet:?xt=urn:btih:5dee65101db281ac9c46344cd6b175cdcadabcde&dn=download" rel="nofollow">magnet:?xt=urn:btih:5dee65101db281ac9c46344cd6b175cdcadabcde&dn=download</a></p>`) + `<p><a href="magnet:?dn=download&xt=urn%3Abtih%3A5dee65101db281ac9c46344cd6b175cdcadabcde" rel="nofollow">magnet:?xt=urn:btih:5dee65101db281ac9c46344cd6b175cdcadabcde&dn=download</a></p>`) // Test that should *not* be turned into URL test( |