geetest_test.go 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. package geetest
  2. import (
  3. "context"
  4. "flag"
  5. "os"
  6. "testing"
  7. "go-common/app/interface/main/account/conf"
  8. "go-common/app/interface/main/account/model"
  9. "github.com/smartystreets/goconvey/convey"
  10. )
  11. var (
  12. s *Service
  13. )
  14. func TestMain(m *testing.M) {
  15. if os.Getenv("DEPLOY_ENV") != "" {
  16. flag.Set("app_id", "main.account.account-interface")
  17. flag.Set("conf_token", "967eef77ad40b478234f11b0d489d6d6")
  18. flag.Set("tree_id", "3815")
  19. flag.Set("conf_version", "docker-1")
  20. flag.Set("deploy_env", "uat")
  21. flag.Set("conf_host", "config.bilibili.co")
  22. flag.Set("conf_path", "/tmp")
  23. flag.Set("region", "sh")
  24. flag.Set("zone", "sh001")
  25. } else {
  26. flag.Set("conf", "../cmd/account-interface-example.toml")
  27. }
  28. flag.Parse()
  29. if err := conf.Init(); err != nil {
  30. panic(err)
  31. }
  32. s = New(conf.Conf)
  33. m.Run()
  34. os.Exit(0)
  35. }
  36. func TestGeetestPreProcess(t *testing.T) {
  37. convey.Convey("PreProcess", t, func(ctx convey.C) {
  38. var (
  39. c = context.Background()
  40. req = &model.GeeCaptchaRequest{
  41. MID: 1,
  42. }
  43. )
  44. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  45. res, err := s.PreProcess(c, req)
  46. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  47. ctx.So(err, convey.ShouldBeNil)
  48. ctx.So(res, convey.ShouldNotBeNil)
  49. ctx.Printf("%+v", res)
  50. })
  51. })
  52. })
  53. }
  54. func TestGeetestValidate(t *testing.T) {
  55. convey.Convey("Validate", t, func(ctx convey.C) {
  56. var (
  57. c = context.Background()
  58. req = &model.GeeCheckRequest{
  59. Challenge: "078348b20cda8680bd2a01ac79394c37",
  60. Validate: "",
  61. Seccode: "",
  62. }
  63. )
  64. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  65. stat := s.Validate(c, req)
  66. ctx.Convey("Then stat should not be nil.", func(ctx convey.C) {
  67. ctx.So(stat, convey.ShouldNotBeNil)
  68. })
  69. })
  70. })
  71. }
  72. func TestGeetestfailbackValidate(t *testing.T) {
  73. convey.Convey("failbackValidate", t, func(ctx convey.C) {
  74. var (
  75. c = context.Background()
  76. challenge = ""
  77. validate = ""
  78. seccode = ""
  79. )
  80. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  81. p1 := s.failbackValidate(c, challenge, validate, seccode)
  82. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  83. ctx.So(p1, convey.ShouldNotBeNil)
  84. })
  85. })
  86. })
  87. }
  88. func TestGeetestdecodeResponse(t *testing.T) {
  89. convey.Convey("decodeResponse", t, func(ctx convey.C) {
  90. var (
  91. challenge = ""
  92. userresponse = ""
  93. )
  94. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  95. res := s.decodeResponse(challenge, userresponse)
  96. ctx.Convey("Then res should not be nil.", func(ctx convey.C) {
  97. ctx.So(res, convey.ShouldNotBeNil)
  98. })
  99. })
  100. })
  101. }
  102. func TestGeetestdecodeRandBase(t *testing.T) {
  103. convey.Convey("decodeRandBase", t, func(ctx convey.C) {
  104. var (
  105. challenge = ""
  106. )
  107. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  108. p1 := s.decodeRandBase(challenge)
  109. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  110. ctx.So(p1, convey.ShouldNotBeNil)
  111. })
  112. })
  113. })
  114. }
  115. func TestGeetestmd5Encode(t *testing.T) {
  116. convey.Convey("md5Encode", t, func(ctx convey.C) {
  117. var (
  118. values = []byte("")
  119. )
  120. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  121. p1 := s.md5Encode(values)
  122. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  123. ctx.So(p1, convey.ShouldNotBeNil)
  124. })
  125. })
  126. })
  127. }
  128. func TestGeetestvalidateFailImage(t *testing.T) {
  129. convey.Convey("validateFailImage", t, func(ctx convey.C) {
  130. var (
  131. ans = int(0)
  132. fullBgIndex = int(0)
  133. imgGrpIndex = int(0)
  134. )
  135. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  136. p1 := s.validateFailImage(ans, fullBgIndex, imgGrpIndex)
  137. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  138. ctx.So(p1, convey.ShouldNotBeNil)
  139. })
  140. })
  141. })
  142. }