
**Backport:** https://codeberg.org/forgejo/forgejo/pulls/7337 - Massive replacement of changing `code.gitea.io/gitea` to `forgejo.org`. - Resolves forgejo/discussions#258 Co-authored-by: Gusted <postmaster@gusted.xyz> Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/7354 Reviewed-by: Gusted <gusted@noreply.codeberg.org> Co-authored-by: forgejo-backport-action <forgejo-backport-action@noreply.codeberg.org> Co-committed-by: forgejo-backport-action <forgejo-backport-action@noreply.codeberg.org>
72 lines
2.6 KiB
Go
72 lines
2.6 KiB
Go
package integration
|
|
|
|
import (
|
|
"net/http"
|
|
"net/url"
|
|
"testing"
|
|
|
|
"forgejo.org/tests"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestRepoModifyGitNotes(t *testing.T) {
|
|
onGiteaRun(t, func(*testing.T, *url.URL) {
|
|
session := loginUser(t, "user2")
|
|
|
|
req := NewRequest(t, "GET", "/user2/repo1/commit/65f1bf27bc3bf70f64657658635e66094edbcb4d")
|
|
resp := MakeRequest(t, req, http.StatusOK)
|
|
assert.Contains(t, resp.Body.String(), "<pre class=\"commit-body\">This is a test note\n</pre>")
|
|
assert.Contains(t, resp.Body.String(), "commit-notes-display-area")
|
|
|
|
t.Run("Set", func(t *testing.T) {
|
|
req = NewRequestWithValues(t, "POST", "/user2/repo1/commit/65f1bf27bc3bf70f64657658635e66094edbcb4d/notes", map[string]string{
|
|
"_csrf": GetCSRF(t, session, "/user2/repo1"),
|
|
"notes": "This is a new note",
|
|
})
|
|
session.MakeRequest(t, req, http.StatusSeeOther)
|
|
|
|
req = NewRequest(t, "GET", "/user2/repo1/commit/65f1bf27bc3bf70f64657658635e66094edbcb4d")
|
|
resp = MakeRequest(t, req, http.StatusOK)
|
|
assert.Contains(t, resp.Body.String(), "<pre class=\"commit-body\">This is a new note\n</pre>")
|
|
assert.Contains(t, resp.Body.String(), "commit-notes-display-area")
|
|
})
|
|
|
|
t.Run("Delete", func(t *testing.T) {
|
|
req = NewRequestWithValues(t, "POST", "/user2/repo1/commit/65f1bf27bc3bf70f64657658635e66094edbcb4d/notes/remove", map[string]string{
|
|
"_csrf": GetCSRF(t, session, "/user2/repo1"),
|
|
})
|
|
session.MakeRequest(t, req, http.StatusSeeOther)
|
|
|
|
req = NewRequest(t, "GET", "/user2/repo1/commit/65f1bf27bc3bf70f64657658635e66094edbcb4d")
|
|
resp = MakeRequest(t, req, http.StatusOK)
|
|
assert.NotContains(t, resp.Body.String(), "commit-notes-display-area")
|
|
})
|
|
})
|
|
}
|
|
|
|
func TestRepoGitNotesButtonsVisible(t *testing.T) {
|
|
onGiteaRun(t, func(*testing.T, *url.URL) {
|
|
t.Run("With Permission", func(t *testing.T) {
|
|
defer tests.PrintCurrentTest(t)()
|
|
|
|
session := loginUser(t, "user2")
|
|
|
|
req := NewRequest(t, "GET", "/user2/repo1/commit/65f1bf27bc3bf70f64657658635e66094edbcb4d")
|
|
resp := session.MakeRequest(t, req, http.StatusOK)
|
|
|
|
assert.Contains(t, resp.Body.String(), "id=\"commit-notes-edit-button\"")
|
|
assert.Contains(t, resp.Body.String(), "data-modal=\"#delete-note-modal\"")
|
|
})
|
|
|
|
t.Run("Without Permission", func(t *testing.T) {
|
|
defer tests.PrintCurrentTest(t)()
|
|
|
|
req := NewRequest(t, "GET", "/user2/repo1/commit/65f1bf27bc3bf70f64657658635e66094edbcb4d")
|
|
resp := MakeRequest(t, req, http.StatusOK)
|
|
|
|
assert.NotContains(t, resp.Body.String(), "id=\"commit-notes-edit-button\"")
|
|
assert.NotContains(t, resp.Body.String(), "data-modal=\"#delete-note-modal\"")
|
|
})
|
|
})
|
|
}
|