-
Notifications
You must be signed in to change notification settings - Fork 584
/
Copy pathSendgridEmailClientTests.cs
55 lines (51 loc) · 1.75 KB
/
SendgridEmailClientTests.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
namespace SendGrid.Tests
{
using System;
using System.Threading.Tasks;
using SendGrid.Helpers.Mail;
using Xunit;
public class SendgridEmailClientTests
{
[Fact]
public void TestClientOptionsConstruction()
{
var options = new SendGridClientOptions();
Assert.Equal("https://api.sendgrid.com", options.Host);
}
[Fact]
public void TestClientOptionsSetDataResidency()
{
var options = new SendGridClientOptions();
options.SetDataResidency("eu");
Assert.Equal("https://api.eu.sendgrid.com/", options.Host);
}
[Fact]
public void TestClientOptionsSetDataResidencyEU()
{
var options = new SendGridClientOptions();
options.SetDataResidency("eu");
Assert.Equal("https://api.eu.sendgrid.com/", options.Host);
}
[Fact]
public void TestClientOptionsSetViaSendgridClient()
{
var options = new SendGridClientOptions();
options.SetDataResidency("eu");
var sg = new SendGridClient(options);
Assert.Equal("https://api.eu.sendgrid.com/", options.Host);
}
[Fact]
public void TestErrorClientOptionsNUllEmpty()
{
var options = new SendGridClientOptions();
Assert.Throws<ArgumentNullException>(() => options.SetDataResidency(""));
Assert.Throws<ArgumentNullException>(() => options.SetDataResidency(null));
}
[Fact]
public void TestErrorClientOptions()
{
var options = new SendGridClientOptions();
Assert.Throws<InvalidOperationException>(() => options.SetDataResidency("foo"));
}
}
}