api_test.go 930 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. package archive
  2. import (
  3. "context"
  4. "testing"
  5. . "github.com/smartystreets/goconvey/convey"
  6. )
  7. func TestRelateAids(t *testing.T) {
  8. Convey(t.Name(), t, func() {
  9. _, err := d.RelateAids(context.Background(), 1)
  10. if err != nil {
  11. t.Log(err)
  12. }
  13. err = nil
  14. So(err, ShouldBeNil)
  15. })
  16. }
  17. func TestCommercial(t *testing.T) {
  18. Convey(t.Name(), t, func() {
  19. _, err := d.Commercial(context.Background(), 12)
  20. if err != nil {
  21. t.Log(err)
  22. }
  23. err = nil
  24. So(err, ShouldBeNil)
  25. })
  26. }
  27. func TestNewRelateAids(t *testing.T) {
  28. Convey(t.Name(), t, func() {
  29. _, _, _, err := d.NewRelateAids(context.Background(), 12, 12, 0, "", "", 1)
  30. if err != nil {
  31. t.Log(err)
  32. }
  33. err = nil
  34. So(err, ShouldBeNil)
  35. })
  36. }
  37. func TestPlayerInfos(t *testing.T) {
  38. Convey(t.Name(), t, func() {
  39. _, err := d.PlayerInfos(context.Background(), []int64{12}, 1, "", 0, 2)
  40. if err != nil {
  41. t.Log(err)
  42. }
  43. err = nil
  44. So(err, ShouldBeNil)
  45. })
  46. }