mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 21:07:18 +00:00
121 lines
3.0 KiB
Go
121 lines
3.0 KiB
Go
package gateway
|
|
|
|
import (
|
|
"context"
|
|
"flag"
|
|
"fmt"
|
|
"net/http"
|
|
"net/http/httptest"
|
|
"net/url"
|
|
"testing"
|
|
|
|
"github.com/prysmaticlabs/prysm/cmd/beacon-chain/flags"
|
|
"github.com/prysmaticlabs/prysm/shared/testutil/assert"
|
|
"github.com/prysmaticlabs/prysm/shared/testutil/require"
|
|
logTest "github.com/sirupsen/logrus/hooks/test"
|
|
"github.com/urfave/cli/v2"
|
|
)
|
|
|
|
type mockEndpointFactory struct {
|
|
}
|
|
|
|
func (*mockEndpointFactory) Paths() []string {
|
|
return []string{}
|
|
}
|
|
|
|
func (*mockEndpointFactory) Create(_ string) (*Endpoint, error) {
|
|
return nil, nil
|
|
}
|
|
|
|
func (*mockEndpointFactory) IsNil() bool {
|
|
return false
|
|
}
|
|
|
|
func TestGateway_Customized(t *testing.T) {
|
|
mux := http.NewServeMux()
|
|
cert := "cert"
|
|
origins := []string{"origin"}
|
|
size := uint64(100)
|
|
middlewareAddr := "middleware"
|
|
endpointFactory := &mockEndpointFactory{}
|
|
|
|
g := New(
|
|
context.Background(),
|
|
[]PbMux{},
|
|
func(handler http.Handler, writer http.ResponseWriter, request *http.Request) {
|
|
|
|
},
|
|
"",
|
|
"",
|
|
).WithMux(mux).
|
|
WithRemoteCert(cert).
|
|
WithAllowedOrigins(origins).
|
|
WithMaxCallRecvMsgSize(size).
|
|
WithApiMiddleware(middlewareAddr, endpointFactory)
|
|
|
|
assert.Equal(t, mux, g.mux)
|
|
assert.Equal(t, cert, g.remoteCert)
|
|
require.Equal(t, 1, len(g.allowedOrigins))
|
|
assert.Equal(t, origins[0], g.allowedOrigins[0])
|
|
assert.Equal(t, size, g.maxCallRecvMsgSize)
|
|
assert.Equal(t, middlewareAddr, g.apiMiddlewareAddr)
|
|
assert.Equal(t, endpointFactory, g.apiMiddlewareEndpointFactory)
|
|
}
|
|
|
|
func TestGateway_StartStop(t *testing.T) {
|
|
hook := logTest.NewGlobal()
|
|
|
|
app := cli.App{}
|
|
set := flag.NewFlagSet("test", 0)
|
|
ctx := cli.NewContext(&app, set, nil)
|
|
|
|
gatewayPort := ctx.Int(flags.GRPCGatewayPort.Name)
|
|
gatewayHost := ctx.String(flags.GRPCGatewayHost.Name)
|
|
rpcHost := ctx.String(flags.RPCHost.Name)
|
|
selfAddress := fmt.Sprintf("%s:%d", rpcHost, ctx.Int(flags.RPCPort.Name))
|
|
gatewayAddress := fmt.Sprintf("%s:%d", gatewayHost, gatewayPort)
|
|
|
|
g := New(
|
|
ctx.Context,
|
|
[]PbMux{},
|
|
func(handler http.Handler, writer http.ResponseWriter, request *http.Request) {
|
|
|
|
},
|
|
selfAddress,
|
|
gatewayAddress,
|
|
)
|
|
|
|
g.Start()
|
|
go func() {
|
|
require.LogsContain(t, hook, "Starting gRPC gateway")
|
|
require.LogsDoNotContain(t, hook, "Starting API middleware")
|
|
}()
|
|
|
|
err := g.Stop()
|
|
require.NoError(t, err)
|
|
}
|
|
|
|
func TestGateway_NilHandler_NotFoundHandlerRegistered(t *testing.T) {
|
|
app := cli.App{}
|
|
set := flag.NewFlagSet("test", 0)
|
|
ctx := cli.NewContext(&app, set, nil)
|
|
|
|
gatewayPort := ctx.Int(flags.GRPCGatewayPort.Name)
|
|
gatewayHost := ctx.String(flags.GRPCGatewayHost.Name)
|
|
rpcHost := ctx.String(flags.RPCHost.Name)
|
|
selfAddress := fmt.Sprintf("%s:%d", rpcHost, ctx.Int(flags.RPCPort.Name))
|
|
gatewayAddress := fmt.Sprintf("%s:%d", gatewayHost, gatewayPort)
|
|
|
|
g := New(
|
|
ctx.Context,
|
|
[]PbMux{},
|
|
/* muxHandler */ nil,
|
|
selfAddress,
|
|
gatewayAddress,
|
|
)
|
|
|
|
writer := httptest.NewRecorder()
|
|
g.mux.ServeHTTP(writer, &http.Request{Method: "GET", Host: "localhost", URL: &url.URL{Path: "/foo"}})
|
|
assert.Equal(t, http.StatusNotFound, writer.Code)
|
|
}
|