service_test.go 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. package service
  2. import (
  3. "flag"
  4. "os"
  5. "testing"
  6. "go-common/app/interface/main/answer/conf"
  7. "github.com/smartystreets/goconvey/convey"
  8. )
  9. var (
  10. s *Service
  11. )
  12. func TestMain(m *testing.M) {
  13. if os.Getenv("DEPLOY_ENV") != "" {
  14. flag.Set("app_id", "main.account-law.answer")
  15. flag.Set("conf_appid", "main.account-law.answer")
  16. flag.Set("conf_token", "ba3ee255695e8d7b46782268ddc9c8a3")
  17. flag.Set("tree_id", "25260")
  18. flag.Set("conf_version", "docker-1")
  19. flag.Set("deploy_env", "uat")
  20. flag.Set("conf_env", "10")
  21. flag.Set("conf_host", "config.bilibili.co")
  22. flag.Set("conf_path", "/tmp")
  23. flag.Set("region", "sh")
  24. flag.Set("zone", "sh001")
  25. } else {
  26. flag.Set("conf", "../cmd/answer-test.toml")
  27. }
  28. flag.Parse()
  29. if err := conf.Init(); err != nil {
  30. panic(err)
  31. }
  32. s = New(conf.Conf)
  33. os.Exit(m.Run())
  34. }
  35. func TestServiceaddRetryBeFormal(t *testing.T) {
  36. convey.Convey("addRetryBeFormal", t, func() {
  37. s.addRetryBeFormal(nil)
  38. })
  39. }
  40. func TestServicebeformalproc(t *testing.T) {
  41. convey.Convey("beformalproc", t, func() {
  42. s.beformalproc()
  43. })
  44. }
  45. func TestServiceClose(t *testing.T) {
  46. convey.Convey("Close", t, func() {
  47. s.Close()
  48. })
  49. }
  50. func TestServicerankcacheproc(t *testing.T) {
  51. convey.Convey("rankcacheproc", t, func() {
  52. s.rankcacheproc()
  53. })
  54. }