associate_outer_test.go 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. package vip
  2. import (
  3. "context"
  4. "fmt"
  5. "go-common/app/interface/main/account/model"
  6. "testing"
  7. . "github.com/smartystreets/goconvey/convey"
  8. )
  9. // go test -test.v -test.run TestServiceOpenIDByAuthCode
  10. func TestServiceOpenIDByAuthCode(t *testing.T) {
  11. Convey("TestServiceOpenIDByAuthCode", t, func() {
  12. res, err := s.OpenIDByAuthCode(context.TODO(), &model.ArgAuthCode{})
  13. fmt.Println("res", res)
  14. So(err, ShouldBeNil)
  15. })
  16. }
  17. // go test -test.v -test.run TestServiceOpenAuthCallBack
  18. func TestServiceOpenAuthCallBack(t *testing.T) {
  19. Convey("TestServiceOpenAuthCallBack", t, func() {
  20. err := s.OpenAuthCallBack(context.TODO(), &model.ArgOpenAuthCallBack{})
  21. So(err, ShouldBeNil)
  22. })
  23. }
  24. // go test -test.v -test.run TestServiceBilibiliPrizeGrant
  25. func TestServiceBilibiliPrizeGrant(t *testing.T) {
  26. Convey("TestServiceBilibiliPrizeGrant", t, func() {
  27. res, err := s.BilibiliPrizeGrant(context.TODO(), &model.ArgBilibiliPrizeGrant{
  28. PrizeKey: "coupon_ele_1",
  29. UniqueNo: "1x",
  30. OpenID: "e11303e8c26268a6cbdc2dc7fce55199",
  31. AppID: 32,
  32. })
  33. fmt.Println("res:", res)
  34. So(err, ShouldBeNil)
  35. })
  36. }
  37. func TestServiceOpenBindByOutOpenID(t *testing.T) {
  38. Convey("TestServiceOpenBindByOutOpenID", t, func() {
  39. err := s.OpenBindByOutOpenID(context.TODO(), &model.ArgBind{
  40. AppID: 32,
  41. OutOpenID: "o8f999ad5d724b4a2ljbp7cm",
  42. OpenID: "e11303e8c26268a6cbdc2dc7fce55199",
  43. })
  44. So(err, ShouldBeNil)
  45. })
  46. }
  47. func TestServiceElemeOAuthURI(t *testing.T) {
  48. Convey("TestServiceElemeOAuthURI", t, func() {
  49. url := s.ElemeOAuthURI(context.TODO(), "state")
  50. fmt.Println("url-------", url)
  51. So(url, ShouldNotBeNil)
  52. })
  53. }