mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-11 04:11:18 +01:00
Add integration test
This commit is contained in:
parent
3fab07e0bc
commit
68cc61b537
1 changed files with 26 additions and 10 deletions
|
@ -1106,17 +1106,33 @@ func TestCommitRefComment(t *testing.T) {
|
||||||
func TestIssueFilterNoFollow(t *testing.T) {
|
func TestIssueFilterNoFollow(t *testing.T) {
|
||||||
defer tests.PrepareTestEnv(t)()
|
defer tests.PrepareTestEnv(t)()
|
||||||
|
|
||||||
req := NewRequest(t, "GET", "/user2/repo1/issues")
|
|
||||||
resp := MakeRequest(t, req, http.StatusOK)
|
|
||||||
htmlDoc := NewHTMLParser(t, resp.Body)
|
|
||||||
|
|
||||||
// Check that every link in the filter list has rel="nofollow".
|
// Check that every link in the filter list has rel="nofollow".
|
||||||
filterLinks := htmlDoc.Find(".issue-list-toolbar-right a[href*=\"?q=\"]")
|
t.Run("Issue lists", func(t *testing.T) {
|
||||||
assert.Positive(t, filterLinks.Length())
|
req := NewRequest(t, "GET", "/user2/repo1/issues")
|
||||||
filterLinks.Each(func(i int, link *goquery.Selection) {
|
resp := MakeRequest(t, req, http.StatusOK)
|
||||||
rel, has := link.Attr("rel")
|
htmlDoc := NewHTMLParser(t, resp.Body)
|
||||||
assert.True(t, has)
|
|
||||||
assert.Equal(t, "nofollow", rel)
|
filterLinks := htmlDoc.Find(".issue-list-toolbar-right a[href*=\"?q=\"], .labels-list a[href*=\"?q=\"]")
|
||||||
|
assert.Positive(t, filterLinks.Length())
|
||||||
|
filterLinks.Each(func(i int, link *goquery.Selection) {
|
||||||
|
rel, has := link.Attr("rel")
|
||||||
|
assert.True(t, has)
|
||||||
|
assert.Equal(t, "nofollow", rel)
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
t.Run("Issue page", func(t *testing.T) {
|
||||||
|
req := NewRequest(t, "GET", "/user2/repo1/issues/1")
|
||||||
|
resp := MakeRequest(t, req, http.StatusOK)
|
||||||
|
htmlDoc := NewHTMLParser(t, resp.Body)
|
||||||
|
|
||||||
|
filterLinks := htmlDoc.Find(".timeline .labels-list a[href*=\"?labels=\"], .issue-content-right .labels-list a[href*=\"?labels=\"]")
|
||||||
|
assert.Positive(t, filterLinks.Length())
|
||||||
|
filterLinks.Each(func(i int, link *goquery.Selection) {
|
||||||
|
rel, has := link.Attr("rel")
|
||||||
|
assert.True(t, has)
|
||||||
|
assert.Equal(t, "nofollow", rel)
|
||||||
|
})
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue