activity_test.go 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. package dao
  2. import (
  3. "context"
  4. "go-common/app/interface/main/growup/model"
  5. "testing"
  6. "github.com/smartystreets/goconvey/convey"
  7. )
  8. func TestDaoGetActivity(t *testing.T) {
  9. convey.Convey("GetActivity", t, func(ctx convey.C) {
  10. var (
  11. c = context.Background()
  12. id = int64(1000)
  13. )
  14. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  15. Exec(c, "INSERT INTO creative_activity(id, name) VALUES(1000, 'dao-test')")
  16. ac, err := d.GetActivity(c, id)
  17. ctx.Convey("Then err should be nil.ac should not be nil.", func(ctx convey.C) {
  18. ctx.So(err, convey.ShouldBeNil)
  19. ctx.So(ac, convey.ShouldNotBeNil)
  20. })
  21. })
  22. })
  23. }
  24. func TestDaoListUpActivity(t *testing.T) {
  25. convey.Convey("ListUpActivity", t, func(ctx convey.C) {
  26. var (
  27. c = context.Background()
  28. id = int64(1000)
  29. )
  30. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  31. Exec(c, "INSERT INTO up_activity(mid,activity_id,state) VALUES(1001, 1000, 2)")
  32. ups, err := d.ListUpActivity(c, id)
  33. ctx.Convey("Then err should be nil.ups should not be nil.", func(ctx convey.C) {
  34. ctx.So(err, convey.ShouldBeNil)
  35. ctx.So(ups, convey.ShouldNotBeNil)
  36. })
  37. })
  38. })
  39. }
  40. func TestDaoSignUpActivity(t *testing.T) {
  41. convey.Convey("SignUpActivity", t, func(ctx convey.C) {
  42. var (
  43. c = context.Background()
  44. up = &model.UpBonus{
  45. MID: 1002,
  46. Nickname: "test",
  47. ActivityID: 1000,
  48. State: 2,
  49. }
  50. )
  51. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  52. Exec(c, "DELETE FROM up_activity WHERE mid = 1002")
  53. rows, err := d.SignUpActivity(c, up)
  54. ctx.Convey("Then err should be nil.rows should not be nil.", func(ctx convey.C) {
  55. ctx.So(err, convey.ShouldBeNil)
  56. ctx.So(rows, convey.ShouldNotBeNil)
  57. })
  58. })
  59. })
  60. }