| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371 |
- package v1
- import (
- "fmt"
- "git.sxidc.com/service-supports/dps-sdk"
- "git.sxidc.com/service-supports/dps-sdk/client"
- "github.com/stretchr/testify/assert"
- "testing"
- )
- var clientInstance client.Client
- func initClient(t *testing.T, address string) {
- c, err := dps.NewClient(address, "v1")
- if err != nil {
- t.Fatal(err)
- }
- clientInstance = c
- }
- func destroyClient(t *testing.T) {
- err := dps.DestroyClient("v1")
- if err != nil {
- t.Fatal(err)
- }
- clientInstance = nil
- }
- type ToolKit struct {
- t *testing.T
- }
- func newToolKit(t *testing.T) *ToolKit {
- return &ToolKit{t: t}
- }
- func (toolKit *ToolKit) autoMigrate(databaseID string, req *client.AutoMigrateRequest) *ToolKit {
- err := clientInstance.AutoMigrate(databaseID, req)
- if err != nil {
- toolKit.t.Fatal(err)
- }
- return toolKit
- }
- func (toolKit *ToolKit) autoMigrateBatch(databaseID string, req *client.AutoMigrateBatchRequest) *ToolKit {
- err := clientInstance.AutoMigrateBatch(databaseID, req)
- if err != nil {
- toolKit.t.Fatal(err)
- }
- return toolKit
- }
- func (toolKit *ToolKit) transaction(databaseID string, txFunc client.TransactionFunc) *ToolKit {
- err := clientInstance.Transaction(databaseID, txFunc)
- if err != nil {
- toolKit.t.Fatal(err)
- }
- return toolKit
- }
- func (toolKit *ToolKit) insert(databaseID string, req *client.InsertRequest) *ToolKit {
- statement, err := clientInstance.Insert(databaseID, req)
- if err != nil {
- toolKit.t.Fatal(err)
- }
- fmt.Println(statement)
- return toolKit
- }
- func (toolKit *ToolKit) insertBatch(databaseID string, req *client.InsertBatchRequest) *ToolKit {
- statement, err := clientInstance.InsertBatch(databaseID, req)
- if err != nil {
- toolKit.t.Fatal(err)
- }
- fmt.Println(statement)
- return toolKit
- }
- func (toolKit *ToolKit) delete(databaseID string, req *client.DeleteRequest) *ToolKit {
- statement, err := clientInstance.Delete(databaseID, req)
- if err != nil {
- toolKit.t.Fatal(err)
- }
- fmt.Println(statement)
- return toolKit
- }
- func (toolKit *ToolKit) deleteBatch(databaseID string, req *client.DeleteBatchRequest) *ToolKit {
- statement, err := clientInstance.DeleteBatch(databaseID, req)
- if err != nil {
- toolKit.t.Fatal(err)
- }
- fmt.Println(statement)
- return toolKit
- }
- func (toolKit *ToolKit) update(databaseID string, req *client.UpdateRequest) *ToolKit {
- statement, err := clientInstance.Update(databaseID, req)
- if err != nil {
- toolKit.t.Fatal(err)
- }
- fmt.Println(statement)
- return toolKit
- }
- func (toolKit *ToolKit) reply(databaseID string, req *client.ReplayRequest) *ToolKit {
- statement, err := clientInstance.Replay(databaseID, req)
- if err != nil {
- toolKit.t.Fatal(err)
- }
- fmt.Println(statement)
- return toolKit
- }
- func (toolKit *ToolKit) queryByWhereAndOrderBy(databaseID string, req *client.QueryByWhereAndOrderByRequest, retInfosMap *[]map[string]any, retTotalCount *int64) *ToolKit {
- statement, infosMap, totalCount, err := clientInstance.QueryByWhereAndOrderBy(databaseID, req)
- if err != nil {
- toolKit.t.Fatal(err)
- }
- fmt.Println(statement)
- if retInfosMap != nil {
- *retInfosMap = make([]map[string]any, 0)
- *retInfosMap = infosMap
- }
- if retTotalCount != nil {
- *retTotalCount = totalCount
- }
- return toolKit
- }
- func (toolKit *ToolKit) commonQuery(databaseID string, req *client.CommonQueryRequest, retInfosMap *[]map[string]any, retTotalCount *int64) *ToolKit {
- statement, infosMap, totalCount, err := clientInstance.CommonQuery(databaseID, req)
- if err != nil {
- toolKit.t.Fatal(err)
- }
- fmt.Println(statement)
- if retInfosMap != nil {
- *retInfosMap = make([]map[string]any, 0)
- *retInfosMap = infosMap
- }
- if retTotalCount != nil {
- *retTotalCount = totalCount
- }
- return toolKit
- }
- func (toolKit *ToolKit) queryByKeys(databaseID string, req *client.QueryByKeysRequest, retInfoMap *map[string]any) *ToolKit {
- statement, infoMap, err := clientInstance.QueryByKeys(databaseID, req)
- if err != nil {
- toolKit.t.Fatal(err)
- }
- fmt.Println(statement)
- if retInfoMap != nil {
- *retInfoMap = make(map[string]any)
- *retInfoMap = infoMap
- }
- return toolKit
- }
- func (toolKit *ToolKit) countWhere(databaseID string, req *client.CountWhereRequest, retCount *int64) *ToolKit {
- statement, count, err := clientInstance.CountWhere(databaseID, req)
- if err != nil {
- toolKit.t.Fatal(err)
- }
- fmt.Println(statement)
- if retCount != nil {
- *retCount = count
- }
- return toolKit
- }
- func (toolKit *ToolKit) commonCount(databaseID string, req *client.CommonCountRequest, retCount *int64) *ToolKit {
- statement, count, err := clientInstance.CommonCount(databaseID, req)
- if err != nil {
- toolKit.t.Fatal(err)
- }
- fmt.Println(statement)
- if retCount != nil {
- *retCount = count
- }
- return toolKit
- }
- func (toolKit *ToolKit) eventQueryByKeys(databaseID string, req *client.EventQueryByKeysRequest, retInfos *[]client.EventInfo, retTotalCount *int64) *ToolKit {
- statement, infos, totalCount, err := clientInstance.EventQueryByKeys(databaseID, req)
- if err != nil {
- toolKit.t.Fatal(err)
- }
- fmt.Println(statement)
- if retInfos != nil {
- *retInfos = make([]client.EventInfo, 0)
- *retInfos = infos
- }
- if retTotalCount != nil {
- *retTotalCount = totalCount
- }
- return toolKit
- }
- func (toolKit *ToolKit) commonEventQuery(databaseID string, req *client.CommonEventQueryRequest, retInfos *[]client.EventInfo, retTotalCount *int64) *ToolKit {
- statement, infos, totalCount, err := clientInstance.CommonEventQuery(databaseID, req)
- if err != nil {
- toolKit.t.Fatal(err)
- }
- fmt.Println(statement)
- if retInfos != nil {
- *retInfos = make([]client.EventInfo, 0)
- *retInfos = infos
- }
- if retTotalCount != nil {
- *retTotalCount = totalCount
- }
- return toolKit
- }
- func (toolKit *ToolKit) countEventByKeys(databaseID string, req *client.CountEventByKeysRequest, retCount *int64) *ToolKit {
- statement, count, err := clientInstance.CountEventByKeys(databaseID, req)
- if err != nil {
- toolKit.t.Fatal(err)
- }
- fmt.Println(statement)
- if retCount != nil {
- *retCount = count
- }
- return toolKit
- }
- func (toolKit *ToolKit) commonCountEvent(databaseID string, req *client.CommonCountEventRequest, retCount *int64) *ToolKit {
- statement, count, err := clientInstance.CommonCountEvent(databaseID, req)
- if err != nil {
- toolKit.t.Fatal(err)
- }
- fmt.Println(statement)
- if retCount != nil {
- *retCount = count
- }
- return toolKit
- }
- func (toolKit *ToolKit) eventHistoryQueryByKeys(databaseID string, req *client.EventQueryByKeysRequest, retInfos *[]client.EventInfo, retTotalCount *int64) *ToolKit {
- statement, infos, totalCount, err := clientInstance.EventHistoryQueryByKeys(databaseID, req)
- if err != nil {
- toolKit.t.Fatal(err)
- }
- fmt.Println(statement)
- if retInfos != nil {
- *retInfos = make([]client.EventInfo, 0)
- *retInfos = infos
- }
- if retTotalCount != nil {
- *retTotalCount = totalCount
- }
- return toolKit
- }
- func (toolKit *ToolKit) commonEventHistoryQuery(databaseID string, req *client.CommonEventQueryRequest, retInfos *[]client.EventInfo, retTotalCount *int64) *ToolKit {
- statement, infos, totalCount, err := clientInstance.CommonEventHistoryQuery(databaseID, req)
- if err != nil {
- toolKit.t.Fatal(err)
- }
- fmt.Println(statement)
- if retInfos != nil {
- *retInfos = make([]client.EventInfo, 0)
- *retInfos = infos
- }
- if retTotalCount != nil {
- *retTotalCount = totalCount
- }
- return toolKit
- }
- func (toolKit *ToolKit) countEventHistoryByKeys(databaseID string, req *client.CountEventByKeysRequest, retCount *int64) *ToolKit {
- statement, count, err := clientInstance.CountEventHistoryByKeys(databaseID, req)
- if err != nil {
- toolKit.t.Fatal(err)
- }
- fmt.Println(statement)
- if retCount != nil {
- *retCount = count
- }
- return toolKit
- }
- func (toolKit *ToolKit) commonCountEventHistory(databaseID string, req *client.CommonCountEventRequest, retCount *int64) *ToolKit {
- statement, count, err := clientInstance.CommonCountEventHistory(databaseID, req)
- if err != nil {
- toolKit.t.Fatal(err)
- }
- fmt.Println(statement)
- if retCount != nil {
- *retCount = count
- }
- 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
- }
|