Fix domain name pattern in email regex (#6739)

Fixes #6735
This commit is contained in:
mrsdizzie 2019-04-24 21:53:42 -04:00 committed by techknowlogick
parent 6a58832286
commit 0064535ad2
2 changed files with 16 additions and 1 deletions

View file

@ -176,6 +176,9 @@ func TestRender_email(t *testing.T) {
test(
"info@gitea.com.",
`<p><a href="mailto:info@gitea.com" rel="nofollow">info@gitea.com</a>.</p>`)
test(
"firstname+lastname@gitea.com",
`<p><a href="mailto:firstname+lastname@gitea.com" rel="nofollow">firstname+lastname@gitea.com</a></p>`)
test(
"send email to info@gitea.co.uk.",
`<p>send email to <a href="mailto:info@gitea.co.uk" rel="nofollow">info@gitea.co.uk</a>.</p>`)
@ -190,6 +193,18 @@ func TestRender_email(t *testing.T) {
test(
"git@try.gitea.io:go-gitea/gitea.git",
`<p>git@try.gitea.io:go-gitea/gitea.git</p>`)
test(
"gitea@3",
`<p>gitea@3</p>`)
test(
"gitea@gmail.c",
`<p>gitea@gmail.c</p>`)
test(
"email@domain@domain.com",
`<p>email@domain@domain.com</p>`)
test(
"email@domain..com",
`<p>email@domain..com</p>`)
}
func TestRender_ShortLinks(t *testing.T) {