realname_test.go 949 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. package realname
  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 TestTelInfo(t *testing.T) {
  19. convey.Convey("ReplyHistoryList", t, func() {
  20. res, err := d.TelInfo(context.TODO(), 46333)
  21. convey.So(err, convey.ShouldBeNil)
  22. convey.So(res, convey.ShouldNotBeNil)
  23. })
  24. }
  25. func TestAntispam(t *testing.T) {
  26. convey.Convey("antispam", t, func() {
  27. anti := new(AlipayAntispamValue)
  28. anti.IncreaseCount()
  29. c := anti.Count()
  30. convey.So(c, convey.ShouldEqual, 1)
  31. p := anti.Pass()
  32. convey.So(p, convey.ShouldBeFalse)
  33. anti.IncreaseCount()
  34. c = anti.Count()
  35. convey.So(c, convey.ShouldEqual, 2)
  36. anti.SetPass(true)
  37. p = anti.Pass()
  38. convey.So(p, convey.ShouldBeTrue)
  39. })
  40. }