dao_test.go 651 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. package relation
  2. import (
  3. "context"
  4. "flag"
  5. "path/filepath"
  6. "testing"
  7. "time"
  8. "go-common/app/interface/main/app-view/conf"
  9. . "github.com/smartystreets/goconvey/convey"
  10. )
  11. var (
  12. d *Dao
  13. )
  14. func init() {
  15. dir, _ := filepath.Abs("../../cmd/app-view-test.toml")
  16. flag.Set("conf", dir)
  17. conf.Init()
  18. d = New(conf.Conf)
  19. time.Sleep(5 * time.Second)
  20. }
  21. func TestPrompt(t *testing.T) {
  22. Convey("Prompt", t, func() {
  23. acc, err := d.Prompt(context.TODO(), 1, 1, 1)
  24. So(err, ShouldBeNil)
  25. Println(acc)
  26. })
  27. }
  28. func TestStat(t *testing.T) {
  29. Convey("Stat", t, func() {
  30. acc, err := d.Stat(context.TODO(), 1)
  31. So(err, ShouldBeNil)
  32. Println(acc)
  33. })
  34. }