You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
649 B
43 lines
649 B
package live |
|
|
|
import ( |
|
"context" |
|
"flag" |
|
"path/filepath" |
|
"testing" |
|
"time" |
|
|
|
"go-common/app/interface/main/app-wall/conf" |
|
|
|
. "github.com/smartystreets/goconvey/convey" |
|
) |
|
|
|
var ( |
|
d *Dao |
|
) |
|
|
|
func ctx() context.Context { |
|
return context.Background() |
|
} |
|
|
|
func init() { |
|
dir, _ := filepath.Abs("../../cmd/app-wall-test.toml") |
|
flag.Set("conf", dir) |
|
conf.Init() |
|
d = New(conf.Conf) |
|
time.Sleep(time.Second) |
|
} |
|
|
|
func TestPack(t *testing.T) { |
|
Convey("Pack", t, func() { |
|
err := d.Pack(ctx(), 1, 1) |
|
So(err, ShouldBeNil) |
|
}) |
|
} |
|
|
|
func TestAddVip(t *testing.T) { |
|
Convey("AddVip", t, func() { |
|
_, err := d.AddVip(ctx(), 1, 1) |
|
So(err, ShouldBeNil) |
|
}) |
|
}
|
|
|