client_test.go 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. package v1
  2. import (
  3. "context"
  4. "testing"
  5. "time"
  6. "go-common/library/log"
  7. "go-common/library/naming/discovery"
  8. "go-common/library/net/netutil/breaker"
  9. "go-common/library/net/rpc/warden"
  10. "go-common/library/net/rpc/warden/resolver"
  11. xtime "go-common/library/time"
  12. "github.com/smartystreets/goconvey/convey"
  13. )
  14. func testInit() CreativeClient {
  15. log.Init(nil)
  16. conf := &warden.ClientConfig{
  17. Dial: xtime.Duration(time.Second * 10),
  18. Timeout: xtime.Duration(time.Second * 10),
  19. Breaker: &breaker.Config{
  20. Window: xtime.Duration(3 * time.Second),
  21. Sleep: xtime.Duration(3 * time.Second),
  22. Bucket: 10,
  23. Ratio: 0.3,
  24. Request: 20,
  25. },
  26. }
  27. wc := warden.NewClient(conf)
  28. resolver.Register(discovery.New(nil))
  29. conn, err := wc.Dial(context.TODO(), "127.0.0.1:9000")
  30. if err != nil {
  31. panic(err)
  32. }
  33. return NewCreativeClient(conn)
  34. }
  35. //var client CreativeClient
  36. //
  37. //func init() {
  38. // var err error
  39. // client, err = NewClient(nil)
  40. // if err != nil {
  41. // panic(err)
  42. // }
  43. //}
  44. func TestFlowJudge(t *testing.T) {
  45. client := testInit()
  46. convey.Convey("TestFlowJudge", t, func(ctx convey.C) {
  47. ctx.Convey("When everything is correct", func(ctx convey.C) {
  48. oids, err := client.FlowJudge(context.TODO(), &FlowRequest{Business: int64(4), Gid: int64(24), Oids: []int64{22, 333, 10110208, 10110119}})
  49. ctx.So(err, convey.ShouldBeNil)
  50. ctx.Printf("%+v\n", oids.Oids)
  51. })
  52. //ctx.Convey("When error", func(ctx convey.C) {
  53. //})
  54. })
  55. }
  56. func TestCheckTaskState(t *testing.T) {
  57. client := testInit()
  58. client.CheckTaskState(context.TODO(), &TaskRequest{Mid: int64(1), TaskId: int64(1)})
  59. }