rpc_test.go 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. package archive
  2. import (
  3. "context"
  4. "testing"
  5. "github.com/smartystreets/goconvey/convey"
  6. )
  7. func TestArchiveArchive(t *testing.T) {
  8. var (
  9. c = context.TODO()
  10. aid = int64(10110560)
  11. ip = "127.0.0.1"
  12. )
  13. convey.Convey("Archive", t, func(ctx convey.C) {
  14. a, err := d.Archive(c, aid, ip)
  15. ctx.Convey("Then err should be nil.a should not be nil.", func(ctx convey.C) {
  16. ctx.So(err, convey.ShouldBeNil)
  17. ctx.So(a, convey.ShouldNotBeNil)
  18. })
  19. })
  20. }
  21. func TestArchiveArchives(t *testing.T) {
  22. var (
  23. c = context.TODO()
  24. aids = []int64{}
  25. ip = ""
  26. )
  27. convey.Convey("Archives", t, func(ctx convey.C) {
  28. a, err := d.Archives(c, aids, ip)
  29. ctx.Convey("Then err should be nil.a should not be nil.", func(ctx convey.C) {
  30. ctx.So(err, convey.ShouldBeNil)
  31. ctx.So(a, convey.ShouldNotBeNil)
  32. })
  33. })
  34. }
  35. func TestArchiveStats(t *testing.T) {
  36. var (
  37. c = context.TODO()
  38. aids = []int64{}
  39. ip = ""
  40. )
  41. convey.Convey("Stats", t, func(ctx convey.C) {
  42. a, err := d.Stats(c, aids, ip)
  43. ctx.Convey("Then err should be nil.a should not be nil.", func(ctx convey.C) {
  44. ctx.So(err, convey.ShouldBeNil)
  45. ctx.So(a, convey.ShouldNotBeNil)
  46. })
  47. })
  48. }
  49. func TestArchiveUpCount(t *testing.T) {
  50. var (
  51. c = context.TODO()
  52. mid = int64(888952460)
  53. )
  54. convey.Convey("UpCount", t, func(ctx convey.C) {
  55. count, err := d.UpCount(c, mid)
  56. ctx.Convey("Then err should be nil.count should not be nil.", func(ctx convey.C) {
  57. ctx.So(err, convey.ShouldBeNil)
  58. ctx.So(count, convey.ShouldNotBeNil)
  59. })
  60. })
  61. }
  62. func TestArchiveVideo(t *testing.T) {
  63. var (
  64. c = context.TODO()
  65. aid = int64(10110816)
  66. cid = int64(10134702)
  67. ip = "127.0.0.1"
  68. )
  69. convey.Convey("Video", t, func(ctx convey.C) {
  70. v, err := d.Video(c, aid, cid, ip)
  71. ctx.Convey("Then err should be nil.v should not be nil.", func(ctx convey.C) {
  72. ctx.So(err, convey.ShouldBeNil)
  73. ctx.So(v, convey.ShouldNotBeNil)
  74. })
  75. })
  76. }