mirror of
https://github.com/argoproj/argo-cd.git
synced 2026-02-20 01:28:45 +01:00
56 lines
1.3 KiB
Go
56 lines
1.3 KiB
Go
package swagger
|
|
|
|
import (
|
|
"encoding/json"
|
|
"net"
|
|
"net/http"
|
|
"testing"
|
|
|
|
"github.com/go-openapi/loads"
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"github.com/argoproj/argo-cd/v3/util/assets"
|
|
)
|
|
|
|
func TestSwaggerUI(t *testing.T) {
|
|
lc := &net.ListenConfig{}
|
|
serve := func(c chan<- string) {
|
|
// listen on first available dynamic (unprivileged) port
|
|
listener, err := lc.Listen(t.Context(), "tcp", ":0")
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
// send back the address so that it can be used
|
|
c <- listener.Addr().String()
|
|
|
|
mux := http.NewServeMux()
|
|
ServeSwaggerUI(mux, assets.SwaggerJSON, "/swagger-ui", "")
|
|
panic(http.Serve(listener, mux))
|
|
}
|
|
|
|
c := make(chan string, 1)
|
|
|
|
// run a local webserver to test data retrieval
|
|
go serve(c)
|
|
|
|
address := <-c
|
|
t.Logf("Listening at address: %s", address)
|
|
|
|
server := "http://" + address
|
|
|
|
specDoc, err := loads.Spec(server + "/swagger.json")
|
|
require.NoError(t, err)
|
|
|
|
_, err = json.MarshalIndent(specDoc.Spec(), "", " ")
|
|
require.NoError(t, err)
|
|
|
|
req, err := http.NewRequestWithContext(t.Context(), http.MethodGet, server+"/swagger.json", http.NoBody)
|
|
require.NoError(t, err)
|
|
|
|
resp, err := http.DefaultClient.Do(req)
|
|
require.NoError(t, err)
|
|
require.Equalf(t, http.StatusOK, resp.StatusCode, "Was expecting status code 200 from swagger-ui, but got %d instead", resp.StatusCode)
|
|
require.NoError(t, resp.Body.Close())
|
|
}
|