forked from OWASP/SecurityShepherd
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSetterTest.java
More file actions
1362 lines (1107 loc) · 46.5 KB
/
Copy pathSetterTest.java
File metadata and controls
1362 lines (1107 loc) · 46.5 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
package dbProcs;
import static org.junit.Assert.*;
import static org.junit.jupiter.api.Assertions.assertNotEquals;
import java.io.IOException;
import java.sql.CallableStatement;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.time.LocalDateTime;
import java.util.Random;
import org.apache.log4j.Logger;
import org.json.simple.JSONArray;
import org.json.simple.JSONObject;
import org.json.simple.JSONValue;
import org.junit.BeforeClass;
import org.junit.Test;
import testUtils.TestProperties;
import utils.ScoreboardStatus;
public class SetterTest {
private static org.apache.log4j.Logger log = Logger.getLogger(SetterTest.class);
private static String applicationRoot = new String();
/**
* Creates DB or Restores DB to Factory Defaults before running tests
*/
@BeforeClass
public static void resetDatabase() throws IOException, SQLException {
TestProperties.setTestPropertiesFileDirectory(log);
TestProperties.createMysqlResource();
TestProperties.executeSql(log);
}
/**
* Test to ensure class's can be created with this method. Other Unit Tests use
* this method, but not nessisarily every time, as a class may already exist.
* This Method creates a random class name so it can run every time without
* failure
*
* @throws SQLException
*/
@Test
public void testClassCreate() throws SQLException {
Random rand = new Random();
String className = "newC" + rand.nextInt(50) + rand.nextInt(50) + rand.nextInt(50);
if (!Setter.classCreate(applicationRoot, className, "2015")) {
TestProperties.failAndPrint("Could not Create Class");
} else {
boolean pass = false;
ResultSet rs = Getter.getClassInfo(applicationRoot);
while (rs.next()) {
if (rs.getString(2).equalsIgnoreCase(className)) {
pass = true;
break;
}
}
if (!pass) {
TestProperties.failAndPrint("Could not find class in DB");
} else
return; // PASS
}
}
@Test
public void testIncrementBadSubmission() throws SQLException {
String moduleId = "853c98bd070fe0d31f1ec8b4f2ada9d7fd1784c5"; // CSRF7
String userName = new String("BadSubUser");
if (GetterTest.verifyTestUser(applicationRoot, userName, userName)) {
String userId = Getter.getUserIdFromName(applicationRoot, userName);
if (!Setter.openAllModules(applicationRoot, false) && !Setter.openAllModules(applicationRoot, true)) {
TestProperties.failAndPrint("Could not mark all modules as open");
} else {
// Simulate user Opening Level
if (Getter.getModuleAddress(applicationRoot, moduleId, userId).isEmpty()) {
TestProperties.failAndPrint("Could not Simulate Opening First Level for User");
} else {
String markLevelCompleteTest = Setter.updatePlayerResult(applicationRoot, moduleId, userId,
"Feedback is Disabled", 1, 1, 1);
if (markLevelCompleteTest != null) {
// Giving the User a Score Bump in case they have already completed CSRF7 and
// this is the 20th time the unit test has run
if (!Setter.updateUserPoints(applicationRoot, userId, 20))
TestProperties.failAndPrint("Could not give user extra points");
int scoreBefore = 0;
ScoreboardStatus.setScoreboardOpen();
String scoreboardData = Getter.getJsonScore(applicationRoot, "");
if (scoreboardData.isEmpty()) {
TestProperties
.failAndPrint("Could not detect user in scoreboard before bad submission test");
} else {
JSONArray scoreboardJson = (JSONArray) JSONValue.parse(scoreboardData);
// Loop through array to find Our user
for (int i = 0; i < scoreboardJson.size(); i++) {
log.debug("Looping through Array " + i);
JSONObject scoreRowJson = (JSONObject) scoreboardJson.get(i);
if (scoreRowJson.get("username").toString().compareTo(userName) == 0) {
log.debug("Found user with score: " + scoreRowJson.get("score"));
scoreBefore = Integer.parseInt(scoreRowJson.get("score").toString());
break;
}
}
if (scoreBefore == 0) {
log.fatal("Could not find user " + userName + " with score > 0: " + scoreboardData);
TestProperties.failAndPrint("User has score of 0 before BadSubmission Emulation");
}
// Resetting resetBadSubmission count back to 0
if (!Setter.resetBadSubmission(applicationRoot, userId))
TestProperties.failAndPrint("Could not Reset bad submission count");
// Simulating 41 bad submissions
for (int i = 0; i <= 40; i++)
Setter.incrementBadSubmission(applicationRoot, userId);
// Check Score again
int scoreAfter = 0;
scoreboardData = Getter.getJsonScore(applicationRoot, "");
scoreboardJson = (JSONArray) JSONValue.parse(scoreboardData);
// Loop through array to find Our user
for (int i = 0; i < scoreboardJson.size(); i++) {
log.debug("Looping through Array " + i);
JSONObject scoreRowJson = (JSONObject) scoreboardJson.get(i);
if (scoreRowJson.get("username").toString().compareTo(userName) == 0) {
log.debug("Found user with score: " + scoreRowJson.get("score"));
scoreAfter = Integer.parseInt(scoreRowJson.get("score").toString());
break;
}
}
int expectedAfter = scoreBefore - (scoreBefore / 10);
log.debug("expected score: " + expectedAfter);
if (scoreAfter != expectedAfter)// Checking exact number should be equal to and number
// below as well incase rounded d
{
log.debug("score before: " + scoreBefore);
log.debug("score after : " + scoreAfter);
log.debug("Expected After: " + expectedAfter);
int roundedUp = scoreAfter + 1;
if (roundedUp != expectedAfter)
TestProperties.failAndPrint("Invalid Score Deduction Detected");
else
return; // PASS
} else {
return; // Pass
}
}
} else {
TestProperties.failAndPrint("Could not Mark First level as complete");
}
}
}
} else {
TestProperties.failAndPrint("Could not Create/Verify User");
}
}
@Test
public void testOpenOnlyMobileCategories() {
if (!Setter.openOnlyMobileCategories(applicationRoot))
TestProperties.failAndPrint("Could not Open Only Mobile Categories");
}
@Test
public void testOpenOnlyWebCategories() {
if (!Setter.openOnlyWebCategories(applicationRoot, 0))
TestProperties.failAndPrint("Could not Open Only Web Categories");
}
@Test
public void testResetBadSubmission() throws SQLException {
String moduleId = "853c98bd070fe0d31f1ec8b4f2ada9d7fd1784c5"; // CSRF7
String userName = new String("BadSubResetUser");
if (GetterTest.verifyTestUser(applicationRoot, userName, userName)) {
String userId = Getter.getUserIdFromName(applicationRoot, userName);
if (!Setter.openAllModules(applicationRoot, false) && !Setter.openAllModules(applicationRoot, true)) {
TestProperties.failAndPrint("Could not mark all modules as open");
} else {
// Simulate user Opening Level
if (Getter.getModuleAddress(applicationRoot, moduleId, userId).isEmpty()) {
TestProperties.failAndPrint("Could not Simulate Opening First Level for User");
} else {
String markLevelCompleteTest = Setter.updatePlayerResult(applicationRoot, moduleId, userId,
"Feedback is Disabled", 1, 1, 1);
if (markLevelCompleteTest != null) {
int scoreBefore = 0;
ScoreboardStatus.setScoreboardOpen();
String scoreboardData = Getter.getJsonScore(applicationRoot, "");
if (scoreboardData.isEmpty()) {
fail("Could not detect user in scoreboard before bad submission test");
} else {
JSONArray scoreboardJson = (JSONArray) JSONValue.parse(scoreboardData);
// Loop through array to find Our user
for (int i = 0; i < scoreboardJson.size(); i++) {
JSONObject scoreRowJson = (JSONObject) scoreboardJson.get(i);
if (scoreRowJson.get("username").toString().compareTo(userName) == 0) {
log.debug("Found user with score: " + scoreRowJson.get("score"));
scoreBefore = Integer.parseInt(scoreRowJson.get("score").toString());
break;
}
}
if (scoreBefore == 0) {
log.fatal("Could not find user " + userName + " with score > 0: " + scoreboardData);
TestProperties.failAndPrint("User has score of 0 before BadSubmission Emulation");
}
// Resetting resetBadSubmission count back to 0
if (!Setter.resetBadSubmission(applicationRoot, userId))
TestProperties.failAndPrint("Could not Reset bad submission count");
// Simulating 40 bad submissions
for (int i = 0; i < 40; i++) {
if (!Setter.incrementBadSubmission(applicationRoot, userId))
TestProperties.failAndPrint("Could not Increment Bad Submission Counter");
}
// Resetting Bad Submission Count back to 0 again
if (!Setter.resetBadSubmission(applicationRoot, userId))
TestProperties.failAndPrint("Could not Reset bad submission count");
// Incrementing one more time (Should set user bad submission counter to 1)
if (!Setter.incrementBadSubmission(applicationRoot, userId))
TestProperties.failAndPrint("Could not Increment Bad Submission Counter");
// Check Score again
int scoreAfter = 0;
scoreboardData = Getter.getJsonScore(applicationRoot, "");
scoreboardJson = (JSONArray) JSONValue.parse(scoreboardData);
// Loop through array to find Our user
for (int i = 0; i < scoreboardJson.size(); i++) {
log.debug("Looping through Array " + i);
JSONObject scoreRowJson = (JSONObject) scoreboardJson.get(i);
if (scoreRowJson.get("username").toString().compareTo(userName) == 0) {
log.debug("Found user with score: " + scoreRowJson.get("score"));
scoreAfter = Integer.parseInt(scoreRowJson.get("score").toString());
break;
}
}
if (scoreAfter != scoreBefore)// Checking exact number should be equal to and number
// below as well incase rounded d
{
log.debug("score before: " + scoreBefore);
log.debug("score after : " + scoreAfter);
TestProperties.failAndPrint("Invalid Score Deduction Detected");
} else {
return; // Pass
}
}
} else {
TestProperties.failAndPrint("Could not Mark First level as complete");
}
}
}
} else {
TestProperties.failAndPrint("Could not Create/Verify User");
}
}
@Test
public void testSetCsrfChallengeFourCsrfToken() throws SQLException {
String userName = new String("csrfFourUser");
if (GetterTest.verifyTestUser(applicationRoot, userName, userName)) {
String userId = Getter.getUserIdFromName(applicationRoot, userName);
String csrfTokenValue = new String("CsrfTokenTest");
String csrfToken = Setter.setCsrfChallengeFourCsrfToken(userId, csrfTokenValue, applicationRoot);
if (csrfToken.compareTo(csrfTokenValue) != 0)
fail("Retrieved CSRF token did not Match the Set Value");
} else {
fail("Could not Verify User");
}
}
@Test
public void testSetCsrfChallengeSevenCsrfToken() throws SQLException {
String userName = new String("csrfSevenUser");
if (GetterTest.verifyTestUser(applicationRoot, userName, userName)) {
String userId = Getter.getUserIdFromName(applicationRoot, userName);
String csrfToken = new String("CsrfTokenTest");
if (!Setter.setCsrfChallengeSevenCsrfToken(userId, csrfToken, applicationRoot))
fail("Could not Set CSRF Chalenge 7 Token");
} else {
fail("Could not Verify User");
}
}
@Test
public void testSetModuleCategoryStatusOpen() throws SQLException {
String moduleCategory = new String("Injection");
if (!Setter.closeAllModules(applicationRoot))
fail("Could not Mark all modules as closed");
else if (!Setter.setModuleCategoryStatusOpen(applicationRoot, moduleCategory, "open"))
fail("Could not Open module Category");
else {
Connection conn = Database.getCoreConnection(applicationRoot);
log.debug("Getting Number of Mobile Levels From DB");
PreparedStatement prepStatement = conn
.prepareStatement("SELECT DISTINCT moduleCategory FROM modules WHERE moduleStatus = 'open';");
ResultSet rs = prepStatement.executeQuery();
while (rs.next()) {
if (rs.getString(1).compareTo(moduleCategory) != 0) {
log.debug("Found Category that wa snot injection: " + rs.getString(1));
fail("Detected Category that was not Injection Open");
}
}
}
}
@Test
public void testSetModuleCategoryStatusClosed() throws SQLException {
String moduleCategory = new String("Injection");
if (!Setter.openAllModules(applicationRoot, false) && !Setter.openAllModules(applicationRoot, true))
fail("Could not Mark all modules as open");
else if (!Setter.setModuleCategoryStatusOpen(applicationRoot, moduleCategory, "closed"))
fail("Could not close module Category");
else {
Connection conn = Database.getCoreConnection(applicationRoot);
log.debug("Getting Number of Mobile Levels From DB");
PreparedStatement prepStatement = conn
.prepareStatement("SELECT DISTINCT moduleCategory FROM modules WHERE moduleStatus = 'closed';");
ResultSet rs = prepStatement.executeQuery();
while (rs.next()) {
if (rs.getString(1).compareTo(moduleCategory) != 0) {
log.debug("Found Category that wa snot injection: " + rs.getString(1));
fail("Detected Category that was not Injection Closed");
}
}
}
}
@Test
public void testSetModuleStatusClosed() throws SQLException {
String moduleId = new String("853c98bd070fe0d31f1ec8b4f2ada9d7fd1784c5"); // CSRF 7
if (!Setter.openAllModules(applicationRoot, false))
fail("Could not Mark all modules as open");
else if (!Setter.setModuleStatusClosed(applicationRoot, moduleId))
fail("Could not close CSRF 7 Module");
else {
Connection conn = Database.getCoreConnection(applicationRoot);
log.debug("Getting Number of Mobile Levels From DB");
PreparedStatement prepStatement = conn
.prepareStatement("SELECT moduleStatus FROM modules WHERE moduleId = ?");
prepStatement.setString(1, moduleId);
ResultSet rs = prepStatement.executeQuery();
if (rs.next()) {
if (rs.getString(1).compareTo("closed") != 0) {
log.debug("Module was not closed by method");
fail("Module was not closed by method");
}
}
}
}
@Test
public void testSetModuleStatusOpen() throws SQLException {
String moduleId = new String("853c98bd070fe0d31f1ec8b4f2ada9d7fd1784c5"); // CSRF 7
if (!Setter.closeAllModules(applicationRoot))
fail("Could not Mark all modules as closed");
else if (!Setter.setModuleStatusOpen(applicationRoot, moduleId))
fail("Could not close CSRF 7 Module");
else {
Connection conn = Database.getCoreConnection(applicationRoot);
log.debug("Getting Number of Mobile Levels From DB");
PreparedStatement prepStatement = conn
.prepareStatement("SELECT moduleStatus FROM modules WHERE moduleId = ?");
prepStatement.setString(1, moduleId);
ResultSet rs = prepStatement.executeQuery();
if (rs.next()) {
if (rs.getString(1).compareTo("open") != 0) {
log.debug("Module was not opened by method");
fail("Module was not opened by method");
}
}
}
}
@Test
public void testSetStoredMessage() throws SQLException {
log.debug("Testing Set Stored message");
String userName = new String("storedMessageUser");
String className = new String("sMessageClass");
String moduleId = new String("853c98bd070fe0d31f1ec8b4f2ada9d7fd1784c5"); // CSRF 7
String message = new String("TestStoredMessage");
log.debug("Getting class id");
String classId = GetterTest.findCreateClassId(className, applicationRoot);
log.debug("Checking User Name in DB");
if (GetterTest.verifyTestUser(applicationRoot, userName, userName, classId)) {
// Open all Modules First so that the Module Can Be Opened
if (!Setter.openAllModules(applicationRoot, false)) {
fail("Could not open all modules");
}
String userId = Getter.getUserIdFromName(applicationRoot, userName);
// Simulate user Opening Level
if (Getter.getModuleAddress(applicationRoot, moduleId, userId).isEmpty()) {
fail("Could not Simulate Opening First Level for User");
} else {
Setter.setStoredMessage(applicationRoot, message, userId, moduleId);
Connection conn = Database.getCoreConnection(applicationRoot);
CallableStatement callstmt = conn.prepareCall("call resultMessageByClass(?, ?)");
log.debug("Gathering resultMessageByClass ResultSet");
callstmt.setString(1, classId);
callstmt.setString(2, moduleId);
ResultSet resultSet = callstmt.executeQuery();
log.debug("resultMessageByClass executed");
while (resultSet.next()) {
if (resultSet.getString(1).compareTo(userName) == 0) {
if (resultSet.getString(2).compareTo(message) != 0)
fail("Stored Message does not equal the one set");
else
return; // Pass
}
}
fail("Could not find user stored message");
}
} else {
fail("Could not verify test User");
}
}
@Test
public void testSuspendUser() throws SQLException {
String userName = new String("suspendedUser");
log.debug("Checking User Name in DB");
boolean loggedIn = false;
try {
log.debug("Trying to Verify User");
loggedIn = GetterTest.verifyTestUser(applicationRoot, userName, userName);
} catch (SQLException e) {
log.debug("Could not verify. May be suspended. Unsuspending");
// Might need to unsuspend player
Setter.unSuspendUser(applicationRoot, Getter.getUserIdFromName(applicationRoot, userName));
// Gotta Sleep for a sec otherwise the time setting for suspension will fail
// test. Must be 1 sec after unsuspend function ran
try {
Thread.sleep(1000);
} catch (InterruptedException e1) {
// Ignore if we're interrupted
log.debug("Sleep was interrupted, continuing anyway...");
}
loggedIn = GetterTest.verifyTestUser(applicationRoot, userName, userName);
}
if (!loggedIn) {
fail("Could not Verify User");
} else {
String userId = Getter.getUserIdFromName(applicationRoot, userName);
if (!Setter.suspendUser(applicationRoot, userId, 10)) {
fail("Could not suspend User");
} else {
String user[] = Getter.authUser(applicationRoot, userName, userName);
if (user == null || user[0].isEmpty()) {
return;// PASS: User Could not Authenticate after suspension
} else {
TestProperties.failAndPrint("Fail: could still authenticate as user after suspension");
}
}
}
}
@Test
public void testUnSuspendUser() throws SQLException {
String userName = new String("UnsuspendedUser");
log.debug("Checking User Name in DB");
if (!GetterTest.verifyTestUser(applicationRoot, userName, userName)) {
fail("Could not Verify User");
} else {
String userId = Getter.getUserIdFromName(applicationRoot, userName);
if (!Setter.suspendUser(applicationRoot, userId, 10)) {
fail("Could not suspend User");
} else {
if (!Setter.unSuspendUser(applicationRoot, userId)) {
fail("Could not unsusepend user");
} else {
// Gotta Sleep for a sec, otherwise the time compair will round down and user
// auth will fail. User is unsuspended 1 second after unsuspend funciton
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
// Ignore if we're interrupted
log.debug("Sleep was interrupted, continuing anyway...");
}
String user[] = Getter.authUser(applicationRoot, userName, userName);
if (user == null || user[0].isEmpty()) {
fail("Could not Authenticate after unsuspension");
} else {
return;// PASS: User Could not Authenticate after unsuspension
}
}
}
}
}
@Test
public void testUpdateUsername() {
log.debug("Testing update Password");
String userName = new String("updateUsernameTest");
String newUsername = new String("newUpdatedUsernameTest");
String password = new String("justaTestingPassword");
boolean loggedIn = false;
try {
log.debug("Logging in as test user " + userName);
loggedIn = GetterTest.verifyTestUser(applicationRoot, userName, password);
} catch (SQLException e) {
loggedIn = false;
TestProperties.failAndPrint("Could not log in with default pass: " + e.toString());
}
if (!loggedIn) {
TestProperties.failAndPrint("Could not sign in as the test user.");
} else {
log.debug("Logged in! Updating Username now");
if (!Setter.updateUsername(applicationRoot, userName, newUsername)) {
TestProperties.failAndPrint("Could not update username.");
} else {
log.debug("Username Updated: " + newUsername + ", testing auth as new name");
String user[];
log.debug("Logging in with new username");
user = Getter.authUser(applicationRoot, newUsername, password);
if (user != null && !user[0].isEmpty()) {
log.debug("Pass: Could log in with new username");
} else {
TestProperties.failAndPrint("Could not sign in as the test user.");
}
}
}
}
@Test
public void testUpdatePassword() {
log.debug("Testing update Password");
String userName = new String("updatePassword");
String currentPass = new String();
String newPass = new String();
boolean loggedIn = false;
try {
currentPass = userName;
newPass = userName + userName;
log.debug("Logging in with default Pass");
loggedIn = GetterTest.verifyTestUser(applicationRoot, userName, currentPass);
} catch (SQLException e) {
newPass = userName;
currentPass = userName + userName;
log.debug("Could not log in with default pass: " + e.toString());
log.debug("Logging in with alternative pass: " + currentPass);
String[] auth = Getter.authUser(applicationRoot, userName, currentPass);
loggedIn = auth != null;
}
if (!loggedIn) {
log.debug("Could not sign in with any pass.");
fail("Could not Verify User");
} else {
log.debug("Logged in! Updating Password now");
if (!Setter.updatePassword(applicationRoot, userName, currentPass, newPass)) {
log.debug("Could not update password");
fail("Could not update password");
} else {
log.debug("Password Updated. Authenticating with new pass: " + newPass);
String[] auth = Getter.authUser(applicationRoot, userName, newPass);
if (auth == null) {
fail("Could Not Auth With New Pass");
}
log.debug("Also attempting auth with old pass: " + currentPass);
auth = Getter.authUser(applicationRoot, userName, currentPass);
if (auth != null) {
fail("Could auth with old password!");
}
}
}
}
@Test
public void testUpdatePasswordAdmin() {
log.debug("Testing update Password");
String userName = new String("adminPassUp");
String currentPass = new String();
String newPass = new String();
boolean loggedIn = false;
try {
currentPass = userName;
newPass = userName + userName;
log.debug("Logging in with default Pass");
loggedIn = GetterTest.verifyTestUser(applicationRoot, userName, currentPass);
} catch (SQLException e) {
newPass = userName;
currentPass = userName + userName;
log.debug("Could not log in with default pass: " + e.toString());
log.debug("Logging in with alternative pass: " + currentPass);
String[] auth = Getter.authUser(applicationRoot, userName, currentPass);
loggedIn = auth != null;
}
if (!loggedIn) {
log.debug("Could not sign in with any pass.");
fail("Could not Verify User");
} else {
log.debug("Logged in! Updating Password now");
if (!Setter.updatePasswordAdmin(applicationRoot, Getter.getUserIdFromName(applicationRoot, userName),
newPass)) {
log.debug("Could not update password");
fail("Could not update password");
} else {
log.debug("Password Updated. Authenticating with new pass: " + newPass);
String[] auth = Getter.authUser(applicationRoot, userName, newPass);
if (auth == null) {
fail("Could Not Auth With New Pass");
} else {
return; // PASS: Authenticated With New Pass
}
}
}
}
@Test
public void testUpdatePlayerClass() throws SQLException {
String userName = new String("UpdateClassUser");
String className = new String("Old Class");
String otherClassName = new String("Other Class");
String classId = new String();
String otherClassId = new String();
String newClass = new String();
log.debug("Getting class ids");
classId = GetterTest.findCreateClassId(className, applicationRoot);
otherClassId = GetterTest.findCreateClassId(otherClassName, applicationRoot);
log.debug("Verifying User");
if (!GetterTest.verifyTestUser(applicationRoot, userName, userName, classId)) {
fail("Could not verify user");
} else {
String userId = Getter.getUserIdFromName(applicationRoot, userName);
String currentClass = Getter.getUserClassFromName(applicationRoot, userName);
newClass = otherClassId;
log.debug("Current Class: " + currentClass);
log.debug("New Class: " + newClass);
if (!Setter.updatePlayerClass(applicationRoot, newClass, userId).equalsIgnoreCase(userName)) {
fail("Could not update player class");
} else {
String latestClass = Getter.getUserClassFromName(applicationRoot, userName);
if (latestClass.compareTo(newClass) != 0) {
log.debug("Latest Class: " + latestClass);
log.debug("New Class: " + newClass);
fail("Retrieved Class is not the Set Class");
} else {
return; // PASS
}
}
}
}
@Test
public void testUpdatePlayerClassToNull() throws SQLException {
String userName = new String("UpdateClassUserFromNull");
String className = new String("WutClass");
String classId = new String();
log.debug("Getting class ids");
try {
classId = GetterTest.findCreateClassId(className, applicationRoot);
} catch (SQLException e) {
TestProperties
.failAndPrint("Could not find or create class ID from name " + className + ": " + e.toString());
}
if (!GetterTest.verifyTestUser(applicationRoot, userName, userName, classId)) {
fail("Could not verify user");
} else {
String userId = Getter.getUserIdFromName(applicationRoot, userName);
String currentClass = Getter.getUserClassFromName(applicationRoot, userName);
log.debug("Current Class: " + currentClass);
if (!Setter.updatePlayerClassToNull(applicationRoot, userId).equalsIgnoreCase(userName)) {
fail("Could not update player class to null");
} else {
String latestClass = Getter.getUserClassFromName(applicationRoot, userName);
if (latestClass == null || latestClass.isEmpty()) {
return;// PASS
} else {
log.debug("Latest Class: " + latestClass);
fail("Retrieved Class is not null");
}
}
}
}
@Test
public void testUpdateUserRole() throws SQLException {
String userName = new String("WasUserNowAdmin");
String currentRole = new String();
String newRole = new String();
boolean testUserVerified = false;
try {
testUserVerified = GetterTest.verifyTestUser(applicationRoot, userName, userName);
} catch (SQLException e) {
TestProperties.failAndPrint("Could not create test user " + userName + ": " + e.toString());
}
assertTrue(testUserVerified);
Connection conn = Database.getCoreConnection(applicationRoot);
PreparedStatement ps = null;
try {
ps = conn.prepareStatement("SELECT userRole FROM users WHERE userName = ?");
} catch (SQLException e) {
TestProperties.failAndPrint("Could prepare DB statement : " + e.toString());
}
assertNotEquals(ps, null);
try {
ps.setString(1, userName);
} catch (SQLException e) {
TestProperties.failAndPrint("Could set statement username " + userName + ": " + e.toString());
}
ResultSet rs = null;
try {
rs = ps.executeQuery();
} catch (SQLException e) {
TestProperties.failAndPrint("Could execute DB Query : " + e.toString());
}
assertNotEquals(rs, null);
boolean couldAdvance = false;
try {
couldAdvance = rs.next();
} catch (SQLException e) {
TestProperties.failAndPrint("Could not advance in result set : " + e.toString());
}
assertTrue(couldAdvance);
if (couldAdvance) {
try {
currentRole = rs.getString(1);
} catch (SQLException e) {
TestProperties.failAndPrint("Could not get currentRole from result set: " + e.toString());
}
if (currentRole.equalsIgnoreCase("admin")) {
log.debug("User is currently an admin. Changing to player");
newRole = new String("player");
} else {
log.debug("User is currently a player. Changing to admin");
newRole = new String("admin");
}
} else {
fail("User not found in DB after it was created");
}
try {
rs.close();
} catch (SQLException e) {
TestProperties.failAndPrint("Could not close result set: " + e.toString());
}
try {
conn.close();
} catch (SQLException e) {
TestProperties.failAndPrint("Could not close db connection: " + e.toString());
}
String userId = Getter.getUserIdFromName(applicationRoot, userName);
if (!Setter.updateUserRole(applicationRoot, userId, newRole).equalsIgnoreCase(userName)) {
fail("Could not update user role from " + currentRole + " to " + newRole);
} else {
log.debug("Checking if change occurred");
conn = Database.getCoreConnection(applicationRoot);
try {
ps = conn.prepareStatement("SELECT userRole FROM users WHERE userName = ?");
} catch (SQLException e) {
TestProperties.failAndPrint("Could not prepare DB statement: " + e.toString());
}
try {
ps.setString(1, userName);
} catch (SQLException e) {
TestProperties.failAndPrint("Could not set string in DB statement: " + e.toString());
}
try {
rs = ps.executeQuery();
} catch (SQLException e) {
TestProperties.failAndPrint("Could not execute DB query: " + e.toString());
}
couldAdvance = false;
try {
couldAdvance = rs.next();
} catch (SQLException e) {
TestProperties.failAndPrint("Could not advance in result set: " + e.toString());
}
assertTrue(couldAdvance);
String returnedRole = "";
try {
returnedRole = rs.getString(1);
} catch (SQLException e) {
TestProperties.failAndPrint("Could not get returned string from db result: " + e.toString());
}
assertNotEquals(returnedRole, "");
if (!newRole.equalsIgnoreCase(returnedRole)) {
fail("User Role was not updated in DB");
}
try {
rs.close();
conn.close();
} catch (SQLException e) {
TestProperties.failAndPrint("Could not close DB connection: " + e.toString());
}
}
}
@Test
public void testMutipleClassMedals() {
String moduleId = "853c98bd070fe0d31f1ec8b4f2ada9d7fd1784c5"; // CSRF7
String userName = new String("classUserOne");
String otherUserName = new String("difClassUserTwo");
String classOne = "";
try {
classOne = TestProperties.findCreateClassId(log, "classA2737", applicationRoot);
} catch (SQLException e) {
TestProperties.failAndPrint("Could not create class classA2737: " + e.toString());
}
assertNotEquals(classOne, "");
String classTwo = "";
try {
classTwo = TestProperties.findCreateClassId(log, "classB2737", applicationRoot);
} catch (SQLException e) {
TestProperties.failAndPrint("Could not create class classB2737: " + e.toString());
}
assertNotEquals(classTwo, "");
log.debug("classOne: " + classOne);
log.debug("classTwo: " + classTwo);
boolean firstTestUserVerified = false;
try {
firstTestUserVerified = TestProperties.verifyTestUser(log, applicationRoot, userName, userName, classOne);
} catch (SQLException e) {
TestProperties
.failAndPrint("Unhandled exception when verifying test user " + userName + ": " + e.toString());
}
assertTrue(firstTestUserVerified);
boolean secondTestUserVerified = false;
try {
secondTestUserVerified = TestProperties.verifyTestUser(log, applicationRoot, otherUserName, otherUserName,
classTwo);
} catch (SQLException e) {
TestProperties.failAndPrint(
"Unhandled exception when verifying test user " + otherUserName + ": " + e.toString());
}
assertTrue(secondTestUserVerified);
String userId = Getter.getUserIdFromName(applicationRoot, userName);
String otherUserId = Getter.getUserIdFromName(applicationRoot, otherUserName);
boolean modulesOpened = Setter.openAllModules(applicationRoot, false);
if (!modulesOpened) {
TestProperties.failAndPrint("Could not mark all modules as open");
}
// Simulate user Opening Level
if (Getter.getModuleAddress(applicationRoot, moduleId, userId).isEmpty()
|| Getter.getModuleAddress(applicationRoot, moduleId, otherUserId).isEmpty()) {
fail("Could not Simulate Opening Level for Users");
} else {
String markLevelCompleteTest = Setter.updatePlayerResult(applicationRoot, moduleId, userId,
"Feedback is Disabled", 1, 1, 1);
if (markLevelCompleteTest != null) {
String markLevelCompleteTestOtherUser = Setter.updatePlayerResult(applicationRoot, moduleId,
otherUserId, "Feedback is Disabled", 1, 1, 1);
// Do both Users have a gold medal?
if (markLevelCompleteTestOtherUser != null) {
ScoreboardStatus.setScoreboardOpen();
String scoreboardData = Getter.getJsonScore(applicationRoot, "");
if (scoreboardData.isEmpty()) {
fail("Could not detect user in scoreboard before bad submission test");
} else {
JSONArray scoreboardJson = (JSONArray) JSONValue.parse(scoreboardData);
// Loop through array to find Our first user
boolean goldMedal = false;
for (int i = 0; i < scoreboardJson.size(); i++) {
// log.debug("Looping through Array " + i);
JSONObject scoreRowJson = (JSONObject) scoreboardJson.get(i);
if (scoreRowJson.get("username").toString().compareTo(userName) == 0) {
log.debug("Found user with goldMedalCount: " + scoreRowJson.get("goldMedalCount"));
goldMedal = Integer.parseInt(scoreRowJson.get("goldMedalCount").toString()) > 0;
break;
}
}
if (!goldMedal) {
TestProperties.failAndPrint("User " + userName
+ " should have a gold medal and does not. They were first in their class to complete module "
+ moduleId);
} else {
// Search for the other user
goldMedal = false;
for (int i = 0; i < scoreboardJson.size(); i++) {
// log.debug("Looping through Array " + i);
JSONObject scoreRowJson = (JSONObject) scoreboardJson.get(i);
if (scoreRowJson.get("username").toString().compareTo(otherUserName) == 0) {
log.debug("Found user with goldMedalCount: " + scoreRowJson.get("goldMedalCount"));
goldMedal = Integer.parseInt(scoreRowJson.get("goldMedalCount").toString()) > 0;
break;
}
}
if (!goldMedal) {
TestProperties.failAndPrint("User " + otherUserName
+ " should have a gold medal and does not. They were first in their class to complete challenge "
+ moduleId);
}
}
}
} else {
fail("Could not Mark First level as complete for Second User");
}
} else {
fail("Could not Mark First level as complete");
}
}
}
@Test
public void testUserDelete() {
String testUsername = "testuserdelete";
String testPassword = "testuserpassword";
String testuserId = Getter.getUserIdFromName(applicationRoot, testUsername);
if (testuserId == null || testuserId.isEmpty()) {
boolean userCreated = false;
try {
userCreated = Setter.userCreate(applicationRoot, null, testUsername, testUsername, "player",
testUsername + "@test.com", false);
} catch (SQLException e) {
TestProperties.failAndPrint("Could not create test user " + testUsername + " with password "
+ testPassword + ": " + e.toString());
}
assert (userCreated);
}
testuserId = Getter.getUserIdFromName(applicationRoot, testUsername);
assert (testuserId != null && !testuserId.isEmpty());
boolean userDeleted = false;
try {
userDeleted = Setter.userDelete(applicationRoot, testuserId);
} catch (SQLException e) {