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