ai_test.go 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. package bigdata
  2. import (
  3. "context"
  4. "flag"
  5. "go-common/app/interface/main/reply/conf"
  6. "os"
  7. "testing"
  8. "github.com/smartystreets/goconvey/convey"
  9. )
  10. var (
  11. d *Dao
  12. )
  13. func TestMain(m *testing.M) {
  14. if os.Getenv("DEPLOY_ENV") != "" {
  15. flag.Set("app_id", "")
  16. flag.Set("conf_token", "")
  17. flag.Set("tree_id", "")
  18. flag.Set("conf_version", "docker-1")
  19. flag.Set("deploy_env", "uat")
  20. flag.Set("conf_host", "config.bilibili.co")
  21. flag.Set("conf_path", "/tmp")
  22. flag.Set("region", "sh")
  23. flag.Set("zone", "sh001")
  24. } else {
  25. flag.Set("conf", "../../cmd/reply-test.toml")
  26. }
  27. flag.Parse()
  28. if err := conf.Init(); err != nil {
  29. panic(err)
  30. }
  31. d = New(conf.Conf)
  32. os.Exit(m.Run())
  33. }
  34. func TestBigdataTopics(t *testing.T) {
  35. convey.Convey("Topics", t, func(ctx convey.C) {
  36. var (
  37. c = context.Background()
  38. mid = int64(0)
  39. oid = int64(0)
  40. typ = int8(0)
  41. msg = ""
  42. )
  43. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  44. p1, err := d.Topics(c, mid, oid, typ, msg)
  45. ctx.Convey("Then err should be nil.p1 should not be nil.", func(ctx convey.C) {
  46. ctx.So(err, convey.ShouldNotBeNil)
  47. ctx.So(p1, convey.ShouldBeNil)
  48. })
  49. })
  50. })
  51. }