Skip to content

Commit

Permalink
api: integration test for nodeinfo (go-gitea#17346)
Browse files Browse the repository at this point in the history
  • Loading branch information
techknowlogick authored and Stelios Malathouras committed Mar 28, 2022
1 parent ae362e4 commit d3871c6
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 2021 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 d3871c6

Please sign in to comment.