special_test.go 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. package special
  2. import (
  3. "context"
  4. "flag"
  5. "path/filepath"
  6. "reflect"
  7. "testing"
  8. "time"
  9. "go-common/app/interface/main/app-card/model/card/operate"
  10. "go-common/app/interface/main/app-feed/conf"
  11. . "github.com/smartystreets/goconvey/convey"
  12. )
  13. var (
  14. d *Dao
  15. )
  16. func init() {
  17. dir, _ := filepath.Abs("../../cmd/app-feed-test.toml")
  18. flag.Set("conf", dir)
  19. conf.Init()
  20. d = New(conf.Conf)
  21. }
  22. func TestNew(t *testing.T) {
  23. type args struct {
  24. c *conf.Config
  25. }
  26. tests := []struct {
  27. name string
  28. args args
  29. wantD *Dao
  30. }{
  31. // TODO: Add test cases.
  32. }
  33. for _, tt := range tests {
  34. t.Run(tt.name, func(t *testing.T) {
  35. if gotD := New(tt.args.c); !reflect.DeepEqual(gotD, tt.wantD) {
  36. t.Errorf("New() = %v, want %v", gotD, tt.wantD)
  37. }
  38. })
  39. }
  40. }
  41. func TestDao_Card(t *testing.T) {
  42. type args struct {
  43. c context.Context
  44. now time.Time
  45. }
  46. tests := []struct {
  47. name string
  48. args args
  49. wantScm map[int64]*operate.Special
  50. wantErr error
  51. }{
  52. // TODO: Add test cases.
  53. }
  54. for _, tt := range tests {
  55. Convey(tt.name, t, func() {
  56. gotScm, err := d.Card(tt.args.c, tt.args.now)
  57. So(gotScm, ShouldEqual, tt.wantScm)
  58. So(err, ShouldEqual, tt.wantErr)
  59. })
  60. }
  61. }
  62. func TestDao_Close(t *testing.T) {
  63. tests := []struct {
  64. name string
  65. d *Dao
  66. }{
  67. // TODO: Add test cases.
  68. }
  69. for _, tt := range tests {
  70. t.Run(tt.name, func(t *testing.T) {
  71. tt.d.Close()
  72. })
  73. }
  74. }