kfc_test.go 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. package kfc
  2. import (
  3. "context"
  4. "testing"
  5. "github.com/smartystreets/goconvey/convey"
  6. )
  7. func TestKfcRawKfcCoupon(t *testing.T) {
  8. convey.Convey("RawKfcCoupon", t, func(convCtx convey.C) {
  9. var (
  10. c = context.Background()
  11. id = int64(4)
  12. )
  13. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  14. res, err := d.RawKfcCoupon(c, id)
  15. convCtx.Convey("Then err should be nil.res should not be nil.", func(convCtx convey.C) {
  16. convCtx.So(err, convey.ShouldBeNil)
  17. convCtx.So(res, convey.ShouldNotBeNil)
  18. })
  19. })
  20. })
  21. }
  22. func TestKfcRawKfcCode(t *testing.T) {
  23. convey.Convey("RawKfcCode", t, func(convCtx convey.C) {
  24. var (
  25. c = context.Background()
  26. code = "201812041203"
  27. )
  28. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  29. res, err := d.RawKfcCode(c, code)
  30. convCtx.Convey("Then err should be nil.res should not be nil.", func(convCtx convey.C) {
  31. convCtx.So(err, convey.ShouldBeNil)
  32. convCtx.So(res, convey.ShouldNotBeNil)
  33. })
  34. })
  35. })
  36. }
  37. func TestKfcKfcCodeGiveOut(t *testing.T) {
  38. convey.Convey("KfcCodeGiveOut", t, func(convCtx convey.C) {
  39. var (
  40. c = context.Background()
  41. id = int64(3)
  42. )
  43. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  44. res, err := d.KfcCodeGiveOut(c, id)
  45. convCtx.Convey("Then err should be nil.res should not be nil.", func(convCtx convey.C) {
  46. convCtx.So(err, convey.ShouldBeNil)
  47. convCtx.So(res, convey.ShouldNotBeNil)
  48. })
  49. })
  50. })
  51. }
  52. func TestKfcDeliver(t *testing.T) {
  53. convey.Convey("KfcCodeGiveOut", t, func(convCtx convey.C) {
  54. var (
  55. c = context.Background()
  56. id = int64(3)
  57. mid = int64(5874874)
  58. )
  59. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  60. res, err := d.KfcDeliver(c, id, mid)
  61. convCtx.Convey("Then err should be nil.res should not be nil.", func(convCtx convey.C) {
  62. convCtx.So(err, convey.ShouldBeNil)
  63. convCtx.So(res, convey.ShouldNotBeNil)
  64. })
  65. })
  66. })
  67. }