-
Notifications
You must be signed in to change notification settings - Fork 14
/
viber_service_test.go
238 lines (216 loc) · 7.41 KB
/
viber_service_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
package sendpulse_sdk_go
import (
"context"
"fmt"
"net/http"
"time"
)
func (suite *SendpulseTestSuite) TestViberService_CreateCampaign() {
suite.mux.HandleFunc("/viber", func(w http.ResponseWriter, r *http.Request) {
suite.Equal(http.MethodPost, r.Method)
fmt.Fprintf(w, `{
"result": true,
"data": {
"address_book_id": null,
"button_link": null,
"button_text": null,
"image_link": null,
"message": "Ciao! Вас вітає офіційний viber-канал бренду Yamamay та нагадує, що Ви - найчарівніша.",
"message_live_time": "1000",
"message_type": 3,
"resend_sms": 0,
"send_date": "2019-03-26 12:40:05",
"sender_id": 4501,
"sms_sender_name": null,
"sms_text": null,
"task_id": 90241,
"task_name": "Viber campaign for the personal list on 2019-03-26 12:40"
}
}`)
})
taskID, err := suite.client.Viber.CreateCampaign(context.Background(), CreateViberCampaignParams{
TaskName: "Viber task",
MessageType: 2,
SenderID: 2222,
MessageLiveTime: 1000,
SendDate: DateTimeType(time.Now()),
MailingListID: 12345,
Recipients: []int{380931111111, 380931111112, 380931111113},
Message: "Ciao! Вас вітає офіційний viber-канал бренду Yamamay та нагадує, що Ви - найчарівніша.",
Additional: nil,
})
suite.NoError(err)
suite.Equal(90241, taskID)
}
func (suite *SendpulseTestSuite) TestViberService_UpdateCampaign() {
suite.mux.HandleFunc("/viber/update", func(w http.ResponseWriter, r *http.Request) {
suite.Equal(http.MethodPost, r.Method)
fmt.Fprintf(w, `{
"result": true,
"data": {
"address_book_id": null,
"button_link": null,
"button_text": null,
"image_link": null,
"message": "Ciao! Ciao Ciao Ciao Ciao Вас вітає офіційний viber-канал бренду Yamamay та нагадує, що Ви - найчарівніша.",
"message_live_time": "1000",
"message_type": "3",
"send_date": "2019-03-26 15:16:00",
"sender_id": "4495",
"task_id": 9380939,
"task_name": "Viber campaign for the personal list on 2019-03-26 15:15"
}
}`)
})
err := suite.client.Viber.UpdateCampaign(context.Background(), UpdateViberCampaignParams{
TaskID: 12345,
TaskName: "Task name",
Message: "New viber message",
MessageType: 2,
ButtonText: "",
ButtonLink: "",
ImageLink: "",
AddressBookID: 12345,
SenderID: 222,
MessageLiveTime: 1000,
SendDate: DateTimeType(time.Now()),
})
suite.NoError(err)
}
func (suite *SendpulseTestSuite) TestViberService_Campaigns() {
suite.mux.HandleFunc("/viber/task", func(w http.ResponseWriter, r *http.Request) {
suite.Equal(http.MethodGet, r.Method)
fmt.Fprintf(w, `[
{
"id": 9380939,
"name": "Viber campaign for the personal list on 2019-03-26 15:02",
"message": "Ciao! Ciao Ciao Ciao Ciao Вас вітає офіційний viber-канал бренду Yamamay та нагадує, що Ви - найчарівніша.",
"button_text": null,
"button_link": null,
"image_link": null,
"address_book": null,
"sender_name": "YAMAMAY",
"sender_id": 4495,
"message_live_time": 1000,
"send_date": "2019-03-29 10:00:00",
"status": "moderation",
"created": "2019-03-26 12:50:02"
},
{
"id": 9380926,
"name": "Viber campaign for the personal list on 2019-03-26 14:48",
"message": "Ciao! Вас вітає офіційний viber-канал бренду Yamamay та нагадує, що Ви - найчарівніша.",
"button_text": null,
"button_link": null,
"image_link": null,
"address_book": 0,
"sender_name": "YAMAMAY",
"sender_id": 4495,
"message_live_time": 1000,
"send_date": "2019-03-29 10:00:00",
"status": null,
"created": "2019-03-26 12:48:23"
}
]`)
})
campaigns, err := suite.client.Viber.GetCampaigns(context.Background(), 10, 0)
suite.NoError(err)
suite.Equal(2, len(campaigns))
}
func (suite *SendpulseTestSuite) TestViberService_GetStatistics() {
campaignID := 1223
suite.mux.HandleFunc(fmt.Sprintf("/viber/task/%d", campaignID), func(w http.ResponseWriter, r *http.Request) {
suite.Equal(http.MethodGet, r.Method)
fmt.Fprintf(w, `{
"id": 38,
"name": "Viber_Campaign_38",
"message": "Это текст для вайбер сообщения",
"button_text": "Кнопка",
"button_link": "https://sendpulse.com",
"image_link": null,
"address_book": null,
"sender_name": "infoservice",
"send_date": "2017-06-22 09:51:35",
"status": "send",
"statistic": {
"sent": 1,
"delivered": 1,
"read": 0,
"redirected": 0,
"undelivered": 0,
"errors": 0
},
"created": "2017-06-22 09:51:22"
}`)
})
statistics, err := suite.client.Viber.GetStatistics(context.Background(), campaignID)
suite.NoError(err)
suite.Equal(38, statistics.ID)
}
func (suite *SendpulseTestSuite) TestViberService_GetSenders() {
suite.mux.HandleFunc("/viber/senders", func(w http.ResponseWriter, r *http.Request) {
suite.Equal(http.MethodGet, r.Method)
fmt.Fprintf(w, `[
{
"id": 2222,
"status": "verified",
"name": "Foxkids",
"service_type": "Магазин iграшок",
"web_site": "www.foxkids.com",
"description": "Магазин Foxkids –«Королівство іграшок» де знайдете багато речей, необхідних для комфорту і розвитку вашого малюка",
"countries": [
"UA"
],
"traffic_type": "Рекламные сообщения",
"admin_comment": null,
"owner": "you"
}
]`)
})
senders, err := suite.client.Viber.GetSenders(context.Background())
suite.NoError(err)
suite.Equal(2222, senders[0].ID)
}
func (suite *SendpulseTestSuite) TestViberService_GetSender() {
senderID := 12345
suite.mux.HandleFunc(fmt.Sprintf("/viber/senders/%d", senderID), func(w http.ResponseWriter, r *http.Request) {
suite.Equal(http.MethodGet, r.Method)
fmt.Fprintf(w, `{
"id": 1,
"status": "verified",
"name": "infoservice",
"service_type": "Тестовый сервис",
"web_site": "https://www.sendpulse.com",
"description": "Мы тестируем финальную отправку сообщений",
"country": "UA",
"traffic_type": "Публичная информация",
"admin_comment": "Ваше имя одобрено, спасибо что выбрали наш сервис для отправки вайбер сообщений. Команда Sendpulse"
}`)
})
sender, err := suite.client.Viber.GetSender(context.Background(), senderID)
suite.NoError(err)
suite.Equal("infoservice", sender.Name)
}
func (suite *SendpulseTestSuite) TestViberService_GetRecipients() {
taskID := 12345
suite.mux.HandleFunc(fmt.Sprintf("/viber/task/%d/recipients", taskID), func(w http.ResponseWriter, r *http.Request) {
suite.Equal(http.MethodGet, r.Method)
fmt.Fprintf(w, `{
"task_id": 44,
"recipients": [
{
"phone": 380934760182,
"address_book_id": 850852,
"status": "send",
"send_date": "2017-06-23 08:54:01",
"price": 0.74,
"currency": "RUR",
"last_update": "2017-06-23 08:53:38"
}
]
}`)
})
recipients, err := suite.client.Viber.GetRecipients(context.Background(), taskID)
suite.NoError(err)
suite.Equal("RUR", recipients[0].Currency)
}