relation_test.go 758 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. package relation
  2. import (
  3. "context"
  4. "flag"
  5. "go-common/app/interface/main/app-show/conf"
  6. "path/filepath"
  7. "testing"
  8. "time"
  9. . "github.com/smartystreets/goconvey/convey"
  10. )
  11. var (
  12. d *Dao
  13. )
  14. func init() {
  15. dir, _ := filepath.Abs("../../cmd/app-show-test.toml")
  16. flag.Set("conf", dir)
  17. conf.Init()
  18. d = New(conf.Conf)
  19. time.Sleep(time.Second)
  20. }
  21. func ctx() context.Context {
  22. return context.Background()
  23. }
  24. func TestRelations(t *testing.T) {
  25. Convey("get Relations all", t, func() {
  26. res, err := d.Relations(ctx(), 0, []int64{0})
  27. So(err, ShouldBeNil)
  28. So(res, ShouldNotBeEmpty)
  29. })
  30. }
  31. func TestStats(t *testing.T) {
  32. Convey("get Stats all", t, func() {
  33. res, err := d.Stats(ctx(), []int64{0})
  34. So(err, ShouldBeNil)
  35. So(res, ShouldNotBeEmpty)
  36. })
  37. }