forked from NYANDEV/forgejo
ae2839938e
- Change the values for the nodeinfo API, to use branded values. - Resolves https://codeberg.org/forgejo/forgejo/issues/257 (cherry picked from commit 4608c57688d8b12dbc265dd21bfe7cd269efb116) (cherry picked from commit e837e8a52943f803a40cd0151e24f7fe8edb11ec) (cherry picked from commit 6601328d3ce9b57dbaa768dd2d41295293ff94f9) (cherry picked from commit c6be21d4870e6b748a85f0da19bd4b717875b224) (cherry picked from commit692ccd03a9
) (cherry picked from commit 4976b1a4f356c2319308782145f80325ae17b303) (cherry picked from commitddb2d26b0d
) Conflicts: tests/integration/api_nodeinfo_test.go (cherry picked from commitff960a78d8
) (cherry picked from commit5200b186c7
) (cherry picked from commit5c97ae00e6
)
40 lines
1 KiB
Go
40 lines
1 KiB
Go
// Copyright 2021 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package integration
|
|
|
|
import (
|
|
"context"
|
|
"net/http"
|
|
"net/url"
|
|
"testing"
|
|
|
|
"code.gitea.io/gitea/modules/setting"
|
|
api "code.gitea.io/gitea/modules/structs"
|
|
"code.gitea.io/gitea/routers"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestNodeinfo(t *testing.T) {
|
|
setting.Federation.Enabled = true
|
|
c = routers.NormalRoutes(context.TODO())
|
|
defer func() {
|
|
setting.Federation.Enabled = false
|
|
c = routers.NormalRoutes(context.TODO())
|
|
}()
|
|
|
|
onGiteaRun(t, func(*testing.T, *url.URL) {
|
|
req := NewRequestf(t, "GET", "/api/v1/nodeinfo")
|
|
resp := MakeRequest(t, req, http.StatusOK)
|
|
VerifyJSONSchema(t, resp, "nodeinfo_2.1.json")
|
|
|
|
var nodeinfo api.NodeInfo
|
|
DecodeJSON(t, resp, &nodeinfo)
|
|
assert.True(t, nodeinfo.OpenRegistrations)
|
|
assert.Equal(t, "forgejo", nodeinfo.Software.Name)
|
|
assert.Equal(t, 25, nodeinfo.Usage.Users.Total)
|
|
assert.Equal(t, 18, nodeinfo.Usage.LocalPosts)
|
|
assert.Equal(t, 2, nodeinfo.Usage.LocalComments)
|
|
})
|
|
}
|