-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTests.cs
317 lines (285 loc) · 8.04 KB
/
Tests.cs
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
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
public class Tests
{
#region ContentDisposition
[Fact]
public Task ContentDisposition()
{
var content = new ContentDisposition("attachment; filename=\"filename.jpg\"");
return Verify(content);
}
#endregion
[Fact]
public Task ContentDispositionFull()
{
var content = BuildContentDisposition();
return Verify(content);
}
static ContentDisposition BuildContentDisposition() =>
new("inline; filename=\"filename.txt\"")
{
CreationDate = DateTime.Now,
ModificationDate = DateTime.Now,
ReadDate = DateTime.Now,
Size = 2,
Parameters =
{
{
"key", "value"
}
}
};
#region ContentType
[Fact]
public Task ContentType()
{
var content = new ContentType("text/html; charset=utf-8")
{
Name = "name.txt"
};
return Verify(content);
}
#endregion
[Fact]
public Task ContentTypeFull()
{
var content = new ContentType("text/html; charset=utf-8")
{
Name = "name.txt",
Boundary = "the boundary",
Parameters =
{
{
"key", "value"
}
}
};
return Verify(content);
}
#region Attachment
[Fact]
public Task Attachment()
{
var attachment = new Attachment(
new MemoryStream("file content"u8.ToArray()),
new ContentType("text/html; charset=utf-8"))
{
Name = "name.txt"
};
return Verify(attachment);
}
#endregion
[Fact]
public Task AttachmentFull()
{
var attachment = BuildAttachment();
return Verify(attachment);
}
[Fact]
public Task AttachmentNested()
{
var attachment = BuildAttachment();
return Verify(attachment);
}
static Attachment BuildAttachment() =>
new(
new MemoryStream("file content"u8.ToArray()),
new ContentType("text/html; charset=utf-8"))
{
Name = "name.txt",
TransferEncoding = TransferEncoding.EightBit,
};
#region AlternateView
[Fact]
public Task AlternateView()
{
var view = new AlternateView(
new MemoryStream("file content"u8.ToArray()),
new ContentType("text/html; charset=utf-8"))
{
ContentId = "the content id"
};
return Verify(view);
}
#endregion
[Fact]
public Task AlternateViewMin()
{
var view = new AlternateView(new MemoryStream("file content"u8.ToArray()));
return Verify(view);
}
[Fact]
public Task AlternateViewFull()
{
var view = BuildView();
return Verify(view);
}
[Fact]
public Task AlternateViewNested()
{
var view = BuildView();
return Verify(new{view});
}
static AlternateView BuildView() =>
new(
new MemoryStream("file content"u8.ToArray()),
new ContentType("text/html; charset=utf-8"))
{
ContentId = "the content id",
BaseUri = new("http://url"),
TransferEncoding = TransferEncoding.EightBit,
LinkedResources =
{
BuildResource()
}
};
[Fact]
public Task ResourceMin()
{
var view = new LinkedResource(new MemoryStream("file content"u8.ToArray()));
return Verify(view);
}
[Fact]
public Task ResourceFull()
{
var resource = BuildResource();
return Verify(resource);
}
[Fact]
public Task ResourceNested()
{
var resource = BuildResource();
return Verify(new{resource});
}
static LinkedResource BuildResource() =>
new(
new MemoryStream("resource content"u8.ToArray()),
new ContentType("text/html; charset=utf-8"))
{
ContentId = "the content id",
ContentLink = new("http://uri"),
TransferEncoding = TransferEncoding.EightBit,
};
#region MailMessage
[Fact]
public Task MailMessage()
{
var mail = new MailMessage(
from: "from@mail.com",
to: "to@mail.com",
subject: "The subject",
body: "The body");
return Verify(mail);
}
#endregion
[Fact]
public Task MailMessageFull()
{
var mail = BuildMail();
return Verify(mail);
}
[Fact]
public Task MailMessageMultipleAttachments()
{
var mail = new MailMessage(
from: new("from@mail.com"),
to: new MailAddress("sender@mail.com"))
{
Subject = "The subject",
Attachments =
{
new(
new MemoryStream("attachment1 content"u8.ToArray()),
new ContentType("text/html; charset=utf-8")),
new(
new MemoryStream("attachment2 content"u8.ToArray()),
new ContentType("text/html; charset=utf-8")),
},
AlternateViews =
{
new(
new MemoryStream("view1 content"u8.ToArray()),
new ContentType("text/html; charset=utf-8"))
{
LinkedResources =
{
new(
new MemoryStream("resource1 content"u8.ToArray()),
new ContentType("text/html; charset=utf-8")),
new(
new MemoryStream("resource2 content"u8.ToArray()),
new ContentType("text/html; charset=utf-8")),
}
},
new(
new MemoryStream("view2 content"u8.ToArray()),
new ContentType("text/html; charset=utf-8"))
{
LinkedResources =
{
new(
new MemoryStream("resource1 content"u8.ToArray()),
new ContentType("text/html; charset=utf-8")),
new(
new MemoryStream("resource2 content"u8.ToArray()),
new ContentType("text/html; charset=utf-8")),
}
},
}
};
return Verify(mail);
}
[Fact]
public Task MailMessageFullNested()
{
var mail = BuildMail();
return Verify(new
{
mail
});
}
static MailMessage BuildMail() =>
new(
from: new("from@mail.com", "the from"),
to: new MailAddress("sender@mail.com", "the to"))
{
Subject = "The subject",
Body = "The body",
Headers =
{
new()
{
{
"key", "value"
}
}
},
Priority = MailPriority.High,
Sender = new("sender@mail.com", "the sender"),
Bcc =
{
new MailAddress("bcc@mail.com", "the bcc")
},
CC =
{
new MailAddress("cc@mail.com", "the ccc")
},
BodyEncoding = Encoding.BigEndianUnicode,
SubjectEncoding = Encoding.UTF32,
HeadersEncoding = Encoding.ASCII,
BodyTransferEncoding = TransferEncoding.EightBit,
IsBodyHtml = true,
ReplyToList =
{
new MailAddress("reply@mail.com", "the reply")
},
DeliveryNotificationOptions = DeliveryNotificationOptions.OnFailure | DeliveryNotificationOptions.Delay,
Attachments =
{
BuildAttachment(),
},
AlternateViews =
{
BuildView(),
}
};
}