forked from trycourier/courier-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsend_test.go
165 lines (132 loc) · 3.49 KB
/
send_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
package courier_test
import (
"context"
"encoding/json"
"fmt"
"net/http"
"net/http/httptest"
"testing"
"github.com/trycourier/courier-go"
"github.com/stretchr/testify/assert"
)
func TestSend(t *testing.T) {
type Data struct {
Foo string
}
type Profile struct {
Email string
}
type Override struct {
Bar string
}
type Preferences struct {
Fizz string
}
type RequestBody struct {
Event string
Recipient string
Profile Profile
Data Data
Brand string
Override Override
Preferences Preferences
}
var requestBody RequestBody
expectedResponseID := "123456789"
server := httptest.NewServer(http.HandlerFunc(
func(rw http.ResponseWriter, req *http.Request) {
assert.Equal(t, "/send", req.URL.String())
decoder := json.NewDecoder(req.Body)
err := decoder.Decode(&requestBody)
if err != nil {
t.Error(err)
}
rw.Header().Add("Content-Type", "application/json")
_, writeErr := rw.Write([]byte(fmt.Sprintf("{ \"MessageId\" : \"%s\" }", expectedResponseID)))
if writeErr != nil {
t.Error(writeErr)
}
}))
defer server.Close()
t.Run("sends request", func(t *testing.T) {
client := courier.CourierClient("key", server.URL)
data := &Data{
Foo: "bar",
}
profile := &Profile{
Email: "foo@bar.com",
}
eventID := "event-id"
recipientID := "recpient-id"
brand := "brand-id"
override := &Override{
Bar: "bar",
}
preferences := &Preferences{
Fizz: "fizz",
}
messageID, err := client.Send(context.Background(), eventID, recipientID, profile, data, brand, override, preferences)
assert.Nil(t, err)
assert.Equal(t, expectedResponseID, messageID)
assert.Equal(t, eventID, requestBody.Event)
assert.Equal(t, recipientID, requestBody.Recipient)
assert.Equal(t, data.Foo, requestBody.Data.Foo)
assert.Equal(t, profile.Email, requestBody.Profile.Email)
assert.Equal(t, brand, requestBody.Brand)
assert.Equal(t, override.Bar, requestBody.Override.Bar)
assert.Equal(t, preferences.Fizz, requestBody.Preferences.Fizz)
})
}
func TestSendToList(t *testing.T) {
type Data struct {
Foo string
}
type Override struct {
Bar string
}
type RequestBody struct {
Event string
List string
Pattern string
Data Data
Brand string
Override Override
}
var requestBody RequestBody
expectedResponseID := "123456789"
server := httptest.NewServer(http.HandlerFunc(
func(rw http.ResponseWriter, req *http.Request) {
assert.Equal(t, "/send/list", req.URL.String())
decoder := json.NewDecoder(req.Body)
err := decoder.Decode(&requestBody)
if err != nil {
t.Error(err)
}
rw.Header().Add("Content-Type", "application/json")
_, writeErr := rw.Write([]byte(fmt.Sprintf("{ \"MessageId\" : \"%s\" }", expectedResponseID)))
if writeErr != nil {
t.Error(writeErr)
}
}))
defer server.Close()
t.Run("sends request", func(t *testing.T) {
client := courier.CourierClient("key", server.URL)
data := &Data{
Foo: "bar",
}
eventID := "event-id"
listID := "list-id"
brand := "brand-id"
override := &Override{
Bar: "bar",
}
messageID, err := client.SendToList(context.Background(), eventID, listID, "", data, brand, override)
assert.Nil(t, err)
assert.Equal(t, expectedResponseID, messageID)
assert.Equal(t, eventID, requestBody.Event)
assert.Equal(t, listID, requestBody.List)
assert.Equal(t, data.Foo, requestBody.Data.Foo)
assert.Equal(t, brand, requestBody.Brand)
assert.Equal(t, override.Bar, requestBody.Override.Bar)
})
}