2021-10-18 05:36:56 +00:00
|
|
|
// Copyright 2021 The Gitea Authors. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2021-10-18 05:36:56 +00:00
|
|
|
|
2022-09-02 19:18:23 +00:00
|
|
|
package integration
|
2021-10-18 05:36:56 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
"net/url"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"code.gitea.io/gitea/modules/setting"
|
|
|
|
api "code.gitea.io/gitea/modules/structs"
|
2022-06-19 23:48:17 +00:00
|
|
|
"code.gitea.io/gitea/routers"
|
2021-10-18 05:36:56 +00:00
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestNodeinfo(t *testing.T) {
|
2022-06-19 23:48:17 +00:00
|
|
|
setting.Federation.Enabled = true
|
2023-08-12 16:30:16 +00:00
|
|
|
testWebRoutes = routers.NormalRoutes()
|
2022-06-19 23:48:17 +00:00
|
|
|
defer func() {
|
|
|
|
setting.Federation.Enabled = false
|
2023-08-12 16:30:16 +00:00
|
|
|
testWebRoutes = routers.NormalRoutes()
|
2022-06-19 23:48:17 +00:00
|
|
|
}()
|
2021-10-18 05:36:56 +00:00
|
|
|
|
2022-06-19 23:48:17 +00:00
|
|
|
onGiteaRun(t, func(*testing.T, *url.URL) {
|
2023-12-21 23:59:59 +00:00
|
|
|
req := NewRequest(t, "GET", "/api/v1/nodeinfo")
|
2021-10-18 05:36:56 +00:00
|
|
|
resp := MakeRequest(t, req, http.StatusOK)
|
2022-12-17 06:22:34 +00:00
|
|
|
VerifyJSONSchema(t, resp, "nodeinfo_2.1.json")
|
|
|
|
|
2021-10-18 05:36:56 +00:00
|
|
|
var nodeinfo api.NodeInfo
|
|
|
|
DecodeJSON(t, resp, &nodeinfo)
|
2022-05-02 13:35:45 +00:00
|
|
|
assert.True(t, nodeinfo.OpenRegistrations)
|
2023-02-04 10:20:21 +00:00
|
|
|
assert.Equal(t, "forgejo", nodeinfo.Software.Name)
|
2024-02-24 12:38:43 +00:00
|
|
|
assert.Equal(t, 29, nodeinfo.Usage.Users.Total)
|
|
|
|
assert.Equal(t, 22, nodeinfo.Usage.LocalPosts)
|
2024-06-09 10:50:53 +00:00
|
|
|
assert.Equal(t, 4, nodeinfo.Usage.LocalComments)
|
2021-10-18 05:36:56 +00:00
|
|
|
})
|
|
|
|
}
|