2017-04-25 12:54:51 +05:30
|
|
|
// 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 TestViewRepo(t *testing.T) {
|
2017-04-28 18:53:28 +05:30
|
|
|
prepareTestEnv(t)
|
2017-04-25 12:54:51 +05:30
|
|
|
|
2017-06-10 06:11:36 +05:30
|
|
|
req := NewRequest(t, "GET", "/user2/repo1")
|
2017-04-25 12:54:51 +05:30
|
|
|
resp := MakeRequest(req)
|
|
|
|
assert.EqualValues(t, http.StatusOK, resp.HeaderCode)
|
2017-06-15 08:20:12 +05:30
|
|
|
|
|
|
|
req = NewRequest(t, "GET", "/user3/repo3")
|
|
|
|
resp = MakeRequest(req)
|
|
|
|
assert.EqualValues(t, http.StatusNotFound, resp.HeaderCode)
|
|
|
|
|
|
|
|
session := loginUser(t, "user1", "password")
|
|
|
|
resp = session.MakeRequest(t, req)
|
|
|
|
assert.EqualValues(t, http.StatusNotFound, resp.HeaderCode)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestViewRepo2(t *testing.T) {
|
|
|
|
prepareTestEnv(t)
|
|
|
|
|
|
|
|
req := NewRequest(t, "GET", "/user3/repo3")
|
|
|
|
session := loginUser(t, "user2", "password")
|
|
|
|
resp := session.MakeRequest(t, req)
|
|
|
|
assert.EqualValues(t, http.StatusOK, resp.HeaderCode)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestViewRepo3(t *testing.T) {
|
|
|
|
prepareTestEnv(t)
|
|
|
|
|
|
|
|
req := NewRequest(t, "GET", "/user3/repo3")
|
|
|
|
session := loginUser(t, "user3", "password")
|
|
|
|
resp := session.MakeRequest(t, req)
|
|
|
|
assert.EqualValues(t, http.StatusOK, resp.HeaderCode)
|
2017-04-25 12:54:51 +05:30
|
|
|
}
|