summaryrefslogtreecommitdiffstats
path: root/tests/integration/proctected_branch_test.go
blob: 9c6e5e3cae72a655560cfccff097721b38573b3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
// Copyright 2024 The Forgejo Authors. All rights reserved.
// SPDX-License-Identifier: MIT

package integration

import (
	"net/http"
	"net/url"
	"strconv"
	"strings"
	"testing"

	git_model "code.gitea.io/gitea/models/git"
	repo_model "code.gitea.io/gitea/models/repo"
	"code.gitea.io/gitea/models/unittest"
	"code.gitea.io/gitea/tests"

	"github.com/stretchr/testify/assert"
)

func TestProtectedBranch_AdminEnforcement(t *testing.T) {
	onGiteaRun(t, func(t *testing.T, u *url.URL) {
		session := loginUser(t, "user1")
		testRepoFork(t, session, "user2", "repo1", "user1", "repo1")
		testEditFileToNewBranch(t, session, "user1", "repo1", "master", "add-readme", "README.md", "WIP")
		repo := unittest.AssertExistsAndLoadBean(t, &repo_model.Repository{OwnerID: 1, Name: "repo1"})

		req := NewRequestWithValues(t, "POST", "user1/repo1/compare/master...add-readme", map[string]string{
			"_csrf": GetCSRF(t, session, "user1/repo1/compare/master...add-readme"),
			"title": "pull request",
		})
		session.MakeRequest(t, req, http.StatusOK)

		t.Run("No protected branch", func(t *testing.T) {
			defer tests.PrintCurrentTest(t)()

			req = NewRequest(t, "GET", "/user1/repo1/pulls/1")
			resp := session.MakeRequest(t, req, http.StatusOK)
			doc := NewHTMLParser(t, resp.Body)

			text := strings.TrimSpace(doc.doc.Find(".merge-section").Text())
			assert.Contains(t, text, "This pull request can be merged automatically.")
			assert.Contains(t, text, "'canMergeNow':  true")
		})

		t.Run("Without admin enforcement", func(t *testing.T) {
			defer tests.PrintCurrentTest(t)()

			req := NewRequestWithValues(t, "POST", "/user1/repo1/settings/branches/edit", map[string]string{
				"_csrf":              GetCSRF(t, session, "/user1/repo1/settings/branches/edit"),
				"rule_name":          "master",
				"required_approvals": "1",
			})
			session.MakeRequest(t, req, http.StatusSeeOther)

			req = NewRequest(t, "GET", "/user1/repo1/pulls/1")
			resp := session.MakeRequest(t, req, http.StatusOK)
			doc := NewHTMLParser(t, resp.Body)

			text := strings.TrimSpace(doc.doc.Find(".merge-section").Text())
			assert.Contains(t, text, "This pull request doesn't have enough approvals yet. 0 of 1 approvals granted.")
			assert.Contains(t, text, "'canMergeNow':  true")
		})

		t.Run("With admin enforcement", func(t *testing.T) {
			defer tests.PrintCurrentTest(t)()

			protectedBranch := unittest.AssertExistsAndLoadBean(t, &git_model.ProtectedBranch{RuleName: "master", RepoID: repo.ID})
			req := NewRequestWithValues(t, "POST", "/user1/repo1/settings/branches/edit", map[string]string{
				"_csrf":              GetCSRF(t, session, "/user1/repo1/settings/branches/edit"),
				"rule_name":          "master",
				"rule_id":            strconv.FormatInt(protectedBranch.ID, 10),
				"required_approvals": "1",
				"apply_to_admins":    "true",
			})
			session.MakeRequest(t, req, http.StatusSeeOther)

			req = NewRequest(t, "GET", "/user1/repo1/pulls/1")
			resp := session.MakeRequest(t, req, http.StatusOK)
			doc := NewHTMLParser(t, resp.Body)

			text := strings.TrimSpace(doc.doc.Find(".merge-section").Text())
			assert.Contains(t, text, "This pull request doesn't have enough approvals yet. 0 of 1 approvals granted.")
			assert.Contains(t, text, "'canMergeNow':  false")
		})
	})
}