history_test.go 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. package archive
  2. import (
  3. "context"
  4. "testing"
  5. "github.com/smartystreets/goconvey/convey"
  6. gock "gopkg.in/h2non/gock.v1"
  7. )
  8. func TestArchiveHistoryList(t *testing.T) {
  9. var (
  10. c = context.TODO()
  11. mid = int64(888952460)
  12. aid = int64(10110560)
  13. ip = "127.0.0.1"
  14. )
  15. convey.Convey("HistoryList", t, func(ctx convey.C) {
  16. defer gock.OffAll()
  17. httpMock("GET", d.hList).Reply(200).JSON(`{"code":20001}`)
  18. historys, err := d.HistoryList(c, mid, aid, ip)
  19. ctx.Convey("Then err should be nil.historys should not be nil.", func(ctx convey.C) {
  20. ctx.So(err, convey.ShouldNotBeNil)
  21. ctx.So(historys, convey.ShouldBeNil)
  22. })
  23. })
  24. }
  25. func TestArchiveHistoryView(t *testing.T) {
  26. var (
  27. c = context.TODO()
  28. mid = int64(888952460)
  29. hid = int64(0)
  30. ip = "127.0.0.1"
  31. )
  32. convey.Convey("HistoryView", t, func(ctx convey.C) {
  33. defer gock.OffAll()
  34. httpMock("GET", d.hView).Reply(200).JSON(`{"code":20001}`)
  35. history, err := d.HistoryView(c, mid, hid, ip)
  36. ctx.Convey("Then err should be nil.history should not be nil.", func(ctx convey.C) {
  37. ctx.So(err, convey.ShouldNotBeNil)
  38. ctx.So(history, convey.ShouldBeNil)
  39. })
  40. })
  41. }