Support for the sending of order and product messages
This commit is contained in:
commit
ee80215c09
@ -605,6 +605,134 @@ func (t *MGClientTest) Test_ImageMessages() {
|
|||||||
t.Assert().Equal(1, data.MessageID)
|
t.Assert().Equal(1, data.MessageID)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (t *MGClientTest) Test_ProductMessages() {
|
||||||
|
c := t.client()
|
||||||
|
|
||||||
|
snd := SendData{
|
||||||
|
Message: Message{
|
||||||
|
ExternalID: "external_id",
|
||||||
|
Type: MsgTypeProduct,
|
||||||
|
Product: &MessageDataProduct{
|
||||||
|
ID: 2,
|
||||||
|
Name: "Product name",
|
||||||
|
Article: "Product article",
|
||||||
|
Url: "https://example.loca/product/1",
|
||||||
|
Img: "https://example.loca/product/1/img",
|
||||||
|
Cost: &MessageDataOrderCost{
|
||||||
|
Value: 100,
|
||||||
|
Currency: "USD",
|
||||||
|
},
|
||||||
|
Unit: "pcs",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
Originator: OriginatorCustomer,
|
||||||
|
Customer: Customer{
|
||||||
|
ExternalID: "6",
|
||||||
|
Nickname: "octopus",
|
||||||
|
Firstname: "Joe",
|
||||||
|
Utm: &Utm{
|
||||||
|
Source: "test-source",
|
||||||
|
Term: "",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
Channel: 1,
|
||||||
|
ExternalChatID: "24798237492374",
|
||||||
|
}
|
||||||
|
|
||||||
|
defer gock.Off()
|
||||||
|
t.gock().
|
||||||
|
Post(t.transportURL("messages")).
|
||||||
|
Filter(func(request *http.Request) bool {
|
||||||
|
data, err := ioutil.ReadAll(request.Body)
|
||||||
|
if err != nil {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
request.Body = ioutil.NopCloser(bytes.NewReader(data))
|
||||||
|
|
||||||
|
var snd SendData
|
||||||
|
t.Require().NoError(json.Unmarshal(data, &snd))
|
||||||
|
return t.Assert().Equal(uint64(2), snd.Message.Product.ID)
|
||||||
|
}).
|
||||||
|
Reply(http.StatusOK).
|
||||||
|
JSON(
|
||||||
|
MessagesResponse{
|
||||||
|
MessageID: 1,
|
||||||
|
Time: time.Now(),
|
||||||
|
},
|
||||||
|
)
|
||||||
|
|
||||||
|
data, status, err := c.Messages(snd)
|
||||||
|
t.Require().NoError(err)
|
||||||
|
t.Assert().Equal(http.StatusOK, status)
|
||||||
|
t.Assert().NotEmpty(data.Time.String())
|
||||||
|
t.Assert().Equal(1, data.MessageID)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (t *MGClientTest) Test_OrderMessages() {
|
||||||
|
c := t.client()
|
||||||
|
|
||||||
|
snd := SendData{
|
||||||
|
Message: Message{
|
||||||
|
ExternalID: "external_id",
|
||||||
|
Type: MsgTypeOrder,
|
||||||
|
Order: &MessageDataOrder{
|
||||||
|
Number: "C1234",
|
||||||
|
ExternalID: 123,
|
||||||
|
Date: time.Now().String(),
|
||||||
|
Cost: &MessageDataOrderCost{
|
||||||
|
Value: 100,
|
||||||
|
Currency: "USD",
|
||||||
|
},
|
||||||
|
Discount: nil,
|
||||||
|
Status: nil,
|
||||||
|
Delivery: nil,
|
||||||
|
Payments: nil,
|
||||||
|
Items: nil,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
Originator: OriginatorCustomer,
|
||||||
|
Customer: Customer{
|
||||||
|
ExternalID: "6",
|
||||||
|
Nickname: "octopus",
|
||||||
|
Firstname: "Joe",
|
||||||
|
Utm: &Utm{
|
||||||
|
Source: "test-source",
|
||||||
|
Term: "",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
Channel: 1,
|
||||||
|
ExternalChatID: "24798237492374",
|
||||||
|
}
|
||||||
|
|
||||||
|
defer gock.Off()
|
||||||
|
t.gock().
|
||||||
|
Post(t.transportURL("messages")).
|
||||||
|
Filter(func(request *http.Request) bool {
|
||||||
|
data, err := ioutil.ReadAll(request.Body)
|
||||||
|
if err != nil {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
request.Body = ioutil.NopCloser(bytes.NewReader(data))
|
||||||
|
|
||||||
|
var snd SendData
|
||||||
|
t.Require().NoError(json.Unmarshal(data, &snd))
|
||||||
|
return t.Assert().Equal(int64(123), snd.Message.Order.ExternalID)
|
||||||
|
}).
|
||||||
|
Reply(http.StatusOK).
|
||||||
|
JSON(
|
||||||
|
MessagesResponse{
|
||||||
|
MessageID: 1,
|
||||||
|
Time: time.Now(),
|
||||||
|
},
|
||||||
|
)
|
||||||
|
|
||||||
|
data, status, err := c.Messages(snd)
|
||||||
|
t.Require().NoError(err)
|
||||||
|
t.Assert().Equal(http.StatusOK, status)
|
||||||
|
t.Assert().NotEmpty(data.Time.String())
|
||||||
|
t.Assert().Equal(1, data.MessageID)
|
||||||
|
}
|
||||||
|
|
||||||
func (t *MGClientTest) Test_UpdateMessages() {
|
func (t *MGClientTest) Test_UpdateMessages() {
|
||||||
c := t.client()
|
c := t.client()
|
||||||
|
|
||||||
|
33
v1/types.go
33
v1/types.go
@ -306,12 +306,14 @@ type Utm struct {
|
|||||||
|
|
||||||
// Message struct.
|
// Message struct.
|
||||||
type Message struct {
|
type Message struct {
|
||||||
ExternalID string `json:"external_id"`
|
ExternalID string `json:"external_id"`
|
||||||
Type string `json:"type,omitempty"`
|
Type string `json:"type,omitempty"`
|
||||||
Text string `json:"text,omitempty"`
|
Text string `json:"text,omitempty"`
|
||||||
Note string `json:"note,omitempty"`
|
Note string `json:"note,omitempty"`
|
||||||
Items []Item `json:"items,omitempty"`
|
Items []Item `json:"items,omitempty"`
|
||||||
PageLink string `json:"page_link,omitempty"`
|
PageLink string `json:"page_link,omitempty"`
|
||||||
|
Product *MessageDataProduct `json:"product,omitempty"`
|
||||||
|
Order *MessageDataOrder `json:"order,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// SendMessage struct.
|
// SendMessage struct.
|
||||||
@ -546,15 +548,16 @@ type MessageDataProduct struct {
|
|||||||
|
|
||||||
// MessageDataOrder order data from webhook.
|
// MessageDataOrder order data from webhook.
|
||||||
type MessageDataOrder struct {
|
type MessageDataOrder struct {
|
||||||
Number string `json:"number"`
|
ExternalID int64 `json:"external_id"`
|
||||||
Url string `json:"url,omitempty"`
|
Number string `json:"number"`
|
||||||
Date string `json:"date,omitempty"`
|
URL string `json:"url,omitempty"`
|
||||||
Cost *MessageDataOrderCost `json:"cost,omitempty"`
|
Date string `json:"date,omitempty"`
|
||||||
Discount *MessageDataOrderCost `json:"discount,omitempty"`
|
Cost *MessageDataOrderCost `json:"cost,omitempty"`
|
||||||
Status *MessageDataOrderStatus `json:"status,omitempty"`
|
Discount *MessageDataOrderCost `json:"discount,omitempty"`
|
||||||
Delivery *MessageDataOrderDelivery `json:"delivery"`
|
Status *MessageDataOrderStatus `json:"status,omitempty"`
|
||||||
Payments []MessageDataOrderPayment `json:"payments"`
|
Delivery *MessageDataOrderDelivery `json:"delivery"`
|
||||||
Items []MessageDataOrderItem `json:"items,omitempty"`
|
Payments []MessageDataOrderPayment `json:"payments"`
|
||||||
|
Items []MessageDataOrderItem `json:"items,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// MessageDataOrderStatus type.
|
// MessageDataOrderStatus type.
|
||||||
|
Loading…
Reference in New Issue
Block a user