localcache_test.go 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. package medal
  2. import (
  3. "testing"
  4. "github.com/smartystreets/goconvey/convey"
  5. )
  6. func TestMedalloadMedal(t *testing.T) {
  7. convey.Convey("loadMedal", t, func(ctx convey.C) {
  8. var (
  9. mid = int64(88889017)
  10. )
  11. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  12. p1, p2, err := d.loadMedal(c, mid)
  13. ctx.Convey("Then err should be nil.p1,p2 should not be nil.", func(ctx convey.C) {
  14. ctx.So(err, convey.ShouldBeNil)
  15. ctx.So(p2, convey.ShouldNotBeNil)
  16. ctx.So(p1, convey.ShouldNotBeNil)
  17. })
  18. })
  19. })
  20. }
  21. func TestMedalstoreMedal(t *testing.T) {
  22. convey.Convey("storeMedal", t, func(ctx convey.C) {
  23. var (
  24. mid = int64(88889017)
  25. nid = int64(1)
  26. nofound bool
  27. )
  28. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  29. d.storeMedal(mid, nid, nofound)
  30. ctx.Convey("No return values", func(ctx convey.C) {
  31. })
  32. })
  33. })
  34. }
  35. func TestMedallocalMedal(t *testing.T) {
  36. convey.Convey("localMedal", t, func(ctx convey.C) {
  37. var (
  38. mid = int64(88889017)
  39. )
  40. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  41. p1, err := d.localMedal(mid)
  42. ctx.Convey("Then err should be nil.p1 should not be nil.", func(ctx convey.C) {
  43. ctx.So(err, convey.ShouldBeNil)
  44. ctx.So(p1, convey.ShouldNotBeNil)
  45. })
  46. })
  47. })
  48. }
  49. func TestMedalMedalActivatedCache(t *testing.T) {
  50. convey.Convey("MedalActivatedCache", t, func(ctx convey.C) {
  51. var (
  52. mid = int64(88889017)
  53. )
  54. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  55. p1, p2, err := d.MedalActivatedCache(c, mid)
  56. ctx.Convey("Then err should be nil.p1,p2 should not be nil.", func(ctx convey.C) {
  57. ctx.So(err, convey.ShouldBeNil)
  58. ctx.So(p2, convey.ShouldNotBeNil)
  59. ctx.So(p1, convey.ShouldNotBeNil)
  60. })
  61. })
  62. })
  63. }
  64. func TestMedalMedalsActivatedCache(t *testing.T) {
  65. convey.Convey("MedalsActivatedCache", t, func(ctx convey.C) {
  66. var (
  67. mids = []int64{88889017, 1}
  68. )
  69. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  70. p1, p2, err := d.MedalsActivatedCache(c, mids)
  71. ctx.Convey("Then err should be nil.p1,p2 should not be nil.", func(ctx convey.C) {
  72. ctx.So(err, convey.ShouldBeNil)
  73. ctx.So(p1, convey.ShouldNotBeNil)
  74. ctx.So(p2, convey.ShouldNotBeNil)
  75. })
  76. })
  77. })
  78. }