qrcode_test.go 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. package wechat
  2. import (
  3. "context"
  4. "testing"
  5. "go-common/app/interface/main/web-goblin/model/wechat"
  6. "go-common/library/ecode"
  7. "github.com/smartystreets/goconvey/convey"
  8. )
  9. func TestWechatQrcode(t *testing.T) {
  10. convey.Convey("Qrcode", t, func(ctx convey.C) {
  11. var (
  12. c = context.Background()
  13. accessToken = "14_LZVbKTtstzal_T-AfG-EgkUI2WlCdRvKUqhiYKMhNyxsGjzc1K_a1GGWuMPCbX"
  14. arg = `{"page":"","scene":"?avid=34188644"}`
  15. )
  16. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  17. qrcode, err := d.Qrcode(c, accessToken, arg)
  18. ctx.Convey("Then err should be nil.qrcode should not be nil.", func(ctx convey.C) {
  19. ctx.So(err, convey.ShouldEqual, ecode.RequestErr)
  20. ctx.Println(qrcode)
  21. })
  22. })
  23. })
  24. }
  25. func TestWechatAddCacheAccessToken(t *testing.T) {
  26. convey.Convey("AddCacheAccessToken", t, func(ctx convey.C) {
  27. var (
  28. c = context.Background()
  29. data = &wechat.AccessToken{AccessToken: "string", ExpiresIn: 1111}
  30. )
  31. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  32. err := d.AddCacheAccessToken(c, data)
  33. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  34. ctx.So(err, convey.ShouldBeNil)
  35. })
  36. })
  37. })
  38. }
  39. func TestWechatCacheAccessToken(t *testing.T) {
  40. convey.Convey("CacheAccessToken", t, func(ctx convey.C) {
  41. var (
  42. c = context.Background()
  43. )
  44. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  45. data, err := d.CacheAccessToken(c)
  46. ctx.Convey("Then err should be nil.data should not be nil.", func(ctx convey.C) {
  47. ctx.So(err, convey.ShouldBeNil)
  48. ctx.So(data, convey.ShouldNotBeNil)
  49. })
  50. })
  51. })
  52. }