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
|
using System;
using System.Net;
using System.Net.Http;
using System.Threading.Tasks;
using NUnit.Framework;
using Newtonsoft.Json.Linq;
using SendGrid;
using Newtonsoft.Json;
namespace UnitTest
{
[TestFixture]
public class APIKeys
{
static string _baseUri = "https://api.sendgrid.com/";
static string _apiKey = Environment.GetEnvironmentVariable("SENDGRID_APIKEY");
public Client client = new Client(_apiKey, _baseUri);
private static string _api_key_id = "";
[Test]
public void ApiKeysIntegrationTest()
{
TestGet();
TestPost();
TestPatch();
TestDelete();
}
private void TestGet()
{
HttpResponseMessage response = client.ApiKeys.Get().Result;
Assert.AreEqual(HttpStatusCode.OK, response.StatusCode);
string rawString = response.Content.ReadAsStringAsync().Result;
dynamic jsonObject = JObject.Parse(rawString);
string jsonString = jsonObject.result.ToString();
Assert.IsNotNull(jsonString);
}
private void TestPost()
{
HttpResponseMessage response = client.ApiKeys.Post("CSharpTestKey").Result;
Assert.AreEqual(HttpStatusCode.Created, response.StatusCode);
string rawString = response.Content.ReadAsStringAsync().Result;
dynamic jsonObject = JObject.Parse(rawString);
string api_key = jsonObject.api_key.ToString();
_api_key_id = jsonObject.api_key_id.ToString();
string name = jsonObject.name.ToString();
Assert.IsNotNull(api_key);
Assert.IsNotNull(_api_key_id);
Assert.IsNotNull(name);
}
private void TestPatch()
{
HttpResponseMessage response = client.ApiKeys.Patch(_api_key_id, "CSharpTestKeyPatched").Result;
Assert.AreEqual(HttpStatusCode.OK, response.StatusCode);
string rawString = response.Content.ReadAsStringAsync().Result;
dynamic jsonObject = JObject.Parse(rawString);
_api_key_id = jsonObject.api_key_id.ToString();
string name = jsonObject.name.ToString();
Assert.IsNotNull(_api_key_id);
Assert.IsNotNull(name);
}
private void TestDelete()
{
HttpResponseMessage response = client.ApiKeys.Delete(_api_key_id).Result;
Assert.AreEqual(HttpStatusCode.NoContent, response.StatusCode);
}
[Test]
public void TestGetOnce()
{
var responseGet = client.ApiKeys.Get().Result;
}
[Test]
public void TestGetTenTimes()
{
HttpResponseMessage responseGet;
for (int i = 0; i < 10; i++)
{
responseGet = client.ApiKeys.Get().Result;
}
}
[Test]
public void TestGetTenTimesAsync()
{
Task[] tasks = new Task[10];
for (int i = 0; i < 10; i++)
{
tasks[i] = client.ApiKeys.Get();
}
Task.WaitAll(tasks);
}
}
[TestFixture]
public class UnsubscribeGroups
{
static string _baseUri = "https://api.sendgrid.com/";
static string _apiKey = Environment.GetEnvironmentVariable("SENDGRID_APIKEY");
public Client client = new Client(_apiKey, _baseUri);
private static string _unsubscribe_groups_key_id = "";
[Test]
public void UnsubscribeGroupsIntegrationTest()
{
int unsubscribeGroupId = 69;
TestGet();
TestGetUnique(unsubscribeGroupId);
TestPost();
TestDelete();
}
private void TestGet()
{
HttpResponseMessage response = client.UnsubscribeGroups.Get().Result;
Assert.AreEqual(HttpStatusCode.OK, response.StatusCode);
string rawString = response.Content.ReadAsStringAsync().Result;
dynamic jsonObject = JsonConvert.DeserializeObject(rawString);
Assert.IsNotNull(jsonObject);
}
private void TestGetUnique(int unsubscribeGroupId)
{
HttpResponseMessage response = client.UnsubscribeGroups.Get(unsubscribeGroupId).Result;
Assert.AreEqual(HttpStatusCode.OK, response.StatusCode);
string rawString = response.Content.ReadAsStringAsync().Result;
dynamic jsonObject = JsonConvert.DeserializeObject(rawString);
Assert.IsNotNull(jsonObject);
}
private void TestPost()
{
HttpResponseMessage response = client.UnsubscribeGroups.Post("C Sharp Unsubscribes", "Testing the C Sharp Library", false).Result;
Assert.AreEqual(HttpStatusCode.Created, response.StatusCode);
string rawString = response.Content.ReadAsStringAsync().Result;
dynamic jsonObject = JObject.Parse(rawString);
string name = jsonObject.name.ToString();
string description = jsonObject.description.ToString();
_unsubscribe_groups_key_id = jsonObject.id.ToString();
bool is_default = jsonObject.is_default;
Assert.IsNotNull(name);
Assert.IsNotNull(description);
Assert.IsNotNull(_unsubscribe_groups_key_id);
Assert.IsNotNull(is_default);
}
private void TestDelete()
{
HttpResponseMessage response = client.UnsubscribeGroups.Delete(_unsubscribe_groups_key_id).Result;
Assert.AreEqual(HttpStatusCode.NoContent, response.StatusCode);
}
}
[TestFixture]
public class Suppressions
{
static string _baseUri = "https://api.sendgrid.com/";
static string _apiKey = Environment.GetEnvironmentVariable("SENDGRID_APIKEY");
public Client client = new Client(_apiKey, _baseUri);
[Test]
public void SuppressionsIntegrationTest()
{
int unsubscribeGroupId = 69;
TestGet(unsubscribeGroupId);
string[] emails = { "example@example.com", "example2@example.com" };
TestPost(unsubscribeGroupId, emails);
TestDelete(unsubscribeGroupId, "example@example.com");
TestDelete(unsubscribeGroupId, "example2@example.com");
}
private void TestGet(int unsubscribeGroupId)
{
HttpResponseMessage response = client.Suppressions.Get(unsubscribeGroupId).Result;
Assert.AreEqual(HttpStatusCode.OK, response.StatusCode);
string rawString = response.Content.ReadAsStringAsync().Result;
dynamic jsonObject = JsonConvert.DeserializeObject(rawString);
Assert.IsNotNull(jsonObject);
}
private void TestPost(int unsubscribeGroupId, string[] emails)
{
HttpResponseMessage response = client.Suppressions.Post(unsubscribeGroupId, emails).Result;
Assert.AreEqual(HttpStatusCode.Created, response.StatusCode);
string rawString = response.Content.ReadAsStringAsync().Result;
dynamic jsonObject = JObject.Parse(rawString);
string recipient_emails = jsonObject.recipient_emails.ToString();
Assert.IsNotNull(recipient_emails);
}
private void TestDelete(int unsubscribeGroupId, string email)
{
HttpResponseMessage response = client.Suppressions.Delete(unsubscribeGroupId, email).Result;
Assert.AreEqual(HttpStatusCode.NoContent, response.StatusCode);
}
}
[TestFixture]
public class GlobalSuppressions
{
static string _baseUri = "https://api.sendgrid.com/";
static string _apiKey = Environment.GetEnvironmentVariable("SENDGRID_APIKEY");
public Client client = new Client(_apiKey, _baseUri);
[Test]
public void GlobalSuppressionsIntegrationTest()
{
string email = "example3@example.com";
TestGet(email);
string[] emails = { "example1@example.com", "example2@example.com" };
TestPost(emails);
TestDelete("example1@example.com");
TestDelete("example2@example.com");
}
private void TestGet(string email)
{
HttpResponseMessage response = client.GlobalSuppressions.Get(email).Result;
Assert.AreEqual(HttpStatusCode.OK, response.StatusCode);
string rawString = response.Content.ReadAsStringAsync().Result;
dynamic jsonObject = JsonConvert.DeserializeObject(rawString);
Assert.IsNotNull(jsonObject);
}
private void TestPost(string[] emails)
{
HttpResponseMessage response = client.GlobalSuppressions.Post(emails).Result;
Assert.AreEqual(HttpStatusCode.Created, response.StatusCode);
string rawString = response.Content.ReadAsStringAsync().Result;
dynamic jsonObject = JObject.Parse(rawString);
string recipient_emails = jsonObject.recipient_emails.ToString();
Assert.IsNotNull(recipient_emails);
}
private void TestDelete(string email)
{
HttpResponseMessage response = client.GlobalSuppressions.Delete(email).Result;
Assert.AreEqual(HttpStatusCode.NoContent, response.StatusCode);
}
}
[TestFixture]
public class GlobalStats
{
static string _baseUri = "https://api.sendgrid.com/";
static string _apiKey = Environment.GetEnvironmentVariable("SENDGRID_APIKEY");
public Client client = new Client(_apiKey, _baseUri);
[Test]
public void GlobalStatsIntegrationTest()
{
string startDate = "2015-11-01";
string endDate = "2015-12-01";
string aggregatedBy = "day";
TestGet(startDate);
TestGet(startDate, endDate);
TestGet(startDate, endDate, aggregatedBy);
aggregatedBy = "week";
TestGet(startDate, endDate, aggregatedBy);
aggregatedBy = "month";
TestGet(startDate, endDate, aggregatedBy);
}
private void TestGet(string startDate, string endDate=null, string aggregatedBy=null)
{
HttpResponseMessage response = client.GlobalStats.Get(startDate, endDate, aggregatedBy).Result;
Assert.AreEqual(HttpStatusCode.OK, response.StatusCode);
string rawString = response.Content.ReadAsStringAsync().Result;
dynamic jsonObject = JsonConvert.DeserializeObject(rawString);
Assert.IsNotNull(jsonObject);
}
}
}
|