passport_test.go 482 B

123456789101112131415161718192021222324252627282930
  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 (
  10. s *Service
  11. )
  12. func init() {
  13. flag.Set("conf", "../../cmd/account-interface-example.toml")
  14. if err := conf.Init(); err != nil {
  15. panic(err)
  16. }
  17. s = New(conf.Conf)
  18. }
  19. func Test_TestUserName(t *testing.T) {
  20. Convey("TestUserName", func() {
  21. err := s.TestUserName(context.TODO(), "testname", 1)
  22. So(err, ShouldBeNil)
  23. })
  24. }