2017-05-31 08:47:42 -06: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"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestPullCompare(t *testing.T) {
|
|
|
|
prepareTestEnv(t)
|
|
|
|
|
2017-06-16 22:49:45 -06:00
|
|
|
session := loginUser(t, "user2")
|
2017-06-09 18:41:36 -06:00
|
|
|
req := NewRequest(t, "GET", "/user2/repo1/pulls")
|
2017-07-07 13:36:47 -06:00
|
|
|
resp := session.MakeRequest(t, req, http.StatusOK)
|
2017-06-17 10:29:59 -06:00
|
|
|
htmlDoc := NewHTMLParser(t, resp.Body)
|
2017-12-30 17:47:52 -07:00
|
|
|
link, exists := htmlDoc.doc.Find(".ui.three.column.grid").Find(".ui.green.button").Attr("href")
|
2017-05-31 08:47:42 -06:00
|
|
|
assert.True(t, exists, "The template has changed")
|
|
|
|
|
2017-06-09 18:41:36 -06:00
|
|
|
req = NewRequest(t, "GET", link)
|
2017-07-07 13:36:47 -06:00
|
|
|
resp = session.MakeRequest(t, req, http.StatusOK)
|
2017-12-03 15:46:01 -07:00
|
|
|
assert.EqualValues(t, http.StatusOK, resp.Code)
|
2017-05-31 08:47:42 -06:00
|
|
|
}
|