-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmessages_test.dart
157 lines (141 loc) · 5.35 KB
/
messages_test.dart
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
import 'dart:convert';
import 'package:http/http.dart' as http;
import 'package:mocktail/mocktail.dart';
import 'package:socketlabs/socketlabs.dart';
import 'package:test/test.dart';
class MockClient extends Mock implements http.Client {}
class MockResponse extends Mock implements http.Response {}
void main() {
setUpAll(() {
registerFallbackValue(Uri());
});
group('SocketLabs', () {
group('.send()', () {
late http.Client httpClient;
late SocketLabsClient socketLabs;
setUp(() {
httpClient = MockClient();
socketLabs = SocketLabsClient(
serverId: 'server-id',
apiKey: 'api-key',
httpClient: httpClient,
);
});
test('creates a valid http request', () async {
final response = MockResponse();
when(() => response.body).thenReturn('{"ErrorCode":"Success"}');
when(() => httpClient.post(any(),
headers: any(named: 'headers'), body: any(named: 'body')))
.thenAnswer((_) => Future.value(response));
final message =
BasicMessage(from: Email('from@test'), subject: 'Subject');
message
..to.addAll([
Email('to1@email'),
Email('to2@email', 'Mr. Two'),
])
..textBody = 'TEXT';
await socketLabs.send([message]);
verify(() => httpClient.post(
Uri.parse('https://inject.socketlabs.com/api/v1/email'),
headers: {'Content-Type': 'application/json'},
body:
'{"ServerId":"server-id","ApiKey":"api-key","Messages":[{"To":[{"EmailAddress":"to1@email"},{"EmailAddress":"to2@email","FriendlyName":"Mr. Two"}],"Subject":"Subject","From":{"EmailAddress":"from@test"},"TextBody":"TEXT"}]}'))
.called(1);
});
test('properly handles error codes', () async {
final response = MockResponse();
final json =
'{"ErrorCode":"Warning","MessageResults":[{"Index":0,"ErrorCode":"InvalidFromAddress","AddressResults":null}],"TransactionReceipt":null}';
when(() => response.body).thenReturn(json);
when(() => httpClient.post(any(),
headers: any(named: 'headers'), body: any(named: 'body')))
.thenAnswer((_) => Future.value(response));
final message =
BasicMessage(from: Email('from@test'), subject: 'Subject');
expect(
socketLabs.send([message]),
throwsA(allOf([
isA<SocketLabsException>()
.having((e) => e.code, 'code', 'Warning'),
isA<SocketLabsException>()
.having((e) => e.originalResponse, 'originalResponse', json),
])));
});
test('properly handles invalid json response', () async {
final response = MockResponse();
when(() => response.body).thenReturn(('Invalid Json'));
when(() => httpClient.post(any(),
headers: any(named: 'headers'), body: any(named: 'body')))
.thenAnswer((_) => Future.value(response));
final message =
BasicMessage(from: Email('from@test'), subject: 'Subject');
expect(
socketLabs.send([message]),
throwsA(allOf([
isA<SocketLabsException>()
.having((e) => e.code, 'code', 'InvalidResponse'),
isA<SocketLabsException>().having((e) => e.originalResponse,
'originalResponse', 'Invalid Json'),
])));
});
});
group('BasicMessage', () {
test('properly converts to json', () {
final message =
BasicMessage(from: Email('from@test'), subject: 'Subject');
message
..to.addAll([
Email('to1@email'),
Email('to2@email', 'Mr. Two'),
])
..replyTo = Email('reply@to')
..textBody = 'TEXT'
..htmlBody = '<html>TEXT</html>'
..ampBody = '<html>AMP</html>'
..apiTemplate = '3'
..messageId = 'MSG_ID'
..mailingId = 'MAILING_ID'
..charset = 'utf-8'
..mergeData = (MergeData()
..global.add(KeyPair('gkey', 'kvalue'))
..perMessage.addAll([
[KeyPair('pmkey', 'pmvalue1'), KeyPair('pmkey2', 'pmvalue1')],
[KeyPair('pmkey', 'pmvalue2')],
]));
expect(message.toJson(), {
'To': [
{'EmailAddress': 'to1@email'},
{'EmailAddress': 'to2@email', 'FriendlyName': 'Mr. Two'}
],
'Subject': 'Subject',
'From': {'EmailAddress': 'from@test'},
'ReplyTo': {'EmailAddress': 'reply@to'},
'TextBody': 'TEXT',
'HtmlBody': '<html>TEXT</html>',
'AmpBody': '<html>AMP</html>',
'ApiTemplate': '3',
'MessageId': 'MSG_ID',
'MailingId': 'MAILING_ID',
'Charset': 'utf-8',
'MergeData': {
'PerMessage': [
[
{'Field': 'pmkey', 'Value': 'pmvalue1'},
{'Field': 'pmkey2', 'Value': 'pmvalue1'}
],
[
{'Field': 'pmkey', 'Value': 'pmvalue2'}
]
],
'Global': [
{'Field': 'gkey', 'Value': 'kvalue'}
]
}
});
// Making sure it encodes properly
jsonEncode(message.toJson());
});
});
});
}