123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- package dao
- import (
- "context"
- "go-common/library/database/sql"
- "testing"
- "github.com/smartystreets/goconvey/convey"
- )
- func TestDaoGetAbleCode(t *testing.T) {
- convey.Convey("GetAbleCode", t, func(ctx convey.C) {
- var (
- tx = &sql.Tx{}
- batchCodeID = int64(0)
- )
- tx, err := d.StartTx(context.Background())
- ctx.So(err, convey.ShouldBeNil)
- ctx.So(tx, convey.ShouldNotBeNil)
- ctx.Convey("When everything goes positive", func(ctx convey.C) {
- _, err := d.GetAbleCode(tx, batchCodeID)
- ctx.Convey("Then err should be nil.code should not be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- })
- })
- })
- }
- func TestDaoUpdateCodeRelationID(t *testing.T) {
- convey.Convey("UpdateCodeRelationID", t, func(ctx convey.C) {
- var (
- code = ""
- relationID = ""
- bmid = int64(0)
- )
- tx, err := d.StartTx(context.Background())
- ctx.So(err, convey.ShouldBeNil)
- ctx.So(tx, convey.ShouldNotBeNil)
- ctx.Convey("When everything goes positive", func(ctx convey.C) {
- err := d.UpdateCodeRelationID(tx, code, relationID, bmid)
- ctx.Convey("Then err should be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- })
- })
- })
- }
- func TestDaoSelBatchCodeByID(t *testing.T) {
- convey.Convey("SelBatchCodeByID", t, func(ctx convey.C) {
- var (
- batchCodeID = int64(0)
- )
- tx, err := d.StartTx(context.Background())
- ctx.So(err, convey.ShouldBeNil)
- ctx.So(tx, convey.ShouldNotBeNil)
- ctx.Convey("When everything goes positive", func(ctx convey.C) {
- _, err := d.SelBatchCodeByID(tx, batchCodeID)
- ctx.Convey("Then err should be nil.r should not be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- })
- })
- })
- }
|