12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- package income
- import (
- "context"
- "testing"
- "github.com/smartystreets/goconvey/convey"
- )
- func TestIncomeGetUpCharges(t *testing.T) {
- convey.Convey("GetUpCharges", t, func(ctx convey.C) {
- var (
- c = context.Background()
- table = "up_daily_charge"
- date = "2018-06-24"
- offset = int64(0)
- limit = int64(100)
- )
- ctx.Convey("When everything goes positive", func(ctx convey.C) {
- d.db.Exec(c, "INSERT INTO up_daily_charge(mid,date) VALUES(1,'2018-06-24') ON DUPLICATE KEY UPDATE date=VALUES(date)")
- last, charges, err := d.GetUpCharges(c, table, date, offset, limit)
- ctx.Convey("Then err should be nil.last,charges should not be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- ctx.So(charges, convey.ShouldNotBeNil)
- ctx.So(last, convey.ShouldNotBeNil)
- })
- })
- })
- }
- func TestIncomeInsertUpCharge(t *testing.T) {
- convey.Convey("InsertUpCharge", t, func(ctx convey.C) {
- var (
- c = context.Background()
- table = "up_daily_charge"
- values = "(1,2,3,'2018-06-24')"
- )
- ctx.Convey("When everything goes positive", func(ctx convey.C) {
- rows, err := d.InsertUpCharge(c, table, values)
- ctx.Convey("Then err should be nil.rows should not be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- ctx.So(rows, convey.ShouldNotBeNil)
- })
- })
- })
- }
|