123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476 |
- package instance
- import (
- "git.sxidc.com/service-supports/dps-sdk"
- "git.sxidc.com/service-supports/dps-sdk/client"
- "github.com/stretchr/testify/assert"
- "testing"
- )
- func initClient(t *testing.T, address string, databaseID string) {
- err := dps.InitInstance(address, "v1", databaseID)
- if err != nil {
- t.Fatal(err)
- }
- }
- func destroyClient(t *testing.T, databaseID string) {
- err := dps.DestroyInstance("v1", databaseID)
- if err != nil {
- t.Fatal(err)
- }
- }
- type ToolKit struct {
- t *testing.T
- }
- func newToolKit(t *testing.T) *ToolKit {
- return &ToolKit{t: t}
- }
- func (toolKit *ToolKit) autoMigrate(items []client.AutoMigrateItem) *ToolKit {
- err := dps.AutoMigrate(items...)
- if err != nil {
- toolKit.t.Fatal(err)
- }
- return toolKit
- }
- func (toolKit *ToolKit) transaction(txFunc client.TransactionFunc) *ToolKit {
- err := dps.Transaction(txFunc)
- if err != nil {
- toolKit.t.Fatal(err)
- }
- return toolKit
- }
- func (toolKit *ToolKit) insert(req *client.InsertRequest) *ToolKit {
- err := dps.Insert(req, nil)
- if err != nil {
- toolKit.t.Fatal(err)
- }
- return toolKit
- }
- func (toolKit *ToolKit) insertBatch(req *client.InsertBatchRequest) *ToolKit {
- err := dps.InsertBatch(req, nil)
- if err != nil {
- toolKit.t.Fatal(err)
- }
- return toolKit
- }
- func (toolKit *ToolKit) delete(req *client.DeleteRequest) *ToolKit {
- err := dps.Delete(req, nil)
- if err != nil {
- toolKit.t.Fatal(err)
- }
- return toolKit
- }
- func (toolKit *ToolKit) deleteWhere(req *client.DeleteWhereRequest) *ToolKit {
- err := dps.DeleteWhere(req, nil)
- if err != nil {
- toolKit.t.Fatal(err)
- }
- return toolKit
- }
- func (toolKit *ToolKit) update(req *client.UpdateRequest) *ToolKit {
- err := dps.Update(req, nil)
- if err != nil {
- toolKit.t.Fatal(err)
- }
- return toolKit
- }
- func (toolKit *ToolKit) updateWhere(req *client.UpdateWhereRequest) *ToolKit {
- err := dps.UpdateWhere(req, nil)
- if err != nil {
- toolKit.t.Fatal(err)
- }
- return toolKit
- }
- func (toolKit *ToolKit) reply(req *client.ReplayRequest) *ToolKit {
- err := dps.Replay(req)
- if err != nil {
- toolKit.t.Fatal(err)
- }
- return toolKit
- }
- func (toolKit *ToolKit) queryByWhereAndOrderBy(req *client.QueryByWhereAndOrderByRequest, retTableRows *[]client.TableRow, retTotalCount *int64) *ToolKit {
- tableRows, totalCount, err := dps.QueryByWhereAndOrderBy(req)
- if err != nil {
- toolKit.t.Fatal(err)
- }
- if retTableRows != nil {
- *retTableRows = tableRows
- }
- if retTotalCount != nil {
- *retTotalCount = totalCount
- }
- return toolKit
- }
- func (toolKit *ToolKit) commonQuery(req *client.CommonQueryRequest, retTableRows *[]client.TableRow, retTotalCount *int64) *ToolKit {
- tableRows, totalCount, err := dps.CommonQuery(req)
- if err != nil {
- toolKit.t.Fatal(err)
- }
- if retTableRows != nil {
- *retTableRows = tableRows
- }
- if retTotalCount != nil {
- *retTotalCount = totalCount
- }
- return toolKit
- }
- func (toolKit *ToolKit) queryOnlyByWhereAndOrderBy(req *client.QueryByWhereAndOrderByRequest, retTableRows *[]client.TableRow) *ToolKit {
- tableRows, err := dps.QueryOnlyByWhereAndOrderBy(req)
- if err != nil {
- toolKit.t.Fatal(err)
- }
- if retTableRows != nil {
- *retTableRows = tableRows
- }
- return toolKit
- }
- func (toolKit *ToolKit) commonQueryOnly(req *client.CommonQueryRequest, retTableRows *[]client.TableRow) *ToolKit {
- tableRows, err := dps.CommonQueryOnly(req)
- if err != nil {
- toolKit.t.Fatal(err)
- }
- if retTableRows != nil {
- *retTableRows = tableRows
- }
- return toolKit
- }
- func (toolKit *ToolKit) queryByKeys(req *client.QueryByKeysRequest, retTableRow *client.TableRow) *ToolKit {
- tableRow, err := dps.QueryByKeys(req)
- if err != nil {
- toolKit.t.Fatal(err)
- }
- if retTableRow != nil {
- *retTableRow = *tableRow
- }
- return toolKit
- }
- func (toolKit *ToolKit) countWhere(req *client.CountWhereRequest, retCount *int64) *ToolKit {
- count, err := dps.CountWhere(req)
- if err != nil {
- toolKit.t.Fatal(err)
- }
- if retCount != nil {
- *retCount = count
- }
- return toolKit
- }
- func (toolKit *ToolKit) commonCount(req *client.CommonCountRequest, retCount *int64) *ToolKit {
- count, err := dps.CommonCount(req)
- if err != nil {
- toolKit.t.Fatal(err)
- }
- if retCount != nil {
- *retCount = count
- }
- return toolKit
- }
- func (toolKit *ToolKit) checkExistWhere(req *client.CountWhereRequest, retExist *bool) *ToolKit {
- exist, err := dps.CheckExistWhere(req)
- if err != nil {
- toolKit.t.Fatal(err)
- }
- if retExist != nil {
- *retExist = exist
- }
- return toolKit
- }
- func (toolKit *ToolKit) commonCheckExist(req *client.CommonCountRequest, retExist *bool) *ToolKit {
- exist, err := dps.CommonCheckExist(req)
- if err != nil {
- toolKit.t.Fatal(err)
- }
- if retExist != nil {
- *retExist = exist
- }
- return toolKit
- }
- func (toolKit *ToolKit) eventQueryByKeys(req *client.EventQueryByKeysRequest, retInfos *[]client.EventInfo, retTotalCount *int64) *ToolKit {
- infos, totalCount, err := dps.EventQueryByKeys(req)
- if err != nil {
- toolKit.t.Fatal(err)
- }
- if retInfos != nil {
- *retInfos = make([]client.EventInfo, 0)
- *retInfos = infos
- }
- if retTotalCount != nil {
- *retTotalCount = totalCount
- }
- return toolKit
- }
- func (toolKit *ToolKit) commonEventQuery(req *client.CommonEventQueryRequest, retInfos *[]client.EventInfo, retTotalCount *int64) *ToolKit {
- infos, totalCount, err := dps.CommonEventQuery(req)
- if err != nil {
- toolKit.t.Fatal(err)
- }
- if retInfos != nil {
- *retInfos = infos
- }
- if retTotalCount != nil {
- *retTotalCount = totalCount
- }
- return toolKit
- }
- func (toolKit *ToolKit) eventQueryOnlyByKeys(req *client.EventQueryByKeysRequest, retInfos *[]client.EventInfo) *ToolKit {
- infos, err := dps.EventQueryOnlyByKeys(req)
- if err != nil {
- toolKit.t.Fatal(err)
- }
- if retInfos != nil {
- *retInfos = infos
- }
- return toolKit
- }
- func (toolKit *ToolKit) commonEventQueryOnly(req *client.CommonEventQueryRequest, retInfos *[]client.EventInfo) *ToolKit {
- infos, err := dps.CommonEventQueryOnly(req)
- if err != nil {
- toolKit.t.Fatal(err)
- }
- if retInfos != nil {
- *retInfos = infos
- }
- return toolKit
- }
- func (toolKit *ToolKit) countEventByKeys(req *client.CountEventByKeysRequest, retCount *int64) *ToolKit {
- count, err := dps.CountEventByKeys(req)
- if err != nil {
- toolKit.t.Fatal(err)
- }
- if retCount != nil {
- *retCount = count
- }
- return toolKit
- }
- func (toolKit *ToolKit) commonCountEvent(req *client.CommonCountEventRequest, retCount *int64) *ToolKit {
- count, err := dps.CommonCountEvent(req)
- if err != nil {
- toolKit.t.Fatal(err)
- }
- if retCount != nil {
- *retCount = count
- }
- return toolKit
- }
- func (toolKit *ToolKit) checkEventExistByKeys(req *client.CountEventByKeysRequest, retExist *bool) *ToolKit {
- exist, err := dps.CheckEventExistByKeys(req)
- if err != nil {
- toolKit.t.Fatal(err)
- }
- if retExist != nil {
- *retExist = exist
- }
- return toolKit
- }
- func (toolKit *ToolKit) commonCheckEventExist(req *client.CommonCountEventRequest, retExist *bool) *ToolKit {
- exist, err := dps.CommonCheckEventExist(req)
- if err != nil {
- toolKit.t.Fatal(err)
- }
- if retExist != nil {
- *retExist = exist
- }
- return toolKit
- }
- func (toolKit *ToolKit) eventHistoryQueryByKeys(req *client.EventQueryByKeysRequest, retInfos *[]client.EventInfo, retTotalCount *int64) *ToolKit {
- infos, totalCount, err := dps.EventHistoryQueryByKeys(req)
- if err != nil {
- toolKit.t.Fatal(err)
- }
- if retInfos != nil {
- *retInfos = infos
- }
- if retTotalCount != nil {
- *retTotalCount = totalCount
- }
- return toolKit
- }
- func (toolKit *ToolKit) commonEventHistoryQuery(req *client.CommonEventQueryRequest, retInfos *[]client.EventInfo, retTotalCount *int64) *ToolKit {
- infos, totalCount, err := dps.CommonEventHistoryQuery(req)
- if err != nil {
- toolKit.t.Fatal(err)
- }
- if retInfos != nil {
- *retInfos = infos
- }
- if retTotalCount != nil {
- *retTotalCount = totalCount
- }
- return toolKit
- }
- func (toolKit *ToolKit) eventHistoryQueryOnlyByKeys(req *client.EventQueryByKeysRequest, retInfos *[]client.EventInfo) *ToolKit {
- infos, err := dps.EventHistoryQueryOnlyByKeys(req)
- if err != nil {
- toolKit.t.Fatal(err)
- }
- if retInfos != nil {
- *retInfos = infos
- }
- return toolKit
- }
- func (toolKit *ToolKit) commonEventHistoryQueryOnly(req *client.CommonEventQueryRequest, retInfos *[]client.EventInfo) *ToolKit {
- infos, err := dps.CommonEventHistoryQueryOnly(req)
- if err != nil {
- toolKit.t.Fatal(err)
- }
- if retInfos != nil {
- *retInfos = infos
- }
- return toolKit
- }
- func (toolKit *ToolKit) countEventHistoryByKeys(req *client.CountEventByKeysRequest, retCount *int64) *ToolKit {
- count, err := dps.CountEventHistoryByKeys(req)
- if err != nil {
- toolKit.t.Fatal(err)
- }
- if retCount != nil {
- *retCount = count
- }
- return toolKit
- }
- func (toolKit *ToolKit) commonCountEventHistory(req *client.CommonCountEventRequest, retCount *int64) *ToolKit {
- count, err := dps.CommonCountEventHistory(req)
- if err != nil {
- toolKit.t.Fatal(err)
- }
- if retCount != nil {
- *retCount = count
- }
- return toolKit
- }
- func (toolKit *ToolKit) checkEventHistoryExistByKeys(req *client.CountEventByKeysRequest, retExist *bool) *ToolKit {
- exist, err := dps.CheckEventHistoryExistByKeys(req)
- if err != nil {
- toolKit.t.Fatal(err)
- }
- if retExist != nil {
- *retExist = exist
- }
- return toolKit
- }
- func (toolKit *ToolKit) commonCheckEventHistoryExist(req *client.CommonCountEventRequest, retExist *bool) *ToolKit {
- exist, err := dps.CommonCheckEventHistoryExist(req)
- if err != nil {
- toolKit.t.Fatal(err)
- }
- if retExist != nil {
- *retExist = exist
- }
- return toolKit
- }
- func (toolKit *ToolKit) assertEqual(expected interface{}, actual interface{}, msgAndArgs ...interface{}) *ToolKit {
- assert.Equal(toolKit.t, expected, actual, msgAndArgs)
- return toolKit
- }
- func (toolKit *ToolKit) assertNotEqual(expected interface{}, actual interface{}, msgAndArgs ...interface{}) *ToolKit {
- assert.NotEqual(toolKit.t, expected, actual, msgAndArgs)
- return toolKit
- }
- func (toolKit *ToolKit) assertNotEmpty(object interface{}, msgAndArgs ...interface{}) *ToolKit {
- assert.NotEmpty(toolKit.t, object, msgAndArgs)
- return toolKit
- }
|