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
957 B
43 lines
957 B
package result |
|
|
|
import ( |
|
"context" |
|
"testing" |
|
|
|
"go-common/app/job/main/archive/model/archive" |
|
|
|
. "github.com/smartystreets/goconvey/convey" |
|
) |
|
|
|
func Test_TxAddVideo(t *testing.T) { |
|
Convey("Archive", t, func() { |
|
tx, err := d.BeginTran(context.TODO()) |
|
So(err, ShouldBeNil) |
|
_, err = d.TxAddVideo(context.TODO(), tx, &archive.Video{Aid: 1, Cid: 1}) |
|
So(err, ShouldBeNil) |
|
err = tx.Commit() |
|
So(err, ShouldBeNil) |
|
}) |
|
} |
|
|
|
func Test_TxDelVideoByCid(t *testing.T) { |
|
Convey("TxDelVideoByCid", t, func() { |
|
tx, err := d.BeginTran(context.TODO()) |
|
So(err, ShouldBeNil) |
|
_, err = d.TxDelVideoByCid(context.TODO(), tx, 1, 1) |
|
So(err, ShouldBeNil) |
|
err = tx.Commit() |
|
So(err, ShouldBeNil) |
|
}) |
|
} |
|
|
|
func Test_TxDelVideos(t *testing.T) { |
|
Convey("TxDelVideos", t, func() { |
|
tx, err := d.BeginTran(context.TODO()) |
|
So(err, ShouldBeNil) |
|
_, err = d.TxDelVideos(context.TODO(), tx, 0) |
|
So(err, ShouldBeNil) |
|
err = tx.Commit() |
|
So(err, ShouldBeNil) |
|
}) |
|
}
|
|
|