geetest_test.go 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. package service
  2. import (
  3. "context"
  4. "testing"
  5. "github.com/smartystreets/goconvey/convey"
  6. )
  7. func TestServicePreProcess(t *testing.T) {
  8. convey.Convey("PreProcess", t, func() {
  9. res, err := s.preProcess(context.Background(), 0, "", "", 0)
  10. convey.So(err, convey.ShouldBeNil)
  11. convey.So(res, convey.ShouldNotBeNil)
  12. })
  13. }
  14. func TestServicevalidate(t *testing.T) {
  15. convey.Convey("validate", t, func() {
  16. stat := s.validate(context.Background(), "", "", "", "", "", 0, 0)
  17. convey.So(stat, convey.ShouldNotBeNil)
  18. })
  19. }
  20. func TestServicefailbackValidate(t *testing.T) {
  21. convey.Convey("failbackValidate", t, func() {
  22. p1 := s.failbackValidate(context.Background(), "", "", "")
  23. convey.So(p1, convey.ShouldNotBeNil)
  24. })
  25. }
  26. func TestServicedecodeResponse(t *testing.T) {
  27. convey.Convey("decodeResponse", t, func() {
  28. res := s.decodeResponse("", "")
  29. convey.So(res, convey.ShouldNotBeNil)
  30. })
  31. }
  32. func TestServicedecodeRandBase(t *testing.T) {
  33. convey.Convey("decodeRandBase", t, func() {
  34. p1 := s.decodeRandBase("")
  35. convey.So(p1, convey.ShouldNotBeNil)
  36. })
  37. }
  38. func TestServicemd5Encode(t *testing.T) {
  39. convey.Convey("md5Encode", t, func() {
  40. p1 := s.md5Encode([]byte{})
  41. convey.So(p1, convey.ShouldNotBeNil)
  42. })
  43. }
  44. func TestServicevalidateFailImage(t *testing.T) {
  45. convey.Convey("validateFailImage", t, func() {
  46. p1 := s.validateFailImage(0, 0, 0)
  47. convey.So(p1, convey.ShouldNotBeNil)
  48. })
  49. }