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 (
|
2022-08-28 15:13:25 +05:30
|
|
|
"context"
|
2021-10-18 11:06:56 +05:30
|
|
|
"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
|
2022-08-28 15:13:25 +05:30
|
|
|
c = routers.NormalRoutes(context.TODO())
|
2022-06-20 05:18:17 +05:30
|
|
|
defer func() {
|
|
|
|
setting.Federation.Enabled = false
|
2022-08-28 15:13:25 +05:30
|
|
|
c = routers.NormalRoutes(context.TODO())
|
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)
|
2022-09-20 13:29:20 +05:30
|
|
|
assert.Equal(t, 24, nodeinfo.Usage.Users.Total)
|
2022-05-16 15:19:17 +05:30
|
|
|
assert.Equal(t, 17, nodeinfo.Usage.LocalPosts)
|
2022-05-02 19:05:45 +05:30
|
|
|
assert.Equal(t, 2, nodeinfo.Usage.LocalComments)
|
2021-10-18 11:06:56 +05:30
|
|
|
})
|
|
|
|
}
|