-
Notifications
You must be signed in to change notification settings - Fork 505
Expand file tree
/
Copy pathLevelsIT.java
More file actions
282 lines (264 loc) · 10.9 KB
/
LevelsIT.java
File metadata and controls
282 lines (264 loc) · 10.9 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
package servlets.api;
import static org.junit.jupiter.api.Assertions.fail;
import dbProcs.Setter;
import java.io.IOException;
import java.sql.SQLException;
import jakarta.servlet.ServletException;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import org.json.JSONArray;
import org.json.JSONObject;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.springframework.mock.web.MockHttpServletRequest;
import org.springframework.mock.web.MockHttpServletResponse;
import org.springframework.mock.web.MockServletConfig;
import testUtils.TestProperties;
import utils.ModulePlan;
public class LevelsIT {
private static String lang = "en_GB";
private static final Logger log = LogManager.getLogger(LevelsIT.class);
private static String applicationRoot = new String();
private MockHttpServletRequest request;
private MockHttpServletResponse response;
/** Creates DB or Restores DB to Factory Defaults before running tests */
@BeforeAll
public static void resetDatabase() throws IOException, SQLException {
TestProperties.setTestPropertiesFileDirectory(log);
TestProperties.createMysqlResource();
TestProperties.ensureSchemaReady(log);
TestProperties.reseedTestData();
}
@BeforeEach
public void setup() {
log.debug("Setting Up Blank Request and Response");
request = new MockHttpServletRequest();
response = new MockHttpServletResponse();
// Open All modules
if (!Setter.openAllModules(applicationRoot, false)) {
fail("Could not Mark All Modules As Open");
}
// Default to CTF Mode
ModulePlan.setIncrementalFloor();
if (!ModulePlan.isIncrementalFloor()) {
String message = "Could not enable CTF Mode";
log.fatal(message);
fail(message);
}
}
/**
* Method to Simulate the interaction with the getModule servlet.
*
* @param moduleId The ID of the Module to Search For
* @param csrfToken The CSRF Token of the User
* @return The Content of the Response (Which is supposed to be the location of the module)
* @throws ServletException
* @throws IOException
* @throws Exception
*/
public String getModuleDoGet(String csrfToken) throws ServletException, IOException {
int expectedResponseCode = 302;
String servletName = "Levels";
log.debug("Creating " + servletName + " Servlet Instance");
Levels servlet = new Levels();
servlet.init(new MockServletConfig(servletName));
// Adding Correct CSRF Token (Token Submitted)
request.addParameter("csrfToken", csrfToken);
log.debug("Running doGet");
servlet.doGet(request, response);
if (response.getStatus() != expectedResponseCode) {
fail(
"GetModule Servlet Returned "
+ response.getStatus()
+ " Code. "
+ expectedResponseCode
+ " Expected");
} else {
log.debug("302 OK Detected");
log.debug(
"Servlet Successful, returning location retrieved: " + response.getContentAsString());
return (response.getContentAsString());
}
return null;
}
@Test
public void testCtfModeNoLevelsComplete() throws SQLException, ServletException, IOException {
String moduleId =
new String("0dbea4cb5811fff0527184f99bd5034ca9286f11"); // Insecure Direct Object References
// Module Id (First Challenge)
String userName = "ctfModeNoLevels";
// Verify User Exists in DB
TestProperties.verifyTestUser(log, applicationRoot, userName, userName);
// Sign in as Normal User
log.debug("Signing in as " + userName + " Through LoginServlet");
TestProperties.loginDoPost(log, request, response, userName, userName, null, lang);
log.debug("Login Servlet Complete, Getting CSRF Token");
if (response.getCookie("token") == null) {
fail("No CSRF Token Was Returned from Login Servlet");
}
String csrfToken = response.getCookie("token").getValue();
if (csrfToken.isEmpty()) {
String message = new String("No CSRF token returned from Login Servlet");
log.fatal(message);
fail(message);
} else {
// Add Cookies from Response to outgoing request
request.setCookies(response.getCookies());
String jsonString = getModuleDoGet(csrfToken);
JSONArray theResponse = new JSONArray(jsonString);
log.debug("Response Returned, checking mode");
if (!theResponse.getJSONObject(0).get("levelMode").toString().equalsIgnoreCase("ctf")) {
String message = "CTF Mode not Detected in JSON Response";
log.debug(message);
fail(message);
} else {
log.debug("Extracting Modules from JSON response");
// Is First Object Marked as Open, and is it the Module We Expect?
JSONArray theModules = theResponse.getJSONObject(1).getJSONArray("modules");
JSONObject module = theModules.getJSONObject(0);
log.debug("Inspecting First Level: " + module);
if (!module.get("moduleId").toString().equalsIgnoreCase(moduleId)) {
String message =
"Received " + module.get("moduleId") + " as first module instead of " + moduleId;
log.debug(message);
fail(message);
} else if (!module.getBoolean("moduleOpen")) {
String message =
"Module "
+ module.get("moduleId")
+ " returned false for moduleOpen Status when it should be true";
log.debug(message);
fail(message);
} else if (module.getBoolean("moduleCompleted")) {
String message =
"Module "
+ module.get("moduleId")
+ " is marked as completed when no module should be marked as complete for this"
+ " user";
log.debug(message);
fail(message);
} else {
// First Level is Ok
module = theModules.getJSONObject(1);
log.debug("Inspecting Second Level: " + module);
if (module.getBoolean("moduleOpen")) {
String message =
"Module "
+ module.get("moduleId")
+ " returned true for moduleOpen Status when it should be false";
log.debug(message);
fail(message);
} else if (module.getBoolean("moduleCompleted")) {
String message =
"Module "
+ module.get("moduleId")
+ " is marked as completed when no module should be marked as complete for this"
+ " user";
log.debug(message);
fail(message);
} else {
log.debug("Test Complete");
}
}
}
}
}
@Test
public void testCtfModeLevelComplete() throws SQLException, ServletException, IOException {
String moduleId =
new String("0dbea4cb5811fff0527184f99bd5034ca9286f11"); // Insecure Direct Object References
// Module Id (First Challenge)
String userName = "ctfModeWithLevel";
// Verify User Exists in DB
TestProperties.verifyTestUser(log, applicationRoot, userName, userName);
TestProperties.completeModuleForUser(log, userName, userName, moduleId, "anything", "");
// Sign in as Normal User
log.debug("Signing in as " + userName + " Through LoginServlet");
TestProperties.loginDoPost(log, request, response, userName, userName, null, lang);
log.debug("Login Servlet Complete, Getting CSRF Token");
if (response.getCookie("token") == null) {
fail("No CSRF Token Was Returned from Login Servlet");
}
String csrfToken = response.getCookie("token").getValue();
if (csrfToken.isEmpty()) {
String message = new String("No CSRF token returned from Login Servlet");
log.fatal(message);
fail(message);
} else {
// Add Cookies from Response to outgoing request
request.setCookies(response.getCookies());
String jsonString = getModuleDoGet(csrfToken);
JSONArray theResponse = new JSONArray(jsonString);
log.debug("Response Returned, checking mode");
if (!theResponse.getJSONObject(0).get("levelMode").toString().equalsIgnoreCase("ctf")) {
String message = "CTF Mode not Detected in JSON Response";
log.debug(message);
fail(message);
} else {
log.debug("Extracting Modules from JSON response");
// Is First Object Marked as Open, and is it the Module We Expect?
JSONArray theModules = theResponse.getJSONObject(1).getJSONArray("modules");
JSONObject module = theModules.getJSONObject(0);
log.debug("Inspecting First Level: " + module);
if (!module.get("moduleId").toString().equalsIgnoreCase(moduleId)) {
String message =
"Received " + module.get("moduleId") + " as first module instead of " + moduleId;
log.debug(message);
fail(message);
} else if (!module.getBoolean("moduleOpen")) {
String message =
"Module "
+ module.get("moduleId")
+ " returned false for moduleOpen Status when it should be true";
log.debug(message);
fail(message);
} else if (!module.getBoolean("moduleCompleted")) {
String message =
"Module "
+ module.get("moduleId")
+ " is marked as uncompleted when this module should be marked as complete for"
+ " this user";
log.debug(message);
fail(message);
} else if (!(module.getInt("scoredPoints") == 15)) // Max points for first to complete first
// challenge
{
String message =
"Expected 15 Points to be earned from completing level. Got "
+ module.getInt("scoredPoints");
log.debug(message);
fail(message);
} else if (!module.getString("medalEarned").equalsIgnoreCase("gold")) {
String message =
"Expected gold medal to be earned from completing level. Got "
+ module.getInt("medalEarned");
log.debug(message);
fail(message);
} else {
// First Level is Ok
module = theModules.getJSONObject(1);
log.debug("Inspecting Second Level: " + module);
if (!module.getBoolean("moduleOpen")) {
String message =
"Module "
+ module.get("moduleId")
+ " returned false for moduleOpen Status when it should be true";
log.debug(message);
fail(message);
} else if (module.getBoolean("moduleCompleted")) {
String message =
"Module "
+ module.get("moduleId")
+ " is marked as completed when it should not be marked as complete for this"
+ " user";
log.debug(message);
fail(message);
} else {
log.debug("Test Complete");
}
}
}
}
}
}