Sfoglia il codice sorgente

api: integration test for nodeinfo (#17346)

tags/v1.16.0-rc1
techknowlogick 2 anni fa
parent
commit
3397fee9fa
Nessun account collegato all'indirizzo email del committer
1 ha cambiato i file con 31 aggiunte e 0 eliminazioni
  1. 31
    0
      integrations/api_nodeinfo_test.go

+ 31
- 0
integrations/api_nodeinfo_test.go Vedi File

@@ -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)
})
}

Loading…
Annulla
Salva