mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2026-03-05 11:10:25 -05:00
Closes #9129. I decided to try myself in contributing to Forgejo after having found this bug mentioned on Fedi. I have also added a basic test for this behaviour, but this means that this PR adds a SHA-256 repo to the fixture set, so it can be reused in other tests. Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/10309 Reviewed-by: Lucas <sclu1034@noreply.codeberg.org> Reviewed-by: 0ko <0ko@noreply.codeberg.org> Reviewed-by: Gusted <gusted@noreply.codeberg.org> Co-authored-by: Nikita Karamov <me@kytta.dev> Co-committed-by: Nikita Karamov <me@kytta.dev>
35 lines
978 B
Go
35 lines
978 B
Go
// Copyright 2021 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package integration
|
|
|
|
import (
|
|
"net/http"
|
|
"testing"
|
|
|
|
"forgejo.org/modules/setting"
|
|
api "forgejo.org/modules/structs"
|
|
"forgejo.org/modules/test"
|
|
"forgejo.org/routers"
|
|
"forgejo.org/tests"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestNodeinfo(t *testing.T) {
|
|
defer test.MockVariableValue(&setting.Federation.Enabled, true)()
|
|
defer test.MockVariableValue(&testWebRoutes, routers.NormalRoutes())()
|
|
defer tests.PrepareTestEnv(t)()
|
|
|
|
req := NewRequest(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, 29, nodeinfo.Usage.Users.Total)
|
|
assert.Equal(t, 23, nodeinfo.Usage.LocalPosts)
|
|
assert.Equal(t, 4, nodeinfo.Usage.LocalComments)
|
|
}
|