aboutsummaryrefslogtreecommitdiffstats
path: root/integrations/pull_create_test.go
diff options
context:
space:
mode:
authorMura Li <typeless@users.noreply.github.com>2017-06-15 15:01:51 +0800
committerBo-Yi Wu <appleboy.tw@gmail.com>2017-06-15 02:01:51 -0500
commit033aaf4b38931d08926b9c779937577913192aa1 (patch)
tree282d9c0d6ad91f6b57b1ae337b33c8ec8786d310 /integrations/pull_create_test.go
parent2691673588568d8033f83527e40bd67c2904b653 (diff)
downloadgitea-033aaf4b38931d08926b9c779937577913192aa1.tar.gz
gitea-033aaf4b38931d08926b9c779937577913192aa1.zip
Add pull-create integration test (#1972)
Diffstat (limited to 'integrations/pull_create_test.go')
-rw-r--r--integrations/pull_create_test.go56
1 files changed, 56 insertions, 0 deletions
diff --git a/integrations/pull_create_test.go b/integrations/pull_create_test.go
new file mode 100644
index 0000000000..953469e605
--- /dev/null
+++ b/integrations/pull_create_test.go
@@ -0,0 +1,56 @@
+// Copyright 2017 The Gitea Authors. All rights reserved.
+// Use of this source code is governed by a MIT-style
+// license that can be found in the LICENSE file.
+
+package integrations
+
+import (
+ "bytes"
+ "net/http"
+ "net/url"
+ "path"
+ "testing"
+
+ "github.com/stretchr/testify/assert"
+)
+
+func testPullCreate(t *testing.T, session *TestSession, user, repo, branch string) {
+ req := NewRequest(t, "GET", path.Join(user, repo))
+ resp := session.MakeRequest(t, req)
+ assert.EqualValues(t, http.StatusOK, resp.HeaderCode)
+
+ // Click the little green button to craete a pull
+ htmlDoc, err := NewHtmlParser(resp.Body)
+ assert.NoError(t, err)
+ link, exists := htmlDoc.doc.Find("button.ui.green.small.button").Parent().Attr("href")
+ assert.True(t, exists, "The template has changed")
+
+ req = NewRequest(t, "GET", link)
+ resp = session.MakeRequest(t, req)
+ assert.EqualValues(t, http.StatusOK, resp.HeaderCode)
+
+ // Submit the form for creating the pull
+ htmlDoc, err = NewHtmlParser(resp.Body)
+ assert.NoError(t, err)
+ link, exists = htmlDoc.doc.Find("form.ui.form").Attr("action")
+ assert.True(t, exists, "The template has changed")
+ req = NewRequestBody(t, "POST", link,
+ bytes.NewBufferString(url.Values{
+ "_csrf": []string{htmlDoc.GetInputValueByName("_csrf")},
+ "title": []string{"This is a pull title"},
+ }.Encode()),
+ )
+ req.Header.Add("Content-Type", "application/x-www-form-urlencoded")
+ resp = session.MakeRequest(t, req)
+ assert.EqualValues(t, http.StatusFound, resp.HeaderCode)
+
+ //TODO check the redirected URL
+}
+
+func TestPullCreate(t *testing.T) {
+ prepareTestEnv(t)
+ session := loginUser(t, "user1", "password")
+ testRepoFork(t, session)
+ testEditFile(t, session, "user1", "repo1", "master", "README.md")
+ testPullCreate(t, session, "user1", "repo1", "master")
+}