-
Notifications
You must be signed in to change notification settings - Fork 729
Expand file tree
/
Copy pathtest_sendgrid.py
More file actions
27 lines (22 loc) · 1.05 KB
/
test_sendgrid.py
File metadata and controls
27 lines (22 loc) · 1.05 KB
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
import unittest
import sendgrid
class UnitTests(unittest.TestCase):
def test_host_with_no_region(self):
sg = sendgrid.SendGridAPIClient(api_key='MY_API_KEY')
self.assertEqual("https://api.sendgrid.com",sg.client.host)
def test_host_with_eu_region(self):
sg = sendgrid.SendGridAPIClient(api_key='MY_API_KEY')
sg.set_sendgrid_data_residency("eu")
self.assertEqual("https://api.eu.sendgrid.com",sg.client.host)
def test_host_with_global_region(self):
sg = sendgrid.SendGridAPIClient(api_key='MY_API_KEY')
sg.set_sendgrid_data_residency("global")
self.assertEqual("https://api.sendgrid.com",sg.client.host)
def test_with_region_is_none(self):
sg = sendgrid.SendGridAPIClient(api_key='MY_API_KEY')
with self.assertRaises(ValueError):
sg.set_sendgrid_data_residency(None)
def test_with_region_is_invalid(self):
sg = sendgrid.SendGridAPIClient(api_key='MY_API_KEY')
with self.assertRaises(ValueError):
sg.set_sendgrid_data_residency("abc")