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
636 B

package dao
import (
"context"
"testing"
"github.com/smartystreets/goconvey/convey"
gock "gopkg.in/h2non/gock.v1"
)
func TestDaoOldFrozenChange(t *testing.T) {
convey.Convey("OldFrozenChange success", t, func() {
defer gock.OffAll()
httpMock("GET", _frozenChange).Reply(200).JSON(`{"code":0}`)
err := d.OldFrozenChange(context.TODO(), 7593623)
convey.So(err, convey.ShouldBeNil)
})
convey.Convey("OldFrozenChange fail", t, func() {
defer gock.OffAll()
httpMock("GET", _frozenChange).Reply(200).JSON(`{"code":-400}`)
err := d.OldFrozenChange(context.TODO(), 7593623)
convey.So(err, convey.ShouldNotBeNil)
})
}