2017-05-31 14:47:42 +00:00
|
|
|
// Copyright 2017 The Gitea Authors. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2017-05-31 14:47:42 +00:00
|
|
|
|
2022-09-02 19:18:23 +00:00
|
|
|
package integration
|
2017-05-31 14:47:42 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
"testing"
|
|
|
|
|
2022-09-02 19:18:23 +00:00
|
|
|
"code.gitea.io/gitea/tests"
|
2022-09-05 06:04:18 +00:00
|
|
|
|
2017-05-31 14:47:42 +00:00
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestPullCompare(t *testing.T) {
|
2022-09-02 19:18:23 +00:00
|
|
|
defer tests.PrepareTestEnv(t)()
|
2017-05-31 14:47:42 +00:00
|
|
|
|
2017-06-17 04:49:45 +00:00
|
|
|
session := loginUser(t, "user2")
|
2017-06-10 00:41:36 +00:00
|
|
|
req := NewRequest(t, "GET", "/user2/repo1/pulls")
|
2017-07-07 19:36:47 +00:00
|
|
|
resp := session.MakeRequest(t, req, http.StatusOK)
|
2017-06-17 16:29:59 +00:00
|
|
|
htmlDoc := NewHTMLParser(t, resp.Body)
|
2023-04-30 03:33:25 +00:00
|
|
|
link, exists := htmlDoc.doc.Find(".new-pr-button").Attr("href")
|
2017-05-31 14:47:42 +00:00
|
|
|
assert.True(t, exists, "The template has changed")
|
|
|
|
|
2017-06-10 00:41:36 +00:00
|
|
|
req = NewRequest(t, "GET", link)
|
2017-07-07 19:36:47 +00:00
|
|
|
resp = session.MakeRequest(t, req, http.StatusOK)
|
2017-12-03 22:46:01 +00:00
|
|
|
assert.EqualValues(t, http.StatusOK, resp.Code)
|
2017-05-31 14:47:42 +00:00
|
|
|
}
|