Skip to content

Commit

Permalink
api: integration test for nodeinfo
Browse files Browse the repository at this point in the history
Add a minimal integration test for the nodeinfo endpoint added
in go-gitea#16953

Signed-off-by: Loïc Dachary <loic@dachary.org>
  • Loading branch information
Loïc Dachary authored and techknowlogick committed Oct 18, 2021
1 parent 4a57c9e commit 5660ad4
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions integrations/api_nodeinfo_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
// Copyright 2018 The Gitea Authors. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.

package integrations

import (
"net/http"
"net/url"
"testing"

"code.gitea.io/gitea/modules/setting"
api "code.gitea.io/gitea/modules/structs"

"github.com/stretchr/testify/assert"
)

func TestNodeinfo(t *testing.T) {
onGiteaRun(t, func(*testing.T, *url.URL) {
setting.Federation.Enabled = true
defer func() {
setting.Federation.Enabled = false
}()

req := NewRequestf(t, "GET", "/api/v1/nodeinfo")
resp := MakeRequest(t, req, http.StatusOK)
var nodeinfo api.NodeInfo
DecodeJSON(t, resp, &nodeinfo)
assert.Equal(t, "gitea", nodeinfo.Software.Name)
})
}

0 comments on commit 5660ad4

Please sign in to comment.