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