dao_test.go 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. package monitor
  2. import (
  3. "context"
  4. "flag"
  5. "go-common/app/interface/main/creative/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", "main.archive.creative")
  16. flag.Set("conf_token", "96b6a6c10bb311e894c14a552f48fef8")
  17. flag.Set("tree_id", "2305")
  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/creative.toml")
  26. }
  27. flag.Parse()
  28. if err := conf.Init(); err != nil {
  29. panic(err)
  30. }
  31. d = New(conf.Conf)
  32. m.Run()
  33. os.Exit(0)
  34. }
  35. func TestMonitorNew(t *testing.T) {
  36. convey.Convey("New", t, func(ctx convey.C) {
  37. p1 := New(d.c)
  38. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  39. ctx.So(p1, convey.ShouldNotBeNil)
  40. })
  41. })
  42. }
  43. func TestMonitorSend(t *testing.T) {
  44. var (
  45. c = context.TODO()
  46. msg = ""
  47. )
  48. convey.Convey("Send", t, func(ctx convey.C) {
  49. err := d.Send(c, msg)
  50. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  51. ctx.So(err, convey.ShouldBeNil)
  52. })
  53. })
  54. }