Skip to content

Commit

Permalink
add pageLink field in message
Browse files Browse the repository at this point in the history
  • Loading branch information
RenCurs committed Dec 14, 2023
1 parent 19bb8f8 commit 5cd891e
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
26 changes: 26 additions & 0 deletions v1/client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,10 @@ package v1
import (
"bytes"
"encoding/base64"
"encoding/json"
"errors"
"fmt"
"io/ioutil"
"net/http"
"strings"
"testing"
Expand Down Expand Up @@ -497,6 +499,7 @@ func (t *MGClientTest) Test_TextMessages() {
ExternalID: "external_id",
Type: MsgTypeText,
Text: "hello!",
PageLink: "https://example.loca/catalog/1",
},
Originator: OriginatorCustomer,
Customer: Customer{
Expand All @@ -515,6 +518,17 @@ func (t *MGClientTest) Test_TextMessages() {
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("https://example.loca/catalog/1", snd.Message.PageLink)
}).
Reply(http.StatusOK).
JSON(
MessagesResponse{
Expand Down Expand Up @@ -598,13 +612,25 @@ func (t *MGClientTest) Test_UpdateMessages() {
EditMessageRequestMessage{
ExternalID: "editing",
Text: "hello hello!",
PageLink: "https://example.local/1",
},
1,
}

defer gock.Off()
t.gock().
Put(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("https://example.local/1", snd.Message.PageLink)
}).
Reply(http.StatusOK).
JSON(
MessagesResponse{
Expand Down
2 changes: 2 additions & 0 deletions v1/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -283,6 +283,7 @@ type Message struct {
Text string `json:"text,omitempty"`
Note string `json:"note,omitempty"`
Items []Item `json:"items,omitempty"`
PageLink string `json:"page_link,omitempty"`
}

// SendMessage struct.
Expand All @@ -302,6 +303,7 @@ type EditMessageRequestMessage struct {
ExternalID string `json:"external_id"`
Text string `json:"text"`
EditedAt int64 `json:"edited_at"`
PageLink string `json:"page_link,omitempty"`
}

type SendHistoryMessageRequest struct {
Expand Down

0 comments on commit 5cd891e

Please sign in to comment.