1
0
mirror of https://github.com/go-micro/go-micro.git synced 2024-11-30 08:06:40 +02:00
go-micro/examples/mocking/main.go
2021-01-20 21:28:48 +00:00

46 lines
859 B
Go

package main
import (
"context"
"fmt"
"github.com/micro/cli/v2"
proto "github.com/asim/go-micro/examples/v3/helloworld/proto"
"github.com/asim/go-micro/examples/v3/mocking/mock"
"github.com/asim/go-micro/v3"
)
func main() {
var c proto.GreeterService
service := micro.NewService(
micro.Flags(&cli.StringFlag{
Name: "environment",
Value: "testing",
}),
)
service.Init(
micro.Action(func(ctx *cli.Context) error {
env := ctx.String("environment")
// use the mock when in testing environment
if env == "testing" {
c = mock.NewGreeterService()
} else {
c = proto.NewGreeterService("helloworld", service.Client())
}
return nil
}),
)
// call hello service
rsp, err := c.Hello(context.TODO(), &proto.Request{
Name: "John",
})
if err != nil {
fmt.Println(err)
return
}
fmt.Println(rsp.Greeting)
}