archive_test.go 909 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. package service
  2. import (
  3. "testing"
  4. "context"
  5. "github.com/davecgh/go-spew/spew"
  6. . "github.com/smartystreets/goconvey/convey"
  7. )
  8. func Test_BGM(t *testing.T) {
  9. Convey("bgm", t, WithService(func(p *Public) {
  10. Convey("bgm", func() {
  11. res, err := p.BgmBindList(context.TODO(), 10110983, 10135130, 3, false)
  12. if err == nil {
  13. spew.Dump(res)
  14. }
  15. spew.Dump("bgm")
  16. })
  17. }))
  18. }
  19. func Test_Type(t *testing.T) {
  20. Convey("Type", t, WithService(func(p *Public) {
  21. Convey("loadTypes", func() {
  22. p.loadTypes()
  23. spew.Dump(p.TopTypesCache)
  24. })
  25. // Convey("loadDescFormat", func() {
  26. // p.loadDescFormat()
  27. // spew.Dump(p.DescFmtsCache)
  28. // })
  29. }))
  30. }
  31. func Test_Staff(t *testing.T) {
  32. Convey("Staff", t, WithService(func(p *Public) {
  33. Convey("Staff", func() {
  34. res, err := p.StaffList(context.TODO(), 10110983, false)
  35. if err == nil {
  36. spew.Dump(res)
  37. }
  38. spew.Dump("Staff")
  39. })
  40. }))
  41. }