kfc_test.go 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. package kfc
  2. import (
  3. "testing"
  4. "time"
  5. "flag"
  6. "go-common/app/interface/main/activity/conf"
  7. "path/filepath"
  8. "context"
  9. "fmt"
  10. . "github.com/smartystreets/goconvey/convey"
  11. )
  12. var svf *Service
  13. func init() {
  14. dir, _ := filepath.Abs("../../cmd/activity-test.toml")
  15. flag.Set("conf", dir)
  16. if err := conf.Init(); err != nil {
  17. panic(err)
  18. }
  19. if svf == nil {
  20. svf = New(conf.Conf)
  21. }
  22. time.Sleep(time.Second)
  23. }
  24. func WithService(f func(s *Service)) func() {
  25. return func() {
  26. f(svf)
  27. }
  28. }
  29. func TestService_KfcInfo(t *testing.T) {
  30. Convey("test fmt start and end", t, WithService(func(s *Service) {
  31. id := int64(30)
  32. mid := int64(16299551)
  33. start, err := s.KfcInfo(context.Background(), id, mid)
  34. So(err, ShouldBeNil)
  35. Println(start)
  36. }))
  37. }
  38. func TestService_KfcUse(t *testing.T) {
  39. Convey("test fmt start and end", t, WithService(func(s *Service) {
  40. code := "535487458740"
  41. start, err := s.KfcUse(context.Background(), code)
  42. So(err, ShouldBeNil)
  43. Println(start)
  44. }))
  45. }
  46. func TestService_DeliverKfc(t *testing.T) {
  47. Convey("test fmt start and end", t, WithService(func(s *Service) {
  48. id := int64(1)
  49. mid := int64(2089810)
  50. err := s.DeliverKfc(context.Background(), id, mid)
  51. So(err, ShouldBeNil)
  52. }))
  53. }
  54. func TestService_kfcRecall(t *testing.T) {
  55. Convey("test fmt start and end", t, WithService(func(s *Service) {
  56. id := int64(30)
  57. uid, err := s.kfcRecall(context.Background(), id)
  58. So(err, ShouldBeNil)
  59. fmt.Print(uid)
  60. }))
  61. }