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