-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathContentstack001_LoginTest.cs
More file actions
1937 lines (1701 loc) · 84.6 KB
/
Copy pathContentstack001_LoginTest.cs
File metadata and controls
1937 lines (1701 loc) · 84.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
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
using System;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Threading.Tasks;
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 System.Text.Json;
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();
// deepcode ignore NoHardcodedCredentials: test fixture value, not a real secret
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();
// deepcode ignore NoHardcodedCredentials: test fixture value, not a real secret
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 Contentstack.LoginWithTotpRetryAsync(client);
string loginResponse = contentstackResponse.OpenResponse();
AssertLogger.IsNotNull(client.contentstackOptions.Authtoken, "Authtoken");
AssertLogger.IsNotNull(loginResponse, "loginResponse");
await client.LogoutAsync();
}
catch (Exception e)
{
if (Contentstack.IsTotpReuse(e))
{
AssertLogger.Fail($"TOTP token reuse error after retries: {e.Message}");
}
else if (Contentstack.IsAccountLockout(e))
{
AssertLogger.Fail($"Account is locked after retries: {e.Message}");
}
else
{
AssertLogger.Fail(e.Message);
}
}
}
[TestMethod]
[DoNotParallelize]
public void Test004_Should_Return_Success_On_Login()
{
TestOutputLogger.LogContext("TestScenario", "SyncLoginSuccess");
try
{
ContentstackClient client = CreateClientWithLogging();
ContentstackResponse contentstackResponse = Contentstack.LoginWithTotpRetry(client);
string loginResponse = contentstackResponse.OpenResponse();
AssertLogger.IsNotNull(client.contentstackOptions.Authtoken, "Authtoken");
AssertLogger.IsNotNull(loginResponse, "loginResponse");
}
catch (Exception e)
{
if (Contentstack.IsTotpReuse(e))
{
AssertLogger.Fail($"TOTP token reuse error after retries: {e.Message}");
}
else if (Contentstack.IsAccountLockout(e))
{
AssertLogger.Fail($"Account is locked after retries: {e.Message}");
}
else
{
AssertLogger.Fail(e.Message);
}
}
}
[TestMethod]
[DoNotParallelize]
public void Test005_Should_Return_Loggedin_User()
{
TestOutputLogger.LogContext("TestScenario", "GetUser");
try
{
ContentstackClient client = CreateClientWithLogging();
Contentstack.LoginWithTotpRetry(client);
ContentstackResponse response = client.GetUser();
var user = response.OpenJsonObjectResponse();
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 Contentstack.LoginWithTotpRetryAsync(client);
ContentstackResponse response = await client.GetUserAsync();
var user = response.OpenJsonObjectResponse();
AssertLogger.IsNotNull(user, "user");
AssertLogger.IsNotNull(user["user"]["organizations"], "organizations");
AssertLogger.IsInstanceOfType(user["user"]["organizations"], typeof(System.Text.Json.Nodes.JsonArray), "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();
Contentstack.LoginWithTotpRetry(client);
ContentstackResponse response = client.GetUser(collection);
var user = response.OpenJsonObjectResponse();
AssertLogger.IsNotNull(user, "user");
AssertLogger.IsNotNull(user["user"]["organizations"], "organizations");
AssertLogger.IsInstanceOfType(user["user"]["organizations"], typeof(System.Text.Json.Nodes.JsonArray), "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();
// deepcode ignore NoHardcodedCredentials: test fixture value, not a real secret
NetworkCredential credentials = new NetworkCredential("test_user", "test_password");
// deepcode ignore NoHardcodedCredentials: test fixture value, not a real secret
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();
// deepcode ignore NoHardcodedCredentials: test fixture value, not a real secret
NetworkCredential credentials = new NetworkCredential("test_user", "test_password");
// deepcode ignore NoHardcodedCredentials: test fixture value, not a real secret
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();
// deepcode ignore NoHardcodedCredentials: test fixture value, not a real secret
NetworkCredential credentials = new NetworkCredential("test_user", "test_password");
// deepcode ignore NoHardcodedCredentials: test fixture value, not a real secret
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();
// deepcode ignore NoHardcodedCredentials: test fixture value, not a real secret
NetworkCredential credentials = new NetworkCredential("test_user", "test_password");
// deepcode ignore NoHardcodedCredentials: test fixture value, not a real secret
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
{
Contentstack.LoginWithTotpRetry(client);
AssertLogger.IsNotNull(client.contentstackOptions.Authtoken, "Authtoken");
AssertLogger.ThrowsException<InvalidOperationException>(() =>
client.Login(Contentstack.Credential, null, Contentstack.MfaSecret), "AlreadyLoggedIn");
client.Logout();
}
catch (Exception e)
{
if (Contentstack.IsTotpReuse(e))
{
AssertLogger.Fail($"TOTP token reuse error after retries: {e.Message}");
}
else if (Contentstack.IsAccountLockout(e))
{
AssertLogger.Fail($"Account is locked after retries: {e.Message}");
}
else
{
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 Contentstack.LoginWithTotpRetryAsync(client);
AssertLogger.IsNotNull(client.contentstackOptions.Authtoken, "Authtoken");
await System.Threading.Tasks.Task.Run(() =>
AssertLogger.ThrowsException<InvalidOperationException>(() =>
client.LoginAsync(Contentstack.Credential, null, Contentstack.MfaSecret).GetAwaiter().GetResult(), "AlreadyLoggedInAsync"));
await client.LogoutAsync();
}
catch (Exception e)
{
if (Contentstack.IsTotpReuse(e))
{
AssertLogger.Fail($"TOTP token reuse error after retries: {e.Message}");
}
else if (Contentstack.IsAccountLockout(e))
{
AssertLogger.Fail($"Account is locked after retries: {e.Message}");
}
else
{
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();
// deepcode ignore NoHardcodedCredentials: test fixture value, not a real secret
NetworkCredential credentials = new NetworkCredential("test_user", "test_password");
// deepcode ignore NoHardcodedCredentials: test fixture value, not a real secret
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)
{
if (Contentstack.IsAccountLockout(errorException))
{
// Account is locked - this is expected after multiple failed attempts
AssertLogger.IsTrue(errorException.StatusCode == HttpStatusCode.BadRequest ||
errorException.StatusCode == HttpStatusCode.UnprocessableEntity,
$"Expected 400 or 422 for account lockout, got {errorException.StatusCode}");
AssertLogger.AreEqual(104, errorException.ErrorCode, "Expected error code 104 for account lockout");
}
else
{
// Account has 2FA enabled — wrong token is correctly rejected with 400 or 422
AssertLogger.IsTrue(errorException.StatusCode == HttpStatusCode.BadRequest ||
errorException.StatusCode == HttpStatusCode.UnprocessableEntity,
$"Expected 400 or 422 for TFA failure, got {errorException.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)
{
if (Contentstack.IsAccountLockout(errorException))
{
// Account is locked - this is expected after multiple failed attempts
AssertLogger.IsTrue(errorException.StatusCode == HttpStatusCode.BadRequest ||
errorException.StatusCode == HttpStatusCode.UnprocessableEntity,
$"Expected 400 or 422 for account lockout, got {errorException.StatusCode}");
AssertLogger.AreEqual(104, errorException.ErrorCode, "Expected error code 104 for account lockout");
}
else
{
// Account has 2FA enabled — wrong token is correctly rejected with 400 or 422
AssertLogger.IsTrue(errorException.StatusCode == HttpStatusCode.BadRequest ||
errorException.StatusCode == HttpStatusCode.UnprocessableEntity,
$"Expected 400 or 422 for TFA failure, got {errorException.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();
// deepcode ignore NoHardcodedCredentials: test fixture value, not a real secret
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();
// deepcode ignore NoHardcodedCredentials: test fixture value, not a real secret
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}");
}
}
#region Phase 1: Parameter and Input Validation Tests (021-030)
[TestMethod]
[DoNotParallelize]
public void Test021_Should_Handle_Empty_Username_Sync()
{
TestOutputLogger.LogContext("TestScenario", "EmptyUsernameSync");
ContentstackClient client = CreateClientWithLogging();
NetworkCredential credentials = new NetworkCredential("", "password");
var ex = AssertLogger.ThrowsContentstackError(() =>
client.Login(credentials), "EmptyUsername", HttpStatusCode.UnprocessableEntity);
AssertLogger.AreEqual(104, ex.ErrorCode, "ErrorCode");
AssertLogger.IsTrue(ex.Message.Contains("email") || ex.Message.Contains("password"), "ErrorMessage");
}
[TestMethod]
[DoNotParallelize]
public void Test022_Should_Handle_Empty_Password_Sync()
{
TestOutputLogger.LogContext("TestScenario", "EmptyPasswordSync");
ContentstackClient client = CreateClientWithLogging();
// deepcode ignore NoHardcodedCredentials: test fixture value, not a real secret
NetworkCredential credentials = new NetworkCredential("user@example.com", "");
var ex = AssertLogger.ThrowsContentstackError(() =>
client.Login(credentials), "EmptyPassword", HttpStatusCode.UnprocessableEntity);
AssertLogger.AreEqual(104, ex.ErrorCode, "ErrorCode");
AssertLogger.IsTrue(ex.Message.Contains("email") || ex.Message.Contains("password"), "ErrorMessage");
}
[TestMethod]
[DoNotParallelize]
public async System.Threading.Tasks.Task Test023_Should_Handle_Empty_Username_Async()
{
TestOutputLogger.LogContext("TestScenario", "EmptyUsernameAsync");
ContentstackClient client = CreateClientWithLogging();
NetworkCredential credentials = new NetworkCredential("", "password");
var ex = await AssertLogger.ThrowsContentstackErrorAsync(() =>
client.LoginAsync(credentials), "EmptyUsernameAsync", HttpStatusCode.UnprocessableEntity);
AssertLogger.AreEqual(104, ex.ErrorCode, "ErrorCode");
AssertLogger.IsTrue(ex.Message.Contains("email") || ex.Message.Contains("password"), "ErrorMessage");
}
[TestMethod]
[DoNotParallelize]
public async System.Threading.Tasks.Task Test024_Should_Handle_Empty_Password_Async()
{
TestOutputLogger.LogContext("TestScenario", "EmptyPasswordAsync");
ContentstackClient client = CreateClientWithLogging();
// deepcode ignore NoHardcodedCredentials: test fixture value, not a real secret
NetworkCredential credentials = new NetworkCredential("user@example.com", "");
var ex = await AssertLogger.ThrowsContentstackErrorAsync(() =>
client.LoginAsync(credentials), "EmptyPasswordAsync", HttpStatusCode.UnprocessableEntity);
AssertLogger.AreEqual(104, ex.ErrorCode, "ErrorCode");
AssertLogger.IsTrue(ex.Message.Contains("email") || ex.Message.Contains("password"), "ErrorMessage");
}
[TestMethod]
[DoNotParallelize]
public async System.Threading.Tasks.Task Test025_Should_Handle_Whitespace_Only_Credentials_Async()
{
TestOutputLogger.LogContext("TestScenario", "WhitespaceCredentialsAsync");
ContentstackClient client = CreateClientWithLogging();
NetworkCredential credentials = new NetworkCredential(" ", " ");
try
{
await client.LoginAsync(credentials);
AssertLogger.Fail("Expected exception for whitespace-only credentials");
}
catch (ContentstackErrorException errorException)
{
AssertLogger.AreEqual(HttpStatusCode.UnprocessableEntity, errorException.StatusCode, "StatusCode");
AssertLogger.AreEqual(104, errorException.ErrorCode, "ErrorCode");
}
catch (ArgumentNullException)
{
AssertLogger.IsTrue(true, "ArgumentNullException acceptable for whitespace credentials");
}
catch (Exception e)
{
AssertLogger.Fail($"Unexpected exception type: {e.GetType().Name} - {e.Message}");
}
}
#endregion
#region Phase 2: Network Error Simulation Tests (031-045)
private static ContentstackClient CreateClientWithMockError(NetworkErrorType errorType, int delayMs = 0)
{
var handler = new MockNetworkErrorHandler(errorType, delayMs);
var httpClient = new HttpClient(handler);
return new ContentstackClient(httpClient, new ContentstackClientOptions());
}
private static ContentstackClient CreateClientWithTimeout(int timeoutMs = 5000)
{
var handler = new MockTimeoutHandler(timeoutMs);
var httpClient = new HttpClient(handler);
return new ContentstackClient(httpClient, new ContentstackClientOptions());
}
[TestMethod]
[DoNotParallelize]
public void Test026_Should_Handle_Network_Timeout_Sync()
{
TestOutputLogger.LogContext("TestScenario", "NetworkTimeoutSync");
ContentstackClient client = CreateClientWithMockError(NetworkErrorType.Timeout);
// deepcode ignore NoHardcodedCredentials: test fixture value, not a real secret
NetworkCredential credentials = new NetworkCredential("test@example.com", "password");
try
{
client.Login(credentials);
AssertLogger.Fail("Expected timeout exception");
}
catch (TaskCanceledException)
{
AssertLogger.IsTrue(true, "TaskCanceledException as expected for timeout");
}
catch (HttpRequestException)
{
AssertLogger.IsTrue(true, "HttpRequestException acceptable for timeout");
}
catch (Exception e)
{
AssertLogger.Fail($"Unexpected exception type: {e.GetType().Name} - {e.Message}");
}
}
[TestMethod]
[DoNotParallelize]
public async System.Threading.Tasks.Task Test027_Should_Handle_Network_Timeout_Async()
{
TestOutputLogger.LogContext("TestScenario", "NetworkTimeoutAsync");
ContentstackClient client = CreateClientWithMockError(NetworkErrorType.Timeout);
// deepcode ignore NoHardcodedCredentials: test fixture value, not a real secret
NetworkCredential credentials = new NetworkCredential("test@example.com", "password");
try
{
await client.LoginAsync(credentials);
AssertLogger.Fail("Expected timeout exception");
}
catch (TaskCanceledException)
{
AssertLogger.IsTrue(true, "TaskCanceledException as expected for timeout");
}
catch (HttpRequestException)
{
AssertLogger.IsTrue(true, "HttpRequestException acceptable for timeout");
}
catch (Exception e)
{
AssertLogger.Fail($"Unexpected exception type: {e.GetType().Name} - {e.Message}");
}
}
[TestMethod]
[DoNotParallelize]
public void Test028_Should_Handle_Connection_Refused_Sync()
{
TestOutputLogger.LogContext("TestScenario", "ConnectionRefusedSync");
ContentstackClient client = CreateClientWithMockError(NetworkErrorType.ConnectionRefused);
// deepcode ignore NoHardcodedCredentials: test fixture value, not a real secret
NetworkCredential credentials = new NetworkCredential("test@example.com", "password");
AssertLogger.ThrowsException<HttpRequestException>(() =>
client.Login(credentials), "ConnectionRefused");
}
[TestMethod]
[DoNotParallelize]
public async System.Threading.Tasks.Task Test029_Should_Handle_Connection_Refused_Async()
{
TestOutputLogger.LogContext("TestScenario", "ConnectionRefusedAsync");
ContentstackClient client = CreateClientWithMockError(NetworkErrorType.ConnectionRefused);
// deepcode ignore NoHardcodedCredentials: test fixture value, not a real secret
NetworkCredential credentials = new NetworkCredential("test@example.com", "password");
await AssertLogger.ThrowsExceptionAsync<HttpRequestException>(() =>
client.LoginAsync(credentials), "ConnectionRefusedAsync");
}
[TestMethod]
[DoNotParallelize]
public void Test030_Should_Handle_DNS_Resolution_Failure_Sync()
{
TestOutputLogger.LogContext("TestScenario", "DnsFailureSync");
ContentstackClient client = CreateClientWithMockError(NetworkErrorType.DnsFailure);
// deepcode ignore NoHardcodedCredentials: test fixture value, not a real secret
NetworkCredential credentials = new NetworkCredential("test@example.com", "password");
AssertLogger.ThrowsException<HttpRequestException>(() =>
client.Login(credentials), "DnsFailure");
}
[TestMethod]
[DoNotParallelize]
public async System.Threading.Tasks.Task Test031_Should_Handle_DNS_Resolution_Failure_Async()
{
TestOutputLogger.LogContext("TestScenario", "DnsFailureAsync");
ContentstackClient client = CreateClientWithMockError(NetworkErrorType.DnsFailure);
// deepcode ignore NoHardcodedCredentials: test fixture value, not a real secret
NetworkCredential credentials = new NetworkCredential("test@example.com", "password");
await AssertLogger.ThrowsExceptionAsync<HttpRequestException>(() =>
client.LoginAsync(credentials), "DnsFailureAsync");
}
[TestMethod]
[DoNotParallelize]
public void Test032_Should_Handle_Request_Cancellation_Sync()
{
TestOutputLogger.LogContext("TestScenario", "RequestCancellationSync");
ContentstackClient client = CreateClientWithTimeout(100);
// deepcode ignore NoHardcodedCredentials: test fixture value, not a real secret
NetworkCredential credentials = new NetworkCredential("test@example.com", "password");
try
{
client.Login(credentials);
AssertLogger.Fail("Expected cancellation exception");
}
catch (TaskCanceledException)
{
AssertLogger.IsTrue(true, "TaskCanceledException as expected");
}
catch (HttpRequestException)
{
AssertLogger.IsTrue(true, "HttpRequestException acceptable for cancellation");
}
catch (Exception e)
{
AssertLogger.Fail($"Unexpected exception type: {e.GetType().Name} - {e.Message}");
}
}
#endregion
#region Phase 3: HTTP Status Code Coverage Tests (046-055)
private static ContentstackClient CreateClientWithHttpStatus(HttpStatusCode statusCode,
string errorMessage = null, int errorCode = 0)
{
var handler = new MockHttpStatusHandler(statusCode, errorMessage, errorCode);
var httpClient = new HttpClient(handler);
return new ContentstackClient(httpClient, new ContentstackClientOptions());
}
private static ContentstackClient CreateClientWithHttpStatusNoRetry(HttpStatusCode statusCode,
string errorMessage = null, int errorCode = 0)
{
var handler = new MockHttpStatusHandler(statusCode, errorMessage, errorCode);
var httpClient = new HttpClient(handler);
var options = new ContentstackClientOptions
{
RetryOnError = false, // Disable all retries
RetryOnHttpServerError = false, // Specifically disable server error retries
RetryLimit = 0 // No retry attempts
};
return new ContentstackClient(httpClient, options);
}
[TestMethod]
[DoNotParallelize]
public void Test033_Should_Handle_401_Unauthorized_Sync()
{
TestOutputLogger.LogContext("TestScenario", "Http401UnauthorizedSync");
ContentstackClient client = CreateClientWithHttpStatus(HttpStatusCode.Unauthorized,
"Authentication failed. Please check your credentials.", 401);
// deepcode ignore NoHardcodedCredentials: test fixture value, not a real secret
NetworkCredential credentials = new NetworkCredential("test@example.com", "password");
var ex = AssertLogger.ThrowsContentstackError(() =>
client.Login(credentials), "Unauthorized", HttpStatusCode.Unauthorized);
AssertLogger.AreEqual(401, ex.ErrorCode, "ErrorCode");
AssertLogger.IsTrue(ex.Message.Contains("Authentication failed"), "ErrorMessage");
}
[TestMethod]
[DoNotParallelize]
public async System.Threading.Tasks.Task Test034_Should_Handle_401_Unauthorized_Async()
{
TestOutputLogger.LogContext("TestScenario", "Http401UnauthorizedAsync");
ContentstackClient client = CreateClientWithHttpStatus(HttpStatusCode.Unauthorized,
"Authentication failed. Please check your credentials.", 401);
// deepcode ignore NoHardcodedCredentials: test fixture value, not a real secret
NetworkCredential credentials = new NetworkCredential("test@example.com", "password");
var ex = await AssertLogger.ThrowsContentstackErrorAsync(() =>
client.LoginAsync(credentials), "UnauthorizedAsync", HttpStatusCode.Unauthorized);
AssertLogger.AreEqual(401, ex.ErrorCode, "ErrorCode");
AssertLogger.IsTrue(ex.Message.Contains("Authentication failed"), "ErrorMessage");
}
[TestMethod]
[DoNotParallelize]
public void Test035_Should_Handle_403_Forbidden_Sync()
{
TestOutputLogger.LogContext("TestScenario", "Http403ForbiddenSync");
ContentstackClient client = CreateClientWithHttpStatus(HttpStatusCode.Forbidden,
"Access denied. Insufficient permissions.", 403);
// deepcode ignore NoHardcodedCredentials: test fixture value, not a real secret
NetworkCredential credentials = new NetworkCredential("test@example.com", "password");
var ex = AssertLogger.ThrowsContentstackError(() =>
client.Login(credentials), "Forbidden", HttpStatusCode.Forbidden);
AssertLogger.AreEqual(403, ex.ErrorCode, "ErrorCode");
AssertLogger.IsTrue(ex.Message.Contains("Access denied"), "ErrorMessage");
}
[TestMethod]
[DoNotParallelize]
public async System.Threading.Tasks.Task Test036_Should_Handle_403_Forbidden_Async()
{
TestOutputLogger.LogContext("TestScenario", "Http403ForbiddenAsync");
ContentstackClient client = CreateClientWithHttpStatus(HttpStatusCode.Forbidden,
"Access denied. Insufficient permissions.", 403);
// deepcode ignore NoHardcodedCredentials: test fixture value, not a real secret
NetworkCredential credentials = new NetworkCredential("test@example.com", "password");
var ex = await AssertLogger.ThrowsContentstackErrorAsync(() =>
client.LoginAsync(credentials), "ForbiddenAsync", HttpStatusCode.Forbidden);
AssertLogger.AreEqual(403, ex.ErrorCode, "ErrorCode");
AssertLogger.IsTrue(ex.Message.Contains("Access denied"), "ErrorMessage");
}
[TestMethod]
[DoNotParallelize]
public void Test050_Should_Handle_429_TooManyRequests_Sync()
{
TestOutputLogger.LogContext("TestScenario", "Http429TooManyRequestsSync");
ContentstackClient client = CreateClientWithHttpStatus(HttpStatusCode.TooManyRequests,
"Rate limit exceeded. Please try again later.", 429);
// deepcode ignore NoHardcodedCredentials: test fixture value, not a real secret
NetworkCredential credentials = new NetworkCredential("test@example.com", "password");
var ex = AssertLogger.ThrowsContentstackError(() =>
client.Login(credentials), "TooManyRequests", HttpStatusCode.TooManyRequests);
AssertLogger.AreEqual(429, ex.ErrorCode, "ErrorCode");
AssertLogger.IsTrue(ex.Message.Contains("Rate limit"), "ErrorMessage");
}
[TestMethod]
[DoNotParallelize]
public async System.Threading.Tasks.Task Test051_Should_Handle_429_TooManyRequests_Async()
{
TestOutputLogger.LogContext("TestScenario", "Http429TooManyRequestsAsync");
ContentstackClient client = CreateClientWithHttpStatus(HttpStatusCode.TooManyRequests,
"Rate limit exceeded. Please try again later.", 429);
// deepcode ignore NoHardcodedCredentials: test fixture value, not a real secret
NetworkCredential credentials = new NetworkCredential("test@example.com", "password");
var ex = await AssertLogger.ThrowsContentstackErrorAsync(() =>
client.LoginAsync(credentials), "TooManyRequestsAsync", HttpStatusCode.TooManyRequests);
AssertLogger.AreEqual(429, ex.ErrorCode, "ErrorCode");
AssertLogger.IsTrue(ex.Message.Contains("Rate limit"), "ErrorMessage");
}
[TestMethod]
[DoNotParallelize]
public void Test052_Should_Handle_500_InternalServerError_Sync()
{
TestOutputLogger.LogContext("TestScenario", "Http500InternalServerErrorSync");
ContentstackClient client = CreateClientWithHttpStatusNoRetry(HttpStatusCode.InternalServerError,
"Internal server error occurred.", 500);
// deepcode ignore NoHardcodedCredentials: test fixture value, not a real secret
NetworkCredential credentials = new NetworkCredential("test@example.com", "password");
var ex = AssertLogger.ThrowsContentstackError(() =>
client.Login(credentials), "InternalServerError", HttpStatusCode.InternalServerError);
AssertLogger.AreEqual(500, ex.ErrorCode, "ErrorCode");
AssertLogger.IsTrue(ex.Message.Contains("Internal server"), "ErrorMessage");
}
[TestMethod]
[DoNotParallelize]
public async System.Threading.Tasks.Task Test053_Should_Handle_500_InternalServerError_Async()
{
TestOutputLogger.LogContext("TestScenario", "Http500InternalServerErrorAsync");
ContentstackClient client = CreateClientWithHttpStatusNoRetry(HttpStatusCode.InternalServerError,
"Internal server error occurred.", 500);
// deepcode ignore NoHardcodedCredentials: test fixture value, not a real secret
NetworkCredential credentials = new NetworkCredential("test@example.com", "password");
var ex = await AssertLogger.ThrowsContentstackErrorAsync(() =>
client.LoginAsync(credentials), "InternalServerErrorAsync", HttpStatusCode.InternalServerError);
AssertLogger.AreEqual(500, ex.ErrorCode, "ErrorCode");
AssertLogger.IsTrue(ex.Message.Contains("Internal server"), "ErrorMessage");