From 76761cc927c4535f14b801d0f05348b7ef42a276 Mon Sep 17 00:00:00 2001 From: Alex Lushpai Date: Tue, 6 Feb 2018 15:54:07 +0300 Subject: [PATCH] Customers & Orders combine methods --- v5/client.go | 45 +++++ v5/client_test.go | 477 ++++++++++++++++++++++++++++++---------------- v5/request.go | 4 +- v5/response.go | 6 + 4 files changed, 364 insertions(+), 168 deletions(-) diff --git a/v5/client.go b/v5/client.go index c615e9f..9ef7a47 100644 --- a/v5/client.go +++ b/v5/client.go @@ -305,6 +305,28 @@ func (c *Client) CustomersUpload(customers []Customer, site ...string) (*Custome return &resp, status, err } +// CustomersCombine method +func (c *Client) CustomersCombine(customers []Customer, resultCustomer Customer) (*SucessfulResponse, int, ErrorResponse) { + var resp SucessfulResponse + + combineJsonIn, _ := json.Marshal(&customers) + combineJsonOut, _ := json.Marshal(&resultCustomer) + + p := url.Values{ + "customers": {string(combineJsonIn[:])}, + "resultCustomer": {string(combineJsonOut[:])}, + } + + data, status, err := c.PostRequest(fmt.Sprintf("%s/customers/combine", versionedPrefix), p) + if err.ErrorMsg != "" { + return &resp, status, err + } + + json.Unmarshal(data, &resp) + + return &resp, status, err +} + // CustomersFixExternalIds method func (c *Client) CustomersFixExternalIds(customers []IdentifiersPair) (*SucessfulResponse, int, ErrorResponse) { var resp SucessfulResponse @@ -447,6 +469,29 @@ func (c *Client) OrdersUpload(orders []Order, site ...string) (*OrdersUploadResp return &resp, status, err } +// OrdersCombine method +func (c *Client) OrdersCombine(technique string, order, resultOrder Order) (*OperationResponse, int, ErrorResponse) { + var resp OperationResponse + + combineJsonIn, _ := json.Marshal(&order) + combineJsonOut, _ := json.Marshal(&resultOrder) + + p := url.Values{ + "technique": {technique}, + "order": {string(combineJsonIn[:])}, + "resultOrder": {string(combineJsonOut[:])}, + } + + data, status, err := c.PostRequest(fmt.Sprintf("%s/orders/combine", versionedPrefix), p) + if err.ErrorMsg != "" { + return &resp, status, err + } + + json.Unmarshal(data, &resp) + + return &resp, status, err +} + // OrdersFixExternalIds method func (c *Client) OrdersFixExternalIds(orders []IdentifiersPair) (*SucessfulResponse, int, ErrorResponse) { var resp SucessfulResponse diff --git a/v5/client_test.go b/v5/client_test.go index 3c567da..d9e7ec4 100644 --- a/v5/client_test.go +++ b/v5/client_test.go @@ -97,17 +97,17 @@ func TestClient_CustomersCustomers(t *testing.T) { }) if err.ErrorMsg != "" { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if status >= http.StatusBadRequest { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if data.Success != true { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } } @@ -125,17 +125,17 @@ func TestClient_CustomerChange(t *testing.T) { cr, sc, err := c.CustomerCreate(f) if err.ErrorMsg != "" { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if sc != http.StatusCreated { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if cr.Success != true { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } @@ -144,38 +144,38 @@ func TestClient_CustomerChange(t *testing.T) { ed, se, err := c.CustomerEdit(f, "id") if err.ErrorMsg != "" { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if se != http.StatusOK { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if ed.Success != true { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } data, status, err := c.Customer(f.ExternalId, "externalId", "") if err.ErrorMsg != "" { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if status >= http.StatusBadRequest { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if data.Success != true { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if data.Customer.ExternalId != f.ExternalId { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } } @@ -195,17 +195,100 @@ func TestClient_CustomersUpload(t *testing.T) { data, status, err := c.CustomersUpload(customers) if err.ErrorMsg != "" { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if status >= http.StatusBadRequest { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if data.Success != true { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) + t.Fail() + } +} + +func TestClient_CustomersCombine(t *testing.T) { + c := client() + + dataFirst, status, err := c.CustomerCreate(Customer{ + FirstName: fmt.Sprintf("Name_%s", RandomString(8)), + LastName: fmt.Sprintf("Test_%s", RandomString(8)), + ExternalId: RandomString(8), + Email: fmt.Sprintf("%s@example.com", RandomString(8)), + }) + if err.ErrorMsg != "" { + t.Errorf("%v", err.ErrorMsg) + t.Fail() + } + + if status >= http.StatusBadRequest { + t.Errorf("%v", err.ErrorMsg) + t.Fail() + } + + if dataFirst.Success != true { + t.Errorf("%v", err.ErrorMsg) + t.Fail() + } + + dataSecond, status, err := c.CustomerCreate(Customer{ + FirstName: fmt.Sprintf("Name_%s", RandomString(8)), + LastName: fmt.Sprintf("Test_%s", RandomString(8)), + ExternalId: RandomString(8), + Email: fmt.Sprintf("%s@example.com", RandomString(8)), + }) + if err.ErrorMsg != "" { + t.Errorf("%v", err.ErrorMsg) + t.Fail() + } + + if status >= http.StatusBadRequest { + t.Errorf("%v", err.ErrorMsg) + t.Fail() + } + + if dataSecond.Success != true { + t.Errorf("%v", err.ErrorMsg) + t.Fail() + } + + dataThird, status, err := c.CustomerCreate(Customer{ + FirstName: fmt.Sprintf("Name_%s", RandomString(8)), + LastName: fmt.Sprintf("Test_%s", RandomString(8)), + ExternalId: RandomString(8), + Email: fmt.Sprintf("%s@example.com", RandomString(8)), + }) + if err.ErrorMsg != "" { + t.Errorf("%v", err.ErrorMsg) + t.Fail() + } + + if status >= http.StatusBadRequest { + t.Errorf("%v", err.ErrorMsg) + t.Fail() + } + + if dataThird.Success != true { + t.Errorf("%v", err.ErrorMsg) + t.Fail() + } + + data, status, err := c.CustomersCombine([]Customer{{Id: dataFirst.Id}, {Id: dataSecond.Id}}, Customer{Id: dataThird.Id}) + if err.ErrorMsg != "" { + t.Errorf("%v", err.ErrorMsg) + t.Fail() + } + + if status >= http.StatusBadRequest { + t.Errorf("%v", err.ErrorMsg) + t.Fail() + } + + if data.Success != true { + t.Errorf("%v", err.ErrorMsg) t.Fail() } } @@ -221,17 +304,17 @@ func TestClient_CustomersFixExternalIds(t *testing.T) { cr, sc, err := c.CustomerCreate(f) if err.ErrorMsg != "" { - t.Errorf("%s", sc) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if sc != http.StatusCreated { - t.Errorf("%s", sc) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if cr.Success != true { - t.Errorf("%s", sc) + t.Errorf("%v", err.ErrorMsg) t.Fail() } @@ -242,17 +325,17 @@ func TestClient_CustomersFixExternalIds(t *testing.T) { fx, fe, err := c.CustomersFixExternalIds(customers) if err.ErrorMsg != "" { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if fe != http.StatusOK { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if fx.Success != true { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } } @@ -267,22 +350,22 @@ func TestClient_CustomersHistory(t *testing.T) { data, status, err := c.CustomersHistory(f) if err.ErrorMsg != "" { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if status >= http.StatusBadRequest { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if data.Success != true { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if len(data.History) == 0 { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } } @@ -292,17 +375,17 @@ func TestClient_NotesNotes(t *testing.T) { data, status, err := c.Notes(NotesRequest{Page: 1}) if err.ErrorMsg != "" { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if status != http.StatusOK { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if data.Success != true { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } } @@ -318,17 +401,17 @@ func TestClient_NotesCreateDelete(t *testing.T) { Email: fmt.Sprintf("%s@example.com", RandomString(8)), }) if err.ErrorMsg != "" { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if createCustomerStatus != http.StatusCreated { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if createCustomerResponse.Success != true { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } @@ -340,33 +423,33 @@ func TestClient_NotesCreateDelete(t *testing.T) { }, }) if err.ErrorMsg != "" { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if noteCreateStatus != http.StatusCreated { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if noteCreateResponse.Success != true { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } noteDeleteResponse, noteDeleteStatus, err := c.NoteDelete(noteCreateResponse.Id) if err.ErrorMsg != "" { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if noteDeleteStatus != http.StatusOK { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if noteDeleteResponse.Success != true { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } } @@ -376,17 +459,17 @@ func TestClient_OrdersOrders(t *testing.T) { data, status, err := c.Orders(OrdersRequest{Filter: OrdersFilter{City: "Москва"}, Page: 1}) if err.ErrorMsg != "" { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if status >= http.StatusBadRequest { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if data.Success != true { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } } @@ -406,17 +489,17 @@ func TestClient_OrderChange(t *testing.T) { cr, sc, err := c.OrderCreate(f) if err.ErrorMsg != "" { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if sc != http.StatusCreated { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if cr.Success != true { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } @@ -425,38 +508,38 @@ func TestClient_OrderChange(t *testing.T) { ed, se, err := c.OrderEdit(f, "id") if err.ErrorMsg != "" { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if se != http.StatusOK { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if ed.Success != true { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } data, status, err := c.Order(f.ExternalId, "externalId", "") if err.ErrorMsg != "" { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if status >= http.StatusBadRequest { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if data.Success != true { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if data.Order.ExternalId != f.ExternalId { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } } @@ -476,17 +559,79 @@ func TestClient_OrdersUpload(t *testing.T) { data, status, err := c.OrdersUpload(orders) if err.ErrorMsg != "" { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if status >= http.StatusBadRequest { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if data.Success != true { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) + t.Fail() + } +} + +func TestClient_OrdersCombine(t *testing.T) { + c := client() + + dataFirst, status, err := c.OrderCreate(Order{ + FirstName: fmt.Sprintf("Name_%s", RandomString(8)), + LastName: fmt.Sprintf("Test_%s", RandomString(8)), + ExternalId: RandomString(8), + Email: fmt.Sprintf("%s@example.com", RandomString(8)), + }) + if err.ErrorMsg != "" { + t.Errorf("%v", err.ErrorMsg) + t.Fail() + } + + if status >= http.StatusBadRequest { + t.Errorf("%v", err.ErrorMsg) + t.Fail() + } + + if dataFirst.Success != true { + t.Errorf("%v", err.ErrorMsg) + t.Fail() + } + + dataSecond, status, err := c.OrderCreate(Order{ + FirstName: fmt.Sprintf("Name_%s", RandomString(8)), + LastName: fmt.Sprintf("Test_%s", RandomString(8)), + ExternalId: RandomString(8), + Email: fmt.Sprintf("%s@example.com", RandomString(8)), + }) + if err.ErrorMsg != "" { + t.Errorf("%v", err.ErrorMsg) + t.Fail() + } + + if status >= http.StatusBadRequest { + t.Errorf("%v", err.ErrorMsg) + t.Fail() + } + + if dataSecond.Success != true { + t.Errorf("%v", err.ErrorMsg) + t.Fail() + } + + data, status, err := c.OrdersCombine("ours", Order{Id: dataFirst.Id}, Order{Id: dataSecond.Id}) + if err.ErrorMsg != "" { + t.Errorf("%v", err.ErrorMsg) + t.Fail() + } + + if status >= http.StatusBadRequest { + t.Errorf("%v", err.ErrorMsg) + t.Fail() + } + + if data.Success != true { + t.Errorf("%v", err.ErrorMsg) t.Fail() } } @@ -502,17 +647,17 @@ func TestClient_OrdersFixExternalIds(t *testing.T) { cr, sc, err := c.OrderCreate(f) if err.ErrorMsg != "" { - t.Errorf("%s", sc) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if sc != http.StatusCreated { - t.Errorf("%s", sc) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if cr.Success != true { - t.Errorf("%s", sc) + t.Errorf("%v", err.ErrorMsg) t.Fail() } @@ -523,17 +668,17 @@ func TestClient_OrdersFixExternalIds(t *testing.T) { fx, fe, err := c.OrdersFixExternalIds(orders) if err.ErrorMsg != "" { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if fe != http.StatusOK { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if fx.Success != true { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } } @@ -543,22 +688,22 @@ func TestClient_OrdersHistory(t *testing.T) { data, status, err := c.OrdersHistory(OrdersHistoryRequest{Filter: OrdersHistoryFilter{SinceId: 20}}) if err.ErrorMsg != "" { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if status >= http.StatusBadRequest { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if data.Success != true { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if len(data.History) == 0 { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } } @@ -576,17 +721,17 @@ func TestClient_PaymentCreateEditDelete(t *testing.T) { createOrderResponse, status, err := c.OrderCreate(order) if err.ErrorMsg != "" { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if status != http.StatusCreated { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if createOrderResponse.Success != true { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } @@ -600,17 +745,17 @@ func TestClient_PaymentCreateEditDelete(t *testing.T) { paymentCreateResponse, status, err := c.PaymentCreate(f) if err.ErrorMsg != "" { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if status != http.StatusCreated { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if paymentCreateResponse.Success != true { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } @@ -621,33 +766,33 @@ func TestClient_PaymentCreateEditDelete(t *testing.T) { paymentEditResponse, status, err := c.PaymentEdit(k, "id") if err.ErrorMsg != "" { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if status != http.StatusOK { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if paymentEditResponse.Success != true { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } paymentDeleteResponse, status, err := c.PaymentDelete(paymentCreateResponse.Id) if err.ErrorMsg != "" { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if status != http.StatusOK { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if paymentDeleteResponse.Success != true { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } } @@ -664,17 +809,17 @@ func TestClient_TasksTasks(t *testing.T) { data, status, err := c.Tasks(f) if err.ErrorMsg != "" { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if status != http.StatusOK { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if data.Success != true { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } } @@ -689,17 +834,17 @@ func TestClient_TaskChange(t *testing.T) { cr, sc, err := c.TaskCreate(f) if err.ErrorMsg != "" { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if sc != http.StatusCreated { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if cr.Success != true { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } @@ -708,33 +853,33 @@ func TestClient_TaskChange(t *testing.T) { gt, sg, err := c.Task(f.Id) if err.ErrorMsg != "" { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if sg != http.StatusOK { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if gt.Success != true { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } data, status, err := c.TaskEdit(f) if err.ErrorMsg != "" { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if status != http.StatusOK { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if data.Success != true { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } } @@ -744,17 +889,17 @@ func TestClient_UsersUsers(t *testing.T) { data, status, err := c.Users(UsersRequest{Filter: UsersFilter{Active: 1}, Page: 1}) if err.ErrorMsg != "" { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if status >= http.StatusBadRequest { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if data.Success != true { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } } @@ -764,17 +909,17 @@ func TestClient_UsersUser(t *testing.T) { data, st, err := c.User(user) if err.ErrorMsg != "" { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if st != http.StatusOK { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if data.Success != true { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } } @@ -784,17 +929,17 @@ func TestClient_UsersGroups(t *testing.T) { data, status, err := c.UserGroups(UserGroupsRequest{Page: 1}) if err.ErrorMsg != "" { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if status >= http.StatusBadRequest { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if data.Success != true { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } } @@ -804,17 +949,17 @@ func TestClient_UsersUpdate(t *testing.T) { data, st, err := c.UserStatus(user, "busy") if err.ErrorMsg != "" { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if st != http.StatusOK { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if data.Success != true { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } } @@ -824,17 +969,17 @@ func TestClient_StaticticUpdate(t *testing.T) { data, st, err := c.StaticticUpdate() if err.ErrorMsg != "" { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if st != http.StatusOK { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if data.Success != true { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } } @@ -844,17 +989,17 @@ func TestClient_Countries(t *testing.T) { data, st, err := c.Couriers() if err.ErrorMsg != "" { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if st != http.StatusOK { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if data.Success != true { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } } @@ -864,17 +1009,17 @@ func TestClient_CostGroups(t *testing.T) { data, st, err := c.CostGroups() if err.ErrorMsg != "" { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if st != http.StatusOK { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if data.Success != true { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } } @@ -884,17 +1029,17 @@ func TestClient_CostItems(t *testing.T) { data, st, err := c.CostItems() if err.ErrorMsg != "" { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if st != http.StatusOK { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if data.Success != true { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } } @@ -904,17 +1049,17 @@ func TestClient_Couriers(t *testing.T) { data, st, err := c.Couriers() if err.ErrorMsg != "" { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if st != http.StatusOK { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if data.Success != true { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } } @@ -924,17 +1069,17 @@ func TestClient_DeliveryService(t *testing.T) { data, st, err := c.DeliveryServices() if err.ErrorMsg != "" { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if st != http.StatusOK { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if data.Success != true { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } } @@ -944,17 +1089,17 @@ func TestClient_DeliveryTypes(t *testing.T) { data, st, err := c.DeliveryTypes() if err.ErrorMsg != "" { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if st != http.StatusOK { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if data.Success != true { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } } @@ -964,17 +1109,17 @@ func TestClient_LegalEntities(t *testing.T) { data, st, err := c.LegalEntities() if err.ErrorMsg != "" { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if st != http.StatusOK { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if data.Success != true { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } } @@ -984,17 +1129,17 @@ func TestClient_OrderMethods(t *testing.T) { data, st, err := c.OrderMethods() if err.ErrorMsg != "" { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if st != http.StatusOK { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if data.Success != true { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } } @@ -1004,17 +1149,17 @@ func TestClient_OrderTypes(t *testing.T) { data, st, err := c.OrderTypes() if err.ErrorMsg != "" { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if st != http.StatusOK { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if data.Success != true { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } } @@ -1024,17 +1169,17 @@ func TestClient_PaymentStatuses(t *testing.T) { data, st, err := c.PaymentStatuses() if err.ErrorMsg != "" { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if st != http.StatusOK { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if data.Success != true { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } } @@ -1044,17 +1189,17 @@ func TestClient_PaymentTypes(t *testing.T) { data, st, err := c.PaymentTypes() if err.ErrorMsg != "" { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if st != http.StatusOK { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if data.Success != true { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } } @@ -1064,17 +1209,17 @@ func TestClient_PriceTypes(t *testing.T) { data, st, err := c.PriceTypes() if err.ErrorMsg != "" { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if st != http.StatusOK { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if data.Success != true { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } } @@ -1084,17 +1229,17 @@ func TestClient_ProductStatuses(t *testing.T) { data, st, err := c.ProductStatuses() if err.ErrorMsg != "" { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if st != http.StatusOK { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if data.Success != true { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } } @@ -1104,17 +1249,17 @@ func TestClient_Statuses(t *testing.T) { data, st, err := c.Statuses() if err.ErrorMsg != "" { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if st != http.StatusOK { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if data.Success != true { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } } @@ -1124,17 +1269,17 @@ func TestClient_StatusGroups(t *testing.T) { data, st, err := c.StatusGroups() if err.ErrorMsg != "" { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if st != http.StatusOK { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if data.Success != true { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } } @@ -1144,17 +1289,17 @@ func TestClient_Sites(t *testing.T) { data, st, err := c.Sites() if err.ErrorMsg != "" { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if st != http.StatusOK { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if data.Success != true { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } } @@ -1164,17 +1309,17 @@ func TestClient_Stores(t *testing.T) { data, st, err := c.Stores() if err.ErrorMsg != "" { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if st != http.StatusOK { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } if data.Success != true { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } } @@ -1191,7 +1336,7 @@ func TestClient_CostGroupItemEdit(t *testing.T) { Name: fmt.Sprintf("CostGroup-%s", uid), }) if err.ErrorMsg != "" { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } @@ -1201,7 +1346,7 @@ func TestClient_CostGroupItemEdit(t *testing.T) { } if data.Success != true { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } @@ -1214,7 +1359,7 @@ func TestClient_CostGroupItemEdit(t *testing.T) { Active: false, }) if err.ErrorMsg != "" { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } @@ -1224,7 +1369,7 @@ func TestClient_CostGroupItemEdit(t *testing.T) { } if idata.Success != true { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } } @@ -1241,7 +1386,7 @@ func TestClient_Courier(t *testing.T) { data, st, err := c.CourierCreate(cur) if err.ErrorMsg != "" { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } @@ -1251,7 +1396,7 @@ func TestClient_Courier(t *testing.T) { } if data.Success != true { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } @@ -1260,7 +1405,7 @@ func TestClient_Courier(t *testing.T) { idata, st, err := c.CourierEdit(cur) if err.ErrorMsg != "" { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } @@ -1270,7 +1415,7 @@ func TestClient_Courier(t *testing.T) { } if idata.Success != true { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } } @@ -1284,7 +1429,7 @@ func TestClient_DeliveryServiceEdit(t *testing.T) { Name: RandomString(5), }) if err.ErrorMsg != "" { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } @@ -1294,7 +1439,7 @@ func TestClient_DeliveryServiceEdit(t *testing.T) { } if data.Success != true { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } } @@ -1313,7 +1458,7 @@ func TestClient_DeliveryTypeEdit(t *testing.T) { DefaultForCrm: false, }) if err.ErrorMsg != "" { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } @@ -1323,7 +1468,7 @@ func TestClient_DeliveryTypeEdit(t *testing.T) { } if data.Success != true { - t.Errorf("%v", err) + t.Errorf("%v", err.ErrorMsg) t.Fail() } } diff --git a/v5/request.go b/v5/request.go index 74c727d..af039af 100644 --- a/v5/request.go +++ b/v5/request.go @@ -41,8 +41,8 @@ type OrdersRequest struct { // OrdersUploadRequest type type OrdersUploadRequest struct { - Customers []Order `url:"orders,omitempty,brackets"` - Site string `url:"site,omitempty"` + Orders []Order `url:"orders,omitempty,brackets"` + Site string `url:"site,omitempty"` } // OrdersHistoryRequest type diff --git a/v5/response.go b/v5/response.go index 888be88..d3d5855 100644 --- a/v5/response.go +++ b/v5/response.go @@ -27,6 +27,12 @@ type CreateResponse struct { Id int `json:"id,omitempty"` } +// OperationResponse type +type OperationResponse struct { + Success bool `json:"success"` + Errors map[string]string `json:"errors,omitempty,brackets"` +} + // VersionResponse return available API versions type VersionResponse struct { Success bool `json:"success,omitempty"`