advance_test.go 934 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. package service
  2. import (
  3. "context"
  4. "testing"
  5. . "github.com/smartystreets/goconvey/convey"
  6. )
  7. func TestAdvanceState(t *testing.T) {
  8. Convey("test adv State", t, func() {
  9. _, err := svr.AdvanceState(context.TODO(), 27515330, 10107292, "sp")
  10. So(err, ShouldBeNil)
  11. })
  12. }
  13. func TestAdvances(t *testing.T) {
  14. Convey("test adv", t, func() {
  15. res, err := svr.Advances(context.TODO(), 27515260)
  16. So(err, ShouldBeNil)
  17. So(res, ShouldNotBeEmpty)
  18. })
  19. }
  20. func TestPassAdvance(t *testing.T) {
  21. Convey("test pass adv", t, func() {
  22. err := svr.PassAdvance(context.TODO(), 7158471, 2)
  23. So(err, ShouldBeNil)
  24. })
  25. }
  26. func TestDenyAdvance(t *testing.T) {
  27. Convey("test deny adv", t, func() {
  28. err := svr.DenyAdvance(context.TODO(), 27515615, 107)
  29. So(err, ShouldBeNil)
  30. })
  31. }
  32. func TestCancelAdvance(t *testing.T) {
  33. Convey("test cancel adv", t, func() {
  34. err := svr.CancelAdvance(context.TODO(), 27515615, 122)
  35. So(err, ShouldBeNil)
  36. })
  37. }