-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathContentstack001_LoginTest.cs
More file actions
496 lines (435 loc) · 20.6 KB
/
Contentstack001_LoginTest.cs
File metadata and controls
496 lines (435 loc) · 20.6 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
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
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
using System;
using System.Net;
using System.Net.Http;
using Contentstack.Management.Core.Exceptions;
using Contentstack.Management.Core.Models;
using Contentstack.Management.Core.Tests.Helpers;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Contentstack.Management.Core.Queryable;
using Newtonsoft.Json.Linq;
namespace Contentstack.Management.Core.Tests.IntegrationTest
{
[TestClass]
public class Contentstack001_LoginTest
{
private static ContentstackClient CreateClientWithLogging()
{
var handler = new LoggingHttpHandler();
var httpClient = new HttpClient(handler);
return new ContentstackClient(httpClient, new ContentstackClientOptions());
}
[TestMethod]
[DoNotParallelize]
public void Test001_Should_Return_Failuer_On_Wrong_Login_Credentials()
{
TestOutputLogger.LogContext("TestScenario", "WrongCredentials");
ContentstackClient client = CreateClientWithLogging();
NetworkCredential credentials = new NetworkCredential("mock_user", "mock_pasword");
try
{
ContentstackResponse contentstackResponse = client.Login(credentials);
} catch (Exception e)
{
ContentstackErrorException errorException = e as ContentstackErrorException;
AssertLogger.AreEqual(HttpStatusCode.UnprocessableEntity, errorException.StatusCode, "StatusCode");
AssertLogger.AreEqual("Looks like your email or password is invalid. Please try again or reset your password.", errorException.Message, "Message");
AssertLogger.AreEqual("Looks like your email or password is invalid. Please try again or reset your password.", errorException.ErrorMessage, "ErrorMessage");
AssertLogger.AreEqual(104, errorException.ErrorCode, "ErrorCode");
}
}
[TestMethod]
[DoNotParallelize]
public async System.Threading.Tasks.Task Test002_Should_Return_Failuer_On_Wrong_Async_Login_Credentials()
{
TestOutputLogger.LogContext("TestScenario", "WrongCredentialsAsync");
ContentstackClient client = CreateClientWithLogging();
NetworkCredential credentials = new NetworkCredential("mock_user", "mock_pasword");
try
{
await client.LoginAsync(credentials);
AssertLogger.Fail("Expected exception for wrong credentials");
}
catch (ContentstackErrorException errorException)
{
AssertLogger.AreEqual(HttpStatusCode.UnprocessableEntity, errorException.StatusCode, "StatusCode");
AssertLogger.AreEqual("Looks like your email or password is invalid. Please try again or reset your password.", errorException.Message, "Message");
AssertLogger.AreEqual("Looks like your email or password is invalid. Please try again or reset your password.", errorException.ErrorMessage, "ErrorMessage");
AssertLogger.AreEqual(104, errorException.ErrorCode, "ErrorCode");
}
}
[TestMethod]
[DoNotParallelize]
public async System.Threading.Tasks.Task Test003_Should_Return_Success_On_Async_Login()
{
TestOutputLogger.LogContext("TestScenario", "AsyncLoginSuccess");
ContentstackClient client = CreateClientWithLogging();
try
{
ContentstackResponse contentstackResponse = await client.LoginAsync(Contentstack.Credential);
string loginResponse = contentstackResponse.OpenResponse();
AssertLogger.IsNotNull(client.contentstackOptions.Authtoken, "Authtoken");
AssertLogger.IsNotNull(loginResponse, "loginResponse");
await client.LogoutAsync();
}
catch (Exception e)
{
AssertLogger.Fail(e.Message);
}
}
[TestMethod]
[DoNotParallelize]
public void Test004_Should_Return_Success_On_Login()
{
TestOutputLogger.LogContext("TestScenario", "SyncLoginSuccess");
try
{
ContentstackClient client = CreateClientWithLogging();
ContentstackResponse contentstackResponse = client.Login(Contentstack.Credential);
string loginResponse = contentstackResponse.OpenResponse();
AssertLogger.IsNotNull(client.contentstackOptions.Authtoken, "Authtoken");
AssertLogger.IsNotNull(loginResponse, "loginResponse");
}
catch (Exception e)
{
AssertLogger.Fail(e.Message);
}
}
[TestMethod]
[DoNotParallelize]
public void Test005_Should_Return_Loggedin_User()
{
TestOutputLogger.LogContext("TestScenario", "GetUser");
try
{
ContentstackClient client = CreateClientWithLogging();
client.Login(Contentstack.Credential);
ContentstackResponse response = client.GetUser();
var user = response.OpenJObjectResponse();
AssertLogger.IsNotNull(user, "user");
}
catch (Exception e)
{
AssertLogger.Fail(e.Message);
}
}
[TestMethod]
[DoNotParallelize]
public async System.Threading.Tasks.Task Test006_Should_Return_Loggedin_User_Async()
{
TestOutputLogger.LogContext("TestScenario", "GetUserAsync");
try
{
ContentstackClient client = CreateClientWithLogging();
await client.LoginAsync(Contentstack.Credential);
ContentstackResponse response = await client.GetUserAsync();
var user = response.OpenJObjectResponse();
AssertLogger.IsNotNull(user, "user");
AssertLogger.IsNotNull(user["user"]["organizations"], "organizations");
AssertLogger.IsInstanceOfType(user["user"]["organizations"], typeof(JArray), "organizations");
AssertLogger.IsNull(user["user"]["organizations"][0]["org_roles"], "org_roles");
}
catch (Exception e)
{
AssertLogger.Fail(e.Message);
}
}
[TestMethod]
[DoNotParallelize]
public void Test007_Should_Return_Loggedin_User_With_Organizations_detail()
{
TestOutputLogger.LogContext("TestScenario", "GetUserWithOrgRoles");
try
{
ParameterCollection collection = new ParameterCollection();
collection.Add("include_orgs_roles", true);
ContentstackClient client = CreateClientWithLogging();
client.Login(Contentstack.Credential);
ContentstackResponse response = client.GetUser(collection);
var user = response.OpenJObjectResponse();
AssertLogger.IsNotNull(user, "user");
AssertLogger.IsNotNull(user["user"]["organizations"], "organizations");
AssertLogger.IsInstanceOfType(user["user"]["organizations"], typeof(JArray), "organizations");
AssertLogger.IsNotNull(user["user"]["organizations"][0]["org_roles"], "org_roles");
}
catch (Exception e)
{
AssertLogger.Fail(e.Message);
}
}
[TestMethod]
[DoNotParallelize]
public void Test008_Should_Fail_Login_With_Invalid_MfaSecret()
{
TestOutputLogger.LogContext("TestScenario", "InvalidMfaSecret");
ContentstackClient client = CreateClientWithLogging();
NetworkCredential credentials = new NetworkCredential("test_user", "test_password");
string invalidMfaSecret = "INVALID_BASE32_SECRET!@#";
try
{
ContentstackResponse contentstackResponse = client.Login(credentials, null, invalidMfaSecret);
AssertLogger.Fail("Expected exception for invalid MFA secret");
}
catch (ArgumentException)
{
AssertLogger.IsTrue(true, "ArgumentException thrown as expected");
}
catch (Exception e)
{
AssertLogger.Fail($"Unexpected exception type: {e.GetType().Name} - {e.Message}");
}
}
[TestMethod]
[DoNotParallelize]
public void Test009_Should_Generate_TOTP_Token_With_Valid_MfaSecret()
{
TestOutputLogger.LogContext("TestScenario", "ValidMfaSecret");
ContentstackClient client = CreateClientWithLogging();
NetworkCredential credentials = new NetworkCredential("test_user", "test_password");
string validMfaSecret = "JBSWY3DPEHPK3PXP";
try
{
ContentstackResponse contentstackResponse = client.Login(credentials, null, validMfaSecret);
}
catch (ContentstackErrorException errorException)
{
AssertLogger.AreEqual(HttpStatusCode.UnprocessableEntity, errorException.StatusCode, "StatusCode");
AssertLogger.IsTrue(errorException.Message.Contains("email or password") ||
errorException.Message.Contains("credentials") ||
errorException.Message.Contains("authentication"), "MFA error message check");
}
catch (ArgumentException)
{
AssertLogger.Fail("Should not throw ArgumentException for valid MFA secret");
}
catch (Exception e)
{
AssertLogger.Fail($"Unexpected exception type: {e.GetType().Name} - {e.Message}");
}
}
[TestMethod]
[DoNotParallelize]
public async System.Threading.Tasks.Task Test010_Should_Generate_TOTP_Token_With_Valid_MfaSecret_Async()
{
TestOutputLogger.LogContext("TestScenario", "ValidMfaSecretAsync");
ContentstackClient client = CreateClientWithLogging();
NetworkCredential credentials = new NetworkCredential("test_user", "test_password");
string validMfaSecret = "JBSWY3DPEHPK3PXP";
try
{
ContentstackResponse contentstackResponse = await client.LoginAsync(credentials, null, validMfaSecret);
}
catch (ContentstackErrorException errorException)
{
AssertLogger.AreEqual(HttpStatusCode.UnprocessableEntity, errorException.StatusCode, "StatusCode");
AssertLogger.IsTrue(errorException.Message.Contains("email or password") ||
errorException.Message.Contains("credentials") ||
errorException.Message.Contains("authentication"), "MFA error message check");
}
catch (ArgumentException)
{
AssertLogger.Fail("Should not throw ArgumentException for valid MFA secret");
}
catch (Exception e)
{
AssertLogger.Fail($"Unexpected exception type: {e.GetType().Name} - {e.Message}");
}
}
[TestMethod]
[DoNotParallelize]
public void Test011_Should_Prefer_Explicit_Token_Over_MfaSecret()
{
TestOutputLogger.LogContext("TestScenario", "ExplicitTokenOverMfa");
ContentstackClient client = CreateClientWithLogging();
NetworkCredential credentials = new NetworkCredential("test_user", "test_password");
string validMfaSecret = "JBSWY3DPEHPK3PXP";
string explicitToken = "123456";
try
{
ContentstackResponse contentstackResponse = client.Login(credentials, explicitToken, validMfaSecret);
}
catch (ContentstackErrorException errorException)
{
AssertLogger.AreEqual(HttpStatusCode.UnprocessableEntity, errorException.StatusCode, "StatusCode");
}
catch (ArgumentException)
{
AssertLogger.Fail("Should not throw ArgumentException when explicit token is provided");
}
catch (Exception e)
{
AssertLogger.Fail($"Unexpected exception type: {e.GetType().Name} - {e.Message}");
}
}
[TestMethod]
[DoNotParallelize]
public void Test012_Should_Throw_InvalidOperation_When_Already_LoggedIn_Sync()
{
TestOutputLogger.LogContext("TestScenario", "AlreadyLoggedInSync");
ContentstackClient client = CreateClientWithLogging();
try
{
client.Login(Contentstack.Credential);
AssertLogger.IsNotNull(client.contentstackOptions.Authtoken, "Authtoken");
AssertLogger.ThrowsException<InvalidOperationException>(() =>
client.Login(Contentstack.Credential), "AlreadyLoggedIn");
client.Logout();
}
catch (Exception e)
{
AssertLogger.Fail($"Unexpected exception: {e.GetType().Name} - {e.Message}");
}
}
[TestMethod]
[DoNotParallelize]
public async System.Threading.Tasks.Task Test013_Should_Throw_InvalidOperation_When_Already_LoggedIn_Async()
{
TestOutputLogger.LogContext("TestScenario", "AlreadyLoggedInAsync");
ContentstackClient client = CreateClientWithLogging();
try
{
await client.LoginAsync(Contentstack.Credential);
AssertLogger.IsNotNull(client.contentstackOptions.Authtoken, "Authtoken");
await System.Threading.Tasks.Task.Run(() =>
AssertLogger.ThrowsException<InvalidOperationException>(() =>
client.LoginAsync(Contentstack.Credential).GetAwaiter().GetResult(), "AlreadyLoggedInAsync"));
await client.LogoutAsync();
}
catch (Exception e)
{
AssertLogger.Fail($"Unexpected exception: {e.GetType().Name} - {e.Message}");
}
}
[TestMethod]
[DoNotParallelize]
public void Test014_Should_Throw_ArgumentNullException_For_Null_Credentials_Sync()
{
TestOutputLogger.LogContext("TestScenario", "NullCredentialsSync");
ContentstackClient client = CreateClientWithLogging();
AssertLogger.ThrowsException<ArgumentNullException>(() =>
client.Login(null), "NullCredentials");
}
[TestMethod]
[DoNotParallelize]
public void Test015_Should_Throw_ArgumentNullException_For_Null_Credentials_Async()
{
TestOutputLogger.LogContext("TestScenario", "NullCredentialsAsync");
ContentstackClient client = CreateClientWithLogging();
AssertLogger.ThrowsException<ArgumentNullException>(() =>
client.LoginAsync(null).GetAwaiter().GetResult(), "NullCredentialsAsync");
}
[TestMethod]
[DoNotParallelize]
public async System.Threading.Tasks.Task Test016_Should_Throw_ArgumentException_For_Invalid_MfaSecret_Async()
{
TestOutputLogger.LogContext("TestScenario", "InvalidMfaSecretAsync");
ContentstackClient client = CreateClientWithLogging();
NetworkCredential credentials = new NetworkCredential("test_user", "test_password");
string invalidMfaSecret = "INVALID_BASE32_SECRET!@#";
try
{
await client.LoginAsync(credentials, null, invalidMfaSecret);
AssertLogger.Fail("Expected ArgumentException for invalid MFA secret");
}
catch (ArgumentException)
{
AssertLogger.IsTrue(true, "ArgumentException thrown as expected for async");
}
catch (Exception e)
{
AssertLogger.Fail($"Unexpected exception type: {e.GetType().Name} - {e.Message}");
}
}
[TestMethod]
[DoNotParallelize]
public void Test017_Should_Handle_Valid_Credentials_With_TfaToken_Sync()
{
TestOutputLogger.LogContext("TestScenario", "WrongTfaTokenSync");
ContentstackClient client = CreateClientWithLogging();
try
{
client.Login(Contentstack.Credential, "000000");
// Account does not have 2FA enabled — tfa_token is ignored by the API and login succeeds.
// This is a valid outcome; assert token is set and clean up.
AssertLogger.IsNotNull(client.contentstackOptions.Authtoken, "Authtoken");
client.Logout();
}
catch (ContentstackErrorException errorException)
{
// Account has 2FA enabled — wrong token is correctly rejected with 422.
AssertLogger.AreEqual(HttpStatusCode.UnprocessableEntity, errorException.StatusCode, "StatusCode");
AssertLogger.IsTrue(errorException.ErrorCode > 0, "TfaErrorCode");
}
catch (Exception e)
{
AssertLogger.Fail($"Unexpected exception type: {e.GetType().Name} - {e.Message}");
}
}
[TestMethod]
[DoNotParallelize]
public async System.Threading.Tasks.Task Test018_Should_Handle_Valid_Credentials_With_TfaToken_Async()
{
TestOutputLogger.LogContext("TestScenario", "WrongTfaTokenAsync");
ContentstackClient client = CreateClientWithLogging();
try
{
await client.LoginAsync(Contentstack.Credential, "000000");
// Account does not have 2FA enabled — tfa_token is ignored by the API and login succeeds.
// This is a valid outcome; assert token is set and clean up.
AssertLogger.IsNotNull(client.contentstackOptions.Authtoken, "Authtoken");
await client.LogoutAsync();
}
catch (ContentstackErrorException errorException)
{
// Account has 2FA enabled — wrong token is correctly rejected with 422.
AssertLogger.AreEqual(HttpStatusCode.UnprocessableEntity, errorException.StatusCode, "StatusCode");
AssertLogger.IsTrue(errorException.ErrorCode > 0, "TfaErrorCodeAsync");
}
catch (Exception e)
{
AssertLogger.Fail($"Unexpected exception type: {e.GetType().Name} - {e.Message}");
}
}
[TestMethod]
[DoNotParallelize]
public void Test019_Should_Not_Include_TfaToken_When_MfaSecret_Is_Empty_Sync()
{
TestOutputLogger.LogContext("TestScenario", "EmptyMfaSecretSync");
ContentstackClient client = CreateClientWithLogging();
NetworkCredential credentials = new NetworkCredential("mock_user", "mock_password");
try
{
client.Login(credentials, null, "");
}
catch (ContentstackErrorException errorException)
{
AssertLogger.AreEqual(HttpStatusCode.UnprocessableEntity, errorException.StatusCode, "StatusCode");
AssertLogger.AreEqual(104, errorException.ErrorCode, "ErrorCode");
}
catch (Exception e)
{
AssertLogger.Fail($"Unexpected exception type: {e.GetType().Name} - {e.Message}");
}
}
[TestMethod]
[DoNotParallelize]
public async System.Threading.Tasks.Task Test020_Should_Not_Include_TfaToken_When_MfaSecret_Is_Null_Async()
{
TestOutputLogger.LogContext("TestScenario", "NullMfaSecretAsync");
ContentstackClient client = CreateClientWithLogging();
NetworkCredential credentials = new NetworkCredential("mock_user", "mock_password");
try
{
await client.LoginAsync(credentials, null, null);
}
catch (ContentstackErrorException errorException)
{
AssertLogger.AreEqual(HttpStatusCode.UnprocessableEntity, errorException.StatusCode, "StatusCode");
AssertLogger.AreEqual(104, errorException.ErrorCode, "ErrorCode");
}
catch (Exception e)
{
AssertLogger.Fail($"Unexpected exception type: {e.GetType().Name} - {e.Message}");
}
}
}
}