144 lines
4.3 KiB
Go
144 lines
4.3 KiB
Go
package ozon
|
||
|
||
import (
|
||
"net/http"
|
||
"testing"
|
||
|
||
core "github.com/diphantxm/ozon-api-client"
|
||
)
|
||
|
||
func TestGetFBOShipmentsList(t *testing.T) {
|
||
tests := []struct {
|
||
statusCode int
|
||
headers map[string]string
|
||
params *GetFBOShipmentsListParams
|
||
response string
|
||
}{
|
||
// Test Ok
|
||
{
|
||
http.StatusOK,
|
||
map[string]string{"Client-Id": "my-client-id", "Api-Key": "my-api-key"},
|
||
&GetFBOShipmentsListParams{
|
||
Direction: "ASC",
|
||
Filter: GetFBOShipmentsListFilter{
|
||
Since: core.TimeFromString(t, "2006-01-02T15:04:05Z", "2021-09-01T00:00:00.000Z"),
|
||
Status: "awaiting_packaging",
|
||
To: core.TimeFromString(t, "2006-01-02T15:04:05Z", "2021-11-17T10:44:12.828Z"),
|
||
},
|
||
Limit: 5,
|
||
Offset: 0,
|
||
Translit: true,
|
||
With: GetFBOShipmentsListWith{
|
||
AnalyticsData: true,
|
||
FinancialData: true,
|
||
},
|
||
},
|
||
`{
|
||
"result": [
|
||
{
|
||
"order_id": 354680487,
|
||
"order_number": "16965409-0014",
|
||
"posting_number": "16965409-0014-1",
|
||
"status": "delivered",
|
||
"cancel_reason_id": 0,
|
||
"created_at": "2021-09-01T00:23:45.607Z",
|
||
"in_process_at": "2021-09-01T00:25:30.120Z",
|
||
"products": [
|
||
{
|
||
"sku": 160249683,
|
||
"name": "Так говорил Омар Хайям. Жизнеописание. Афоризмы и рубайят. Классика в словах и картинках",
|
||
"quantity": 1,
|
||
"offer_id": "978-5-906864-56-7",
|
||
"price": "81.00",
|
||
"digital_codes": [],
|
||
"currency_code": "RUB"
|
||
}
|
||
],
|
||
"analytics_data": {
|
||
"region": "РОСТОВСКАЯ ОБЛАСТЬ",
|
||
"city": "Ростов-на-Дону",
|
||
"delivery_type": "PVZ",
|
||
"is_premium": false,
|
||
"payment_type_group_name": "Карты оплаты",
|
||
"warehouse_id": 17717042026000,
|
||
"warehouse_name": "РОСТОВ-НА-ДОНУ_РФЦ",
|
||
"is_legal": false
|
||
},
|
||
"financial_data": {
|
||
"products": [
|
||
{
|
||
"commission_amount": 12.15,
|
||
"commission_percent": 15,
|
||
"payout": 68.85,
|
||
"product_id": 160249683,
|
||
"currency_code": "RUB",
|
||
"old_price": 115,
|
||
"price": 81,
|
||
"total_discount_value": 34,
|
||
"total_discount_percent": 29.57,
|
||
"actions": [
|
||
"Системная виртуальная скидка селлера"
|
||
],
|
||
"picking": null,
|
||
"quantity": 0,
|
||
"client_price": "",
|
||
"item_services": {
|
||
"marketplace_service_item_fulfillment": -31.5,
|
||
"marketplace_service_item_pickup": 0,
|
||
"marketplace_service_item_dropoff_pvz": 0,
|
||
"marketplace_service_item_dropoff_sc": 0,
|
||
"marketplace_service_item_dropoff_ff": 0,
|
||
"marketplace_service_item_direct_flow_trans": -5,
|
||
"marketplace_service_item_return_flow_trans": 0,
|
||
"marketplace_service_item_deliv_to_customer": -20,
|
||
"marketplace_service_item_return_not_deliv_to_customer": 0,
|
||
"marketplace_service_item_return_part_goods_customer": 0,
|
||
"marketplace_service_item_return_after_deliv_to_customer": 0
|
||
}
|
||
}
|
||
],
|
||
"posting_services": {
|
||
"marketplace_service_item_fulfillment": 0,
|
||
"marketplace_service_item_pickup": 0,
|
||
"marketplace_service_item_dropoff_pvz": 0,
|
||
"marketplace_service_item_dropoff_sc": 0,
|
||
"marketplace_service_item_dropoff_ff": 0,
|
||
"marketplace_service_item_direct_flow_trans": 0,
|
||
"marketplace_service_item_return_flow_trans": 0,
|
||
"marketplace_service_item_deliv_to_customer": 0,
|
||
"marketplace_service_item_return_not_deliv_to_customer": 0,
|
||
"marketplace_service_item_return_part_goods_customer": 0,
|
||
"marketplace_service_item_return_after_deliv_to_customer": 0
|
||
}
|
||
},
|
||
"additional_data": []
|
||
}
|
||
]
|
||
}`,
|
||
},
|
||
// Test No Client-Id or Api-Key
|
||
{
|
||
http.StatusUnauthorized,
|
||
map[string]string{},
|
||
&GetFBOShipmentsListParams{},
|
||
`{
|
||
"code": 16,
|
||
"message": "Client-Id and Api-Key headers are required"
|
||
}`,
|
||
},
|
||
}
|
||
|
||
for _, test := range tests {
|
||
c := NewMockClient(core.NewMockHttpHandler(test.statusCode, test.response, test.headers))
|
||
|
||
resp, err := c.GetFBOShipmentsList(test.params)
|
||
if err != nil {
|
||
t.Error(err)
|
||
}
|
||
|
||
if resp.StatusCode != test.statusCode {
|
||
t.Errorf("got wrong status code: got: %d, expected: %d", resp.StatusCode, test.statusCode)
|
||
}
|
||
}
|
||
}
|