2023-02-07 11:23:49 +01:00
|
|
|
// Copyright The Forgejo Authors.
|
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
|
|
|
|
package integration
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
"testing"
|
|
|
|
|
2024-03-19 08:16:19 +01:00
|
|
|
auth_model "code.gitea.io/gitea/models/auth"
|
|
|
|
"code.gitea.io/gitea/modules/setting"
|
|
|
|
"code.gitea.io/gitea/modules/test"
|
|
|
|
"code.gitea.io/gitea/routers"
|
2023-11-11 12:15:26 +01:00
|
|
|
v1 "code.gitea.io/gitea/routers/api/forgejo/v1"
|
2023-02-07 11:23:49 +01:00
|
|
|
"code.gitea.io/gitea/tests"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestAPIForgejoVersion(t *testing.T) {
|
|
|
|
defer tests.PrepareTestEnv(t)()
|
|
|
|
|
2024-03-19 08:16:19 +01:00
|
|
|
t.Run("Version", func(t *testing.T) {
|
|
|
|
req := NewRequest(t, "GET", "/api/forgejo/v1/version")
|
|
|
|
resp := MakeRequest(t, req, http.StatusOK)
|
2023-02-07 11:23:49 +01:00
|
|
|
|
2024-03-19 08:16:19 +01:00
|
|
|
var version v1.Version
|
|
|
|
DecodeJSON(t, resp, &version)
|
|
|
|
assert.Equal(t, "1.0.0", *version.Version)
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("Versions with REQUIRE_SIGNIN_VIEW enabled", func(t *testing.T) {
|
|
|
|
defer test.MockVariableValue(&setting.Service.RequireSignInView, true)()
|
|
|
|
defer test.MockVariableValue(&testWebRoutes, routers.NormalRoutes())()
|
|
|
|
|
|
|
|
t.Run("Get forgejo version without auth", func(t *testing.T) {
|
|
|
|
defer tests.PrintCurrentTest(t)()
|
|
|
|
|
|
|
|
// GET api without auth
|
|
|
|
req := NewRequest(t, "GET", "/api/forgejo/v1/version")
|
|
|
|
MakeRequest(t, req, http.StatusForbidden)
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("Get forgejo version without auth", func(t *testing.T) {
|
|
|
|
defer tests.PrintCurrentTest(t)()
|
|
|
|
username := "user1"
|
|
|
|
session := loginUser(t, username)
|
|
|
|
token := getTokenForLoggedInUser(t, session, auth_model.AccessTokenScopeWriteRepository)
|
|
|
|
|
|
|
|
// GET api with auth
|
|
|
|
req := NewRequest(t, "GET", "/api/forgejo/v1/version").AddTokenAuth(token)
|
|
|
|
resp := MakeRequest(t, req, http.StatusOK)
|
|
|
|
|
|
|
|
var version v1.Version
|
|
|
|
DecodeJSON(t, resp, &version)
|
|
|
|
assert.Equal(t, "1.0.0", *version.Version)
|
|
|
|
})
|
|
|
|
})
|
2023-02-07 11:23:49 +01:00
|
|
|
}
|