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