2017-11-03 19:23:59 -04: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"
|
|
|
|
|
2021-11-16 03:53:21 -05:00
|
|
|
"code.gitea.io/gitea/models/unittest"
|
2021-11-24 04:49:20 -05:00
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2022-07-21 15:18:41 -04:00
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
2017-11-03 19:23:59 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestAPIReposRaw(t *testing.T) {
|
2019-11-25 18:21:37 -05:00
|
|
|
defer prepareTestEnv(t)()
|
2022-08-15 22:22:25 -04:00
|
|
|
user := unittest.AssertExistsAndLoadBean(t, &user_model.User{ID: 2})
|
2017-11-03 19:23:59 -04:00
|
|
|
// Login as User2.
|
|
|
|
session := loginUser(t, user.Name)
|
2018-09-10 12:15:52 -04:00
|
|
|
token := getTokenForLoggedInUser(t, session)
|
2017-11-03 19:23:59 -04:00
|
|
|
|
|
|
|
for _, ref := range [...]string{
|
|
|
|
"master", // Branch
|
|
|
|
"v1.1", // Tag
|
|
|
|
"65f1bf27bc3bf70f64657658635e66094edbcb4d", // Commit
|
|
|
|
} {
|
2018-09-10 12:15:52 -04:00
|
|
|
req := NewRequestf(t, "GET", "/api/v1/repos/%s/repo1/raw/%s/README.md?token="+token, user.Name, ref)
|
2022-07-21 15:18:41 -04:00
|
|
|
resp := session.MakeRequest(t, req, http.StatusOK)
|
|
|
|
assert.EqualValues(t, "file", resp.Header().Get("x-gitea-object-type"))
|
2017-11-03 19:23:59 -04:00
|
|
|
}
|
2017-11-04 13:26:38 -04:00
|
|
|
// Test default branch
|
2018-09-10 12:15:52 -04:00
|
|
|
req := NewRequestf(t, "GET", "/api/v1/repos/%s/repo1/raw/README.md?token="+token, user.Name)
|
2022-07-21 15:18:41 -04:00
|
|
|
resp := session.MakeRequest(t, req, http.StatusOK)
|
|
|
|
assert.EqualValues(t, "file", resp.Header().Get("x-gitea-object-type"))
|
2017-11-03 19:23:59 -04:00
|
|
|
}
|