user_achievements_test.go 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. package like
  2. import (
  3. "context"
  4. l "go-common/app/interface/main/activity/model/like"
  5. "testing"
  6. "github.com/smartystreets/goconvey/convey"
  7. )
  8. func TestLikeAddUserAchievment(t *testing.T) {
  9. convey.Convey("AddUserAchievment", t, func(ctx convey.C) {
  10. var (
  11. c = context.Background()
  12. userAchi = &l.ActLikeUserAchievement{}
  13. )
  14. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  15. ID, err := d.AddUserAchievment(c, userAchi)
  16. ctx.Convey("Then err should be nil.ID should not be nil.", func(ctx convey.C) {
  17. ctx.So(err, convey.ShouldBeNil)
  18. ctx.So(ID, convey.ShouldNotBeNil)
  19. })
  20. })
  21. })
  22. }
  23. func TestLikeUserAchievement(t *testing.T) {
  24. convey.Convey("UserAchievement", t, func(ctx convey.C) {
  25. var (
  26. c = context.Background()
  27. sid = int64(0)
  28. mid = int64(0)
  29. )
  30. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  31. res, err := d.UserAchievement(c, sid, mid)
  32. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  33. ctx.So(err, convey.ShouldBeNil)
  34. ctx.So(res, convey.ShouldNotBeNil)
  35. })
  36. })
  37. })
  38. }
  39. func TestLikeRawActUserAchieve(t *testing.T) {
  40. convey.Convey("RawActUserAchieve", t, func(ctx convey.C) {
  41. var (
  42. c = context.Background()
  43. id = int64(0)
  44. )
  45. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  46. res, err := d.RawActUserAchieve(c, id)
  47. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  48. ctx.So(err, convey.ShouldBeNil)
  49. ctx.So(res, convey.ShouldNotBeNil)
  50. })
  51. })
  52. })
  53. }
  54. func TestLikeActUserAchieveChange(t *testing.T) {
  55. convey.Convey("ActUserAchieveChange", t, func(ctx convey.C) {
  56. var (
  57. c = context.Background()
  58. id = int64(0)
  59. award = int64(0)
  60. )
  61. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  62. upID, err := d.ActUserAchieveChange(c, id, award)
  63. ctx.Convey("Then err should be nil.upID should not be nil.", func(ctx convey.C) {
  64. ctx.So(err, convey.ShouldBeNil)
  65. ctx.So(upID, convey.ShouldNotBeNil)
  66. })
  67. })
  68. })
  69. }