dao_test.go 980 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. package archive
  2. import (
  3. "context"
  4. "flag"
  5. "path/filepath"
  6. "testing"
  7. . "github.com/smartystreets/goconvey/convey"
  8. "go-common/app/interface/main/app-show/conf"
  9. )
  10. var (
  11. d *Dao
  12. )
  13. func init() {
  14. dir, _ := filepath.Abs("../../cmd/app-show-test.toml")
  15. flag.Set("conf", dir)
  16. conf.Init()
  17. d = New(conf.Conf)
  18. }
  19. func Test_Archive(t *testing.T) {
  20. Convey("should get Archive", t, func() {
  21. _, err := d.Archive(context.Background(), 1)
  22. So(err, ShouldBeNil)
  23. })
  24. }
  25. func Test_ArchivesPB(t *testing.T) {
  26. Convey("should get ArchivesPB", t, func() {
  27. _, err := d.ArchivesPB(context.Background(), []int64{1, 2})
  28. So(err, ShouldBeNil)
  29. })
  30. }
  31. func Test_RanksArcs(t *testing.T) {
  32. Convey("should get RanksArcs", t, func() {
  33. _, _, err := d.RanksArcs(context.Background(), 1, 2, 3)
  34. So(err, ShouldBeNil)
  35. })
  36. }
  37. func Test_RankTopArcs(t *testing.T) {
  38. Convey("should get RankTopArcs", t, func() {
  39. _, err := d.RankTopArcs(context.Background(), 1, 2, 3)
  40. So(err, ShouldBeNil)
  41. })
  42. }