up_test.go 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. package up
  2. import (
  3. "context"
  4. "testing"
  5. . "github.com/smartystreets/goconvey/convey"
  6. )
  7. func TestUpUpInfo(t *testing.T) {
  8. var (
  9. c = context.TODO()
  10. mid = int64(2089809)
  11. from = int(1)
  12. ip = "127.0.0.1"
  13. )
  14. Convey("UpInfo", t, func(ctx C) {
  15. res, err := d.UpInfo(c, mid, from, ip)
  16. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx C) {
  17. ctx.So(err, ShouldBeNil)
  18. ctx.So(res, ShouldNotBeNil)
  19. })
  20. })
  21. }
  22. func TestUpUpSwitch(t *testing.T) {
  23. var (
  24. c = context.TODO()
  25. mid = int64(2089809)
  26. from = int(1)
  27. ip = "127.0.0.1"
  28. )
  29. Convey("UpSwitch", t, func(ctx C) {
  30. res, err := d.UpSwitch(c, mid, from, ip)
  31. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx C) {
  32. ctx.So(err, ShouldBeNil)
  33. ctx.So(res, ShouldNotBeNil)
  34. })
  35. })
  36. }
  37. func TestUpSetUpSwitch(t *testing.T) {
  38. var (
  39. c = context.TODO()
  40. mid = int64(0)
  41. state = int(0)
  42. from = int(0)
  43. ip = ""
  44. )
  45. Convey("SetUpSwitch", t, func(ctx C) {
  46. res, err := d.SetUpSwitch(c, mid, state, from, ip)
  47. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx C) {
  48. ctx.So(err, ShouldBeNil)
  49. ctx.So(res, ShouldNotBeNil)
  50. })
  51. })
  52. }
  53. func TestDao_UpSpecialGroups(t *testing.T) {
  54. var c = context.Background()
  55. Convey("UpSpecialGroups", t, func(ctx C) {
  56. httpMock("GET", d.c.Host.API+_upSpecialGroupURI).Reply(200).JSON(`{"code":0,"data":[]}`)
  57. _, err := d.UpSpecialGroups(c, 2089809)
  58. So(err, ShouldBeNil)
  59. })
  60. }
  61. func TestUpSpecial(t *testing.T) {
  62. var (
  63. c = context.Background()
  64. res map[int64]int64
  65. err error
  66. )
  67. Convey("UpSpecial", t, func(ctx C) {
  68. res, err = d.UpSpecial(c, 17)
  69. So(res, ShouldNotBeNil)
  70. So(err, ShouldBeNil)
  71. })
  72. }