passport_test.go 775 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. package passport
  2. import (
  3. "context"
  4. "flag"
  5. "testing"
  6. "go-common/app/interface/main/account/conf"
  7. "github.com/smartystreets/goconvey/convey"
  8. )
  9. var d *Dao
  10. func init() {
  11. flag.Parse()
  12. flag.Set("conf", "../../cmd/account-interface-example.toml")
  13. if err := conf.Init(); err != nil {
  14. panic(err)
  15. }
  16. d = New(conf.Conf)
  17. }
  18. func TestDao_UserID(t *testing.T) {
  19. convey.Convey("ReplyHistoryList", t, func() {
  20. id, err := d.UserID(context.TODO(), 1, "")
  21. convey.So(err, convey.ShouldBeNil)
  22. convey.So(id, convey.ShouldNotBeEmpty)
  23. })
  24. }
  25. func TestDao_FastReg(t *testing.T) {
  26. convey.Convey("ReplyHistoryList", t, func() {
  27. fastReg, err := d.FastReg(context.TODO(), 111001347, "")
  28. convey.So(err, convey.ShouldBeNil)
  29. convey.So(fastReg, convey.ShouldNotBeEmpty)
  30. })
  31. }