service_test.go 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. package service
  2. import (
  3. "context"
  4. "flag"
  5. "path/filepath"
  6. "testing"
  7. "time"
  8. "go-common/app/interface/main/growup/conf"
  9. . "github.com/smartystreets/goconvey/convey"
  10. )
  11. var (
  12. srv *Service
  13. )
  14. func init() {
  15. dir, _ := filepath.Abs("../cmd/growup-interface.toml")
  16. flag.Set("conf", dir)
  17. conf.Init()
  18. srv = New(conf.Conf)
  19. time.Sleep(time.Second)
  20. }
  21. func WithService(f func(s *Service)) func() {
  22. return func() {
  23. // Reset(func() { CleanCache() })
  24. f(srv)
  25. }
  26. }
  27. func Test_GetUpStatus(t *testing.T) {
  28. var (
  29. mid = int64(1011)
  30. )
  31. Convey("interface", t, WithService(func(s *Service) {
  32. _, err := s.GetUpStatus(context.Background(), mid, "127.0.0.1")
  33. So(err, ShouldBeNil)
  34. }))
  35. }
  36. func Test_JoinAv(t *testing.T) {
  37. var (
  38. accountType = 1
  39. mid = int64(1011)
  40. signType = 2
  41. )
  42. Convey("interface", t, WithService(func(s *Service) {
  43. err := s.JoinAv(context.Background(), accountType, mid, signType)
  44. So(err, ShouldBeNil)
  45. }))
  46. }
  47. func Test_Quit(t *testing.T) {
  48. var (
  49. mid = int64(1011)
  50. reason = "quit"
  51. )
  52. Convey("interface", t, WithService(func(s *Service) {
  53. err := s.Quit(context.Background(), mid, reason)
  54. So(err, ShouldBeNil)
  55. }))
  56. }