exp_test.go 875 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. package dao
  2. import (
  3. "context"
  4. "testing"
  5. "time"
  6. xtime "go-common/library/time"
  7. . "github.com/smartystreets/goconvey/convey"
  8. )
  9. func Test_SelExp(t *testing.T) {
  10. Convey("selExp", t, func() {
  11. exp, err := d.SelExp(context.TODO(), 2233)
  12. So(err, ShouldBeNil)
  13. So(exp, ShouldNotBeEmpty)
  14. })
  15. }
  16. func Test_UpdateExpAped(t *testing.T) {
  17. Convey("updateExpAped", t, func() {
  18. if _, err := d.UpdateExpAped(context.TODO(), 2233, 666, 1); err != nil {
  19. So(err, ShouldBeNil)
  20. }
  21. })
  22. }
  23. func Test_InitExp(t *testing.T) {
  24. Convey("InitExp", t, func() {
  25. if err := d.InitExp(context.Background(), 1111); err != nil {
  26. So(err, ShouldNotBeNil)
  27. }
  28. })
  29. }
  30. func Test_UpdateExpFlag(t *testing.T) {
  31. Convey("UpdateExpFlag", t, func() {
  32. if err := d.UpdateExpFlag(context.Background(), 1111, 123, xtime.Time(time.Now().Unix())); err != nil {
  33. So(err, ShouldNotBeNil)
  34. }
  35. })
  36. }