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.
24 lines
597 B
24 lines
597 B
package dao |
|
|
|
import ( |
|
"context" |
|
"testing" |
|
|
|
"github.com/smartystreets/goconvey/convey" |
|
) |
|
|
|
func TestDaoLive(t *testing.T) { |
|
convey.Convey("Live", t, func() { |
|
var ( |
|
c = context.Background() |
|
) |
|
convey.Convey("When http request gets code == 0", func(ctx convey.C) { |
|
httpMock("GET", d.liveURI).Reply(200).JSON(`{"code":0,"msg":"ok","message":"ok","data":{"count":770843}}`) |
|
count, err := d.Live(c) |
|
ctx.Convey("Then err should be nil.count should greater 0.", func(ctx convey.C) { |
|
ctx.So(err, convey.ShouldBeNil) |
|
ctx.So(count, convey.ShouldBeGreaterThan, 0) |
|
}) |
|
}) |
|
}) |
|
}
|
|
|