2017-06-15 09:01:51 +02:00
|
|
|
// 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 (
|
|
|
|
"net/http"
|
2017-12-03 23:46:01 +01:00
|
|
|
"net/http/httptest"
|
2017-06-15 09:01:51 +02:00
|
|
|
"path"
|
2017-06-21 03:00:03 +02:00
|
|
|
"strings"
|
2017-06-15 09:01:51 +02:00
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
2018-02-18 21:06:37 +01:00
|
|
|
func testPullCreate(t *testing.T, session *TestSession, user, repo, branch, title string) *httptest.ResponseRecorder {
|
2017-06-15 09:01:51 +02:00
|
|
|
req := NewRequest(t, "GET", path.Join(user, repo))
|
2017-07-07 21:36:47 +02:00
|
|
|
resp := session.MakeRequest(t, req, http.StatusOK)
|
2017-06-15 09:01:51 +02:00
|
|
|
|
2019-02-20 00:09:47 +01:00
|
|
|
// Click the PR button to create a pull
|
2017-06-17 18:29:59 +02:00
|
|
|
htmlDoc := NewHTMLParser(t, resp.Body)
|
2019-02-20 00:09:47 +01:00
|
|
|
link, exists := htmlDoc.doc.Find("#new-pull-request").Parent().Attr("href")
|
2017-06-15 09:01:51 +02:00
|
|
|
assert.True(t, exists, "The template has changed")
|
2017-06-21 03:00:03 +02:00
|
|
|
if branch != "master" {
|
|
|
|
link = strings.Replace(link, ":master", ":"+branch, 1)
|
|
|
|
}
|
2017-06-15 09:01:51 +02:00
|
|
|
|
|
|
|
req = NewRequest(t, "GET", link)
|
2017-07-07 21:36:47 +02:00
|
|
|
resp = session.MakeRequest(t, req, http.StatusOK)
|
2017-06-15 09:01:51 +02:00
|
|
|
|
|
|
|
// Submit the form for creating the pull
|
2017-06-17 18:29:59 +02:00
|
|
|
htmlDoc = NewHTMLParser(t, resp.Body)
|
2017-06-15 09:01:51 +02:00
|
|
|
link, exists = htmlDoc.doc.Find("form.ui.form").Attr("action")
|
|
|
|
assert.True(t, exists, "The template has changed")
|
2017-06-17 06:49:45 +02:00
|
|
|
req = NewRequestWithValues(t, "POST", link, map[string]string{
|
|
|
|
"_csrf": htmlDoc.GetCSRF(),
|
2018-02-18 21:06:37 +01:00
|
|
|
"title": title,
|
2017-06-17 06:49:45 +02:00
|
|
|
})
|
2017-07-07 21:36:47 +02:00
|
|
|
resp = session.MakeRequest(t, req, http.StatusFound)
|
2017-06-15 09:01:51 +02:00
|
|
|
|
2017-06-15 13:20:39 +02:00
|
|
|
return resp
|
2017-06-15 09:01:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestPullCreate(t *testing.T) {
|
|
|
|
prepareTestEnv(t)
|
2017-06-17 06:49:45 +02:00
|
|
|
session := loginUser(t, "user1")
|
2017-10-15 17:06:07 +02:00
|
|
|
testRepoFork(t, session, "user2", "repo1", "user1", "repo1")
|
2017-10-15 23:54:53 +02:00
|
|
|
testEditFile(t, session, "user1", "repo1", "master", "README.md", "Hello, World (Edited)\n")
|
2018-02-18 21:06:37 +01:00
|
|
|
resp := testPullCreate(t, session, "user1", "repo1", "master", "This is a pull title")
|
2018-01-05 11:56:52 +01:00
|
|
|
|
|
|
|
// check the redirected URL
|
|
|
|
url := resp.HeaderMap.Get("Location")
|
|
|
|
assert.Regexp(t, "^/user2/repo1/pulls/[0-9]*$", url)
|
|
|
|
|
|
|
|
// check .diff can be accessed and matches performed change
|
|
|
|
req := NewRequest(t, "GET", url+".diff")
|
|
|
|
resp = session.MakeRequest(t, req, http.StatusOK)
|
2018-01-07 14:10:20 +01:00
|
|
|
assert.Regexp(t, `\+Hello, World \(Edited\)`, resp.Body)
|
2018-01-05 11:56:52 +01:00
|
|
|
assert.Regexp(t, "^diff", resp.Body)
|
|
|
|
assert.NotRegexp(t, "diff.*diff", resp.Body) // not two diffs, just one
|
2018-01-07 14:10:20 +01:00
|
|
|
|
|
|
|
// check .patch can be accessed and matches performed change
|
|
|
|
req = NewRequest(t, "GET", url+".patch")
|
|
|
|
resp = session.MakeRequest(t, req, http.StatusOK)
|
|
|
|
assert.Regexp(t, `\+Hello, World \(Edited\)`, resp.Body)
|
|
|
|
assert.Regexp(t, "diff", resp.Body)
|
|
|
|
assert.Regexp(t, `Subject: \[PATCH\] Update 'README.md'`, resp.Body)
|
|
|
|
assert.NotRegexp(t, "diff.*diff", resp.Body) // not two diffs, just one
|
2017-06-15 09:01:51 +02:00
|
|
|
}
|
2018-02-18 21:06:37 +01:00
|
|
|
|
|
|
|
func TestPullCreate_TitleEscape(t *testing.T) {
|
|
|
|
prepareTestEnv(t)
|
|
|
|
session := loginUser(t, "user1")
|
|
|
|
testRepoFork(t, session, "user2", "repo1", "user1", "repo1")
|
|
|
|
testEditFile(t, session, "user1", "repo1", "master", "README.md", "Hello, World (Edited)\n")
|
|
|
|
resp := testPullCreate(t, session, "user1", "repo1", "master", "<i>XSS PR</i>")
|
|
|
|
|
|
|
|
// check the redirected URL
|
|
|
|
url := resp.HeaderMap.Get("Location")
|
|
|
|
assert.Regexp(t, "^/user2/repo1/pulls/[0-9]*$", url)
|
|
|
|
|
|
|
|
// Edit title
|
|
|
|
req := NewRequest(t, "GET", url)
|
|
|
|
resp = session.MakeRequest(t, req, http.StatusOK)
|
|
|
|
htmlDoc := NewHTMLParser(t, resp.Body)
|
|
|
|
editTestTitleURL, exists := htmlDoc.doc.Find("#save-edit-title").First().Attr("data-update-url")
|
|
|
|
assert.True(t, exists, "The template has changed")
|
|
|
|
|
|
|
|
req = NewRequestWithValues(t, "POST", editTestTitleURL, map[string]string{
|
|
|
|
"_csrf": htmlDoc.GetCSRF(),
|
|
|
|
"title": "<u>XSS PR</u>",
|
|
|
|
})
|
|
|
|
session.MakeRequest(t, req, http.StatusOK)
|
|
|
|
|
|
|
|
req = NewRequest(t, "GET", url)
|
|
|
|
resp = session.MakeRequest(t, req, http.StatusOK)
|
|
|
|
htmlDoc = NewHTMLParser(t, resp.Body)
|
|
|
|
titleHTML, err := htmlDoc.doc.Find(".comments .event .text b").First().Html()
|
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.Equal(t, "<i>XSS PR</i>", titleHTML)
|
|
|
|
titleHTML, err = htmlDoc.doc.Find(".comments .event .text b").Next().Html()
|
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.Equal(t, "<u>XSS PR</u>", titleHTML)
|
|
|
|
}
|