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