show_test.go 1018 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. package show
  2. import (
  3. "context"
  4. "flag"
  5. "path/filepath"
  6. "testing"
  7. "time"
  8. "go-common/app/interface/main/app-show/conf"
  9. . "github.com/smartystreets/goconvey/convey"
  10. )
  11. var (
  12. d *Dao
  13. )
  14. func ctx() context.Context {
  15. return context.Background()
  16. }
  17. func init() {
  18. dir, _ := filepath.Abs("../../cmd/app-show-test.toml")
  19. flag.Set("conf", dir)
  20. conf.Init()
  21. d = New(conf.Conf)
  22. time.Sleep(time.Second)
  23. }
  24. func TestHeads(t *testing.T) {
  25. Convey("Heads", t, func() {
  26. res, err := d.Heads(ctx())
  27. So(res, ShouldNotBeEmpty)
  28. So(err, ShouldBeNil)
  29. })
  30. }
  31. func TestItems(t *testing.T) {
  32. Convey("Items", t, func() {
  33. res, err := d.Items(ctx())
  34. So(res, ShouldNotBeEmpty)
  35. So(err, ShouldBeNil)
  36. })
  37. }
  38. func TestTempHeads(t *testing.T) {
  39. Convey("TempHeads", t, func() {
  40. res, err := d.TempHeads(ctx())
  41. So(res, ShouldNotBeEmpty)
  42. So(err, ShouldBeNil)
  43. })
  44. }
  45. func TestTempItems(t *testing.T) {
  46. Convey("TempItems", t, func() {
  47. res, err := d.TempItems(ctx())
  48. So(res, ShouldNotBeEmpty)
  49. So(err, ShouldBeNil)
  50. })
  51. }