feat: split all grpc and http endpoints
This commit is contained in:
@@ -20,6 +20,12 @@ func TestAllDevConfig(t *testing.T) {
|
||||
if len(cfg.Services) == 0 {
|
||||
t.Fatal("services must not be empty")
|
||||
}
|
||||
if cfg.Server.GRPC.Port == "" || cfg.Server.HTTP.Port == "" || cfg.Server.GRPC.Port == cfg.Server.HTTP.Port {
|
||||
t.Fatal("separate gRPC and HTTP ports are required")
|
||||
}
|
||||
if len(cfg.DynamicRPC.Allow) == 0 {
|
||||
t.Fatal("dynamic RPC allow list must be explicit")
|
||||
}
|
||||
if cfg.Fts == nil || cfg.Mgt == nil || cfg.Passport == nil || cfg.Sender == nil || cfg.Wallet == nil {
|
||||
t.Fatal("service-specific configuration is incomplete")
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user