cover_test.go 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. package bfs
  2. import (
  3. "context"
  4. "testing"
  5. "github.com/smartystreets/goconvey/convey"
  6. )
  7. var mockHeader = map[string]string{"location": "mockLocation", "code": "200"}
  8. func TestBfsUpVideoCovers(t *testing.T) {
  9. var (
  10. c = context.TODO()
  11. covers = []string{
  12. "http://static.hdslb.com/images/transparent.gif",
  13. }
  14. )
  15. convey.Convey("UpVideoCovers", t, func(ctx convey.C) {
  16. httpMock(_method, _url).Reply(200).SetHeaders(mockHeader)
  17. httpMock("GET", covers[0]).Reply(200).JSON("mock byte")
  18. cvs, err := d.UpVideoCovers(c, covers)
  19. ctx.Convey("Then err should be nil.cvs should not be nil.", func(ctx convey.C) {
  20. ctx.So(err, convey.ShouldBeNil)
  21. ctx.So(cvs, convey.ShouldResemble, []string{"mockLocation"})
  22. })
  23. })
  24. }
  25. func TestBfsbvcCover(t *testing.T) {
  26. var (
  27. url = "http://static.hdslb.com/images/transparent.gif"
  28. )
  29. convey.Convey("bvcCover", t, func(ctx convey.C) {
  30. httpMock("GET", url).Reply(200).JSON("mock byte")
  31. bs, err := d.bvcCover(url)
  32. ctx.Convey("Then err should be nil.bs should not be nil.", func(ctx convey.C) {
  33. ctx.So(err, convey.ShouldBeNil)
  34. ctx.So(bs, convey.ShouldNotBeNil)
  35. })
  36. })
  37. }