package micro import ( "context" "sync" "testing" "github.com/micro/go-micro/registry/memory" proto "github.com/micro/go-micro/server/debug/proto" ) func TestService(t *testing.T) { var wg sync.WaitGroup wg.Add(1) // cancellation context ctx, cancel := context.WithCancel(context.Background()) r := memory.NewRegistry() r.(*memory.Registry).Setup() // create service service := NewService( Name("test.service"), Context(ctx), Registry(r), AfterStart(func() error { wg.Done() return nil }), ) // we can't test service.Init as it parses the command line // service.Init() // run service go func() { // wait for start wg.Wait() // test call debug req := service.Client().NewRequest( "test.service", "Debug.Health", new(proto.HealthRequest), ) rsp := new(proto.HealthResponse) err := service.Client().Call(context.TODO(), req, rsp) if err != nil { t.Fatal(err) } if rsp.Status != "ok" { t.Fatalf("service response: %s", rsp.Status) } // shutdown the service cancel() }() if err := service.Run(); err != nil { t.Fatal(err) } }