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
239
240
241
242
243
244
245
246
247
|
var SendGrid = require('../../lib/sendgrid');
var Email = require('../../lib/email');
var api_user = 'kylep';
var api_key = 'testing';
var text_params = {
to: 'david.tomberlin@sendgrid.com',
from: 'kyle.partridge@sendgrid.com',
subject: 'Subject',
text: 'This is an email.'
};
var html_params = {
to: 'david.tomberlin@sendgrid.com',
from: 'kyle.partridge@sendgrid.com',
subject: 'Subject',
html: '<b>This is an email.</b>'
};
var smtp_params = {
to: 'kyle.partridge@sendgrid.com',
from: 'kyle.partridge@sendgrid.com',
subject: 'Smtp Email',
text: 'This is an email.'
};
var unicode_params = {
to: 'kyle.partridge@sendgrid.com',
from: 'kyle.partridge@sendgrid.com',
subject: 'Unicode Email!',
text: 'I can haz unicode? ✔'
};
describe('SendGrid', function () {
var sendgrid;
beforeEach(function() {
sendgrid = new SendGrid(api_user, api_key);
});
describe('Web Api', function() {
it('should be able to send text messages', function(done) {
var mail = new Email(text_params);
sendgrid.send(mail, function(success, message) {
if (!success) assert.ok(false, message);
done();
});
});
it('should be able to send html messages', function(done) {
var mail = new Email(html_params);
sendgrid.send(mail, function(success, message) {
if (!success) assert.ok(false, message);
done();
});
});
it('should allow a user to easily send email', function(done) {
sendgrid.send(text_params, function(success, message) {
if (!success) assert.ok(false, message);
done();
});
});
it('should be able to send to multiple recipients', function(done) {
var params = _.clone(text_params);
params.to = ['kyle.partridge@sendgrid.com', 'david.tomberlin@sendgrid.com'];
sendgrid.send(params, function(success, message) {
if (!success) assert.ok(false, message);
done();
});
});
it('should support filters', function(done) {
var mail = new Email(smtp_params);
mail.subject += ' filters (web)';
mail.addFilterSetting('footer', 'enable', 1);
mail.addFilterSetting('footer', 'text/plain', 'This is mah footer!');
sendgrid.send(mail, function(success, message) {
if (!success) assert.ok(false, message);
done();
});
});
// this test will most likely fail until node_modules is updated
it('should support filters with unicode parameters', function(done) {
var mail = new Email(smtp_params);
mail.subject += ' filters w/ unicode ✔ (Web)';
mail.addFilterSetting('footer', 'enable', 1);
mail.addFilterSetting('footer', 'text/plain', 'This is mah footer with a ✔ in it!');
sendgrid.send(mail, function(success, message) {
if (!success) assert.ok(false, message);
done();
});
});
it('should support substitution values', function(done) {
var mail = new Email(smtp_params);
mail.addTo(['david.tomberlin@sendgrid.com']);
mail.addSubVal('-name-',['Panda']);
mail.html = 'You are a <strong>-name-</strong>';
sendgrid.send(mail, function(success, message) {
if (!success) assert.ok(false, message);
done();
});
});
it('should support sections being set in the email', function(done) {
var mail = new Email(smtp_params);
mail.addTo(['kyle.partridge@sendgrid.com', 'david.tomberlin@sendgrid.com']);
mail.addSubVal('-name-', ['Kyle', 'David']);
mail.addSubVal('-meme-', ['-kyleSection-', '-davidSection-']);
mail.addSection({'-kyleSection-': 'I heard you liked batman so I killed your parents'});
mail.addSection({'-davidSection-': 'Metal gear?!!?!!!!eleven'});
mail.html = "Yo -name-!<br /> Here's a meme for you:<br /> -meme-";
sendgrid.send(mail, function(success, message) {
if (!success) assert.ok(false, message);
done();
});
});
it('should report errors to the user', function(done) {
var mail = new Email({});
sendgrid.send(mail, function(success, message) {
if (success) assert.ok(false, 'An error should have been reported');
done();
});
});
});
describe('Smtp Api', function() {
it('should send an email', function(done) {
var mail = new Email(smtp_params);
sendgrid.smtp(mail, function(success, message) {
if (!success) assert.ok(false, message);
done();
});
});
it('should allow unicode in emails', function(done) {
var mail = new Email(unicode_params);
sendgrid.smtp(mail, function(success, message) {
if (!success) assert.ok(false, message);
done();
});
});
it('should support the reply_to field', function(done) {
var mail = new Email(smtp_params);
mail.subject += ' Reply To Test';
mail.replyto = 'noreply@sendgrid.com';
sendgrid.smtp(mail, function(success, message) {
if (!success) assert.ok(false, message);
done();
});
});
it('should support filters', function(done) {
var mail = new Email(smtp_params);
mail.subject += ' filters (Smtp)';
mail.addFilterSetting('footer', 'enable', 1);
mail.addFilterSetting('footer', 'text/plain', 'This is mah footer!');
sendgrid.smtp(mail, function(success, message) {
if (!success) assert.ok(false, message);
done();
});
});
// this test will most likely fail until node_modules is updated
it('should support filters with unicode parameters', function(done) {
var mail = new Email(smtp_params);
mail.subject += ' filters w/ unicode ✔ (Smtp)';
mail.addFilterSetting('footer', 'enable', 1);
mail.addFilterSetting('footer', 'text/plain', 'This is mah footer with a ✔ in it!');
sendgrid.smtp(mail, function(success, message) {
if (!success) assert.ok(false, message);
done();
});
});
it('should support substitution values', function(done) {
var mail = new Email(smtp_params);
mail.addTo(['david.tomberlin@sendgrid.com']);
mail.addSubVal('-name-',['Panda', 'Cow']);
mail.html = 'You are a <strong>-name-</strong>';
sendgrid.smtp(mail, function(success, message) {
if (!success) assert.ok(false, message);
done();
});
});
it('should support sections being set in the email', function(done) {
var mail = new Email(smtp_params);
mail.addTo(['kyle.partridge@sendgrid.com', 'david.tomberlin@sendgrid.com']);
mail.addSubVal('-name-', ['Kyle', 'David']);
mail.addSubVal('-meme-', ['-kyleSection-', '-davidSection-']);
mail.addSection({'-kyleSection-': 'I heard you liked batman so I killed your parents'});
mail.addSection({'-davidSection-': 'Metal gear?!!?!!!!eleven'});
mail.html = "Yo -name-!<br /> Here's a meme for you:<br /> -meme-";
sendgrid.smtp(mail, function(success, message) {
if (!success) assert.ok(false, message);
done();
});
});
it('should report errors to the user', function(done) {
var mail = new Email({});
sendgrid.smtp(mail, function(success, message) {
if (success) assert.ok(false, 'An error should have been reported');
done();
});
});
});
describe('x-smtpapi', function(done) {
function setupEmail() {
var mail = new Email({
from: 'kyle.partridge@sendgrid.com',
subject: 'Multiple Recipients with headers',
text: 'Multiple recipients through x-smtpapi test'
});
mail.addTo('kyle.partridge@sendgrid.com');
mail.addTo('david.tomberlin@sendgrid.com');
return mail;
}
it('should be able to send an email to mutiple recipients through the Web Api', function(done) {
var mail = setupEmail();
mail.subject = '(Web) ' + mail.subject;
sendgrid.send(mail, function(success, message) {
if (!success) assert.ok(false, message);
done();
});
});
it('should be able to send an email to mutiple recipients through the Smtp Api', function(done) {
var mail = setupEmail();
mail.subject = '(SMTP) ' + mail.subject;
sendgrid.smtp(mail, function(success, message) {
if (!success) assert.ok(false, message);
done();
});
});
})
});
|