From 01322af2e8e213209cddff5356b317ce4875fca3 Mon Sep 17 00:00:00 2001 From: Mura Li Date: Thu, 15 Jun 2017 19:20:39 +0800 Subject: [PATCH] Add integration test for pull-request merge (#1912) --- integrations/editor_test.go | 4 ++- integrations/pull_create_test.go | 4 ++- integrations/pull_merge_test.go | 53 ++++++++++++++++++++++++++++++++ integrations/repo_fork_test.go | 4 ++- 4 files changed, 62 insertions(+), 3 deletions(-) create mode 100644 integrations/pull_merge_test.go diff --git a/integrations/editor_test.go b/integrations/editor_test.go index 64212d3f29..540caca264 100644 --- a/integrations/editor_test.go +++ b/integrations/editor_test.go @@ -101,7 +101,7 @@ func TestCreateFileOnProtectedBranch(t *testing.T) { assert.Contains(t, string(resp.Body), "Can not commit to protected branch 'master'.") } -func testEditFile(t *testing.T, session *TestSession, user, repo, branch, filePath string) { +func testEditFile(t *testing.T, session *TestSession, user, repo, branch, filePath string) *TestResponse { newContent := "Hello, World (Edited)\n" @@ -134,6 +134,8 @@ func testEditFile(t *testing.T, session *TestSession, user, repo, branch, filePa resp = session.MakeRequest(t, req) assert.EqualValues(t, http.StatusOK, resp.HeaderCode) assert.EqualValues(t, newContent, string(resp.Body)) + + return resp } func TestEditFile(t *testing.T) { diff --git a/integrations/pull_create_test.go b/integrations/pull_create_test.go index f3d4472981..ac8df33c6a 100644 --- a/integrations/pull_create_test.go +++ b/integrations/pull_create_test.go @@ -14,7 +14,7 @@ import ( "github.com/stretchr/testify/assert" ) -func testPullCreate(t *testing.T, session *TestSession, user, repo, branch string) { +func testPullCreate(t *testing.T, session *TestSession, user, repo, branch string) *TestResponse { req := NewRequest(t, "GET", path.Join(user, repo)) resp := session.MakeRequest(t, req) assert.EqualValues(t, http.StatusOK, resp.HeaderCode) @@ -45,6 +45,8 @@ func testPullCreate(t *testing.T, session *TestSession, user, repo, branch strin assert.EqualValues(t, http.StatusFound, resp.HeaderCode) //TODO check the redirected URL + + return resp } func TestPullCreate(t *testing.T) { diff --git a/integrations/pull_merge_test.go b/integrations/pull_merge_test.go new file mode 100644 index 0000000000..1b9337a673 --- /dev/null +++ b/integrations/pull_merge_test.go @@ -0,0 +1,53 @@ +// 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" + "strings" + "testing" + + "github.com/stretchr/testify/assert" +) + +func testPullMerge(t *testing.T, session *TestSession, user, repo, pullnum string) *TestResponse { + req := NewRequest(t, "GET", path.Join(user, repo, "pulls", pullnum)) + 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("form.ui.form>button.ui.green.button").Parent().Attr("action") + assert.True(t, exists, "The template has changed") + req = NewRequestBody(t, "POST", link, + bytes.NewBufferString(url.Values{ + "_csrf": []string{htmlDoc.GetInputValueByName("_csrf")}, + }.Encode()), + ) + req.Header.Add("Content-Type", "application/x-www-form-urlencoded") + resp = session.MakeRequest(t, req) + assert.EqualValues(t, http.StatusFound, resp.HeaderCode) + + return resp +} + +func TestPullMerge(t *testing.T) { + prepareTestEnv(t) + session := loginUser(t, "user1", "password") + testRepoFork(t, session) + testEditFile(t, session, "user1", "repo1", "master", "README.md") + + resp := testPullCreate(t, session, "user1", "repo1", "master") + redirectedURL := resp.Headers["Location"] + assert.NotEmpty(t, redirectedURL, "Redirected URL is not found") + + elem := strings.Split(redirectedURL[0], "/") + assert.EqualValues(t, "pulls", elem[3]) + testPullMerge(t, session, elem[1], elem[2], elem[4]) +} diff --git a/integrations/repo_fork_test.go b/integrations/repo_fork_test.go index 59a15d8483..a0cf85a01e 100644 --- a/integrations/repo_fork_test.go +++ b/integrations/repo_fork_test.go @@ -13,7 +13,7 @@ import ( "github.com/stretchr/testify/assert" ) -func testRepoFork(t *testing.T, session *TestSession) { +func testRepoFork(t *testing.T, session *TestSession) *TestResponse { // Step0: check the existence of the to-fork repo req := NewRequest(t, "GET", "/user1/repo1") resp := session.MakeRequest(t, req) @@ -53,6 +53,8 @@ func testRepoFork(t *testing.T, session *TestSession) { req = NewRequest(t, "GET", "/user1/repo1") resp = session.MakeRequest(t, req) assert.EqualValues(t, http.StatusOK, resp.HeaderCode) + + return resp } func TestRepoFork(t *testing.T) {