forked from hcientist/OnlinePythonTutor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
edu-python-questions.js
416 lines (307 loc) · 13.1 KB
/
edu-python-questions.js
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
/*
Online Python Tutor
Copyright (C) 2010-2011 Philip J. Guo (philip@pgbovine.net)
https://github.com/pgbovine/OnlinePythonTutor/
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
// UI for online problem sets
// Pre-req: edu-python.js and jquery.ba-bbq.min.js should be imported BEFORE this file
// parsed form of a questions file from questions/
var curQuestion = null;
// matching arrays of test code and 'expected outputs' from those tests
var tests = null;
var expects = null;
var curTestIndex = -1;
// the results returned by executing the respective 'tests' and 'expects'
// Python code. See resetTestResults for invariants.
var testResults = null;
// Pre: 'tests' and 'expects' are non-null
function resetTestResults() {
testResults = [];
$.each(tests, function(i) {
testResults.push(null);
});
assert(testResults.length > 0);
assert(testResults.length == tests.length);
}
$(document).ready(function() {
eduPythonCommonInit(); // must call this first!
$("#actualCodeInput").tabby(); // recognize TAB and SHIFT-TAB
$("#testCodeInput").tabby(); // recognize TAB and SHIFT-TAB
// be friendly to the browser's forward and back buttons
// thanks to http://benalman.com/projects/jquery-bbq-plugin/
$(window).bind("hashchange", function(e) {
appMode = $.bbq.getState("mode"); // assign this to the GLOBAL appMode
// default mode is 'edit'
if (appMode == undefined) {
appMode = 'edit';
}
// if there's no curTrace, then default to edit mode since there's
// nothing to visualize or grade:
if (!curTrace) {
appMode = 'edit';
$.bbq.pushState({ mode: 'edit' });
}
if (appMode == 'edit') {
$("#pyInputPane").show();
$("#pyOutputPane").hide();
$("#pyGradingPane").hide();
$("#HintStatement").show();
$("#SolutionStatement").show();
}
else if (appMode == 'visualize') {
$("#pyInputPane").hide();
$("#pyOutputPane").show();
$("#pyGradingPane").hide();
$("#HintStatement").show();
$("#SolutionStatement").show();
$('#submitBtn').html("Submit answer");
$('#submitBtn').attr('disabled', false);
$('#executeBtn').html("Visualize execution");
$('#executeBtn').attr('disabled', false);
// do this AFTER making #pyOutputPane visible, or else
// jsPlumb connectors won't render properly
processTrace(curTrace /* kinda dumb and redundant */, true);
// don't let the user submit answer when there's an error
var hasError = false;
for (var i = 0; i < curTrace.length; i++) {
var curEntry = curTrace[i];
if (curEntry.event == 'exception' ||
curEntry.event == 'uncaught_exception') {
hasError = true;
break;
}
}
$('#submitBtn').attr('disabled', hasError);
}
else if (appMode == 'grade') {
$("#gradeMatrix #gradeMatrixTbody").empty(); // clear it!!!
$("#pyInputPane").hide();
$("#pyOutputPane").hide();
$("#pyGradingPane").show();
$("#HintStatement").hide();
$("#SolutionStatement").hide();
gradeSubmission();
}
});
// From: http://benalman.com/projects/jquery-bbq-plugin/
// Since the event is only triggered when the hash changes, we need
// to trigger the event now, to handle the hash the page may have
// loaded with.
$(window).trigger( "hashchange" );
// load the questions file specified by the query string
var questionsFilename = location.search.substring(1);
$.get("cgi-bin/load_question.py",
{question_file : questionsFilename},
function(questionsDat) {
finishQuestionsInit(questionsDat);
},
"json");
});
// concatenate solution code and test code:
function concatSolnTestCode(solnCode, testCode) {
// use rtrim to get rid of trailing whitespace and newlines
return solnCode.rtrim() + "\n\n# Everything below here is test code\n" + testCode;
}
function enterEditMode() {
$.bbq.pushState({ mode: 'edit' });
}
function enterVisualizeMode(traceData) {
curTrace = traceData; // first assign it to the global curTrace, then
// let jQuery BBQ take care of the rest
$.bbq.pushState({ mode: 'visualize' });
}
function enterGradingMode() {
$.bbq.pushState({ mode: 'grade' });
}
// returns a closure!
function genTestResultHandler(idx) {
function ret(res) {
assert(testResults[idx] === null);
testResults[idx] = res;
// if ALL results have been successfully delivered, then call
// enterGradingMode() (remember that each result comes in
// asynchronously and probably out-of-order)
for (var i = 0; i < testResults.length; i++) {
if (testResults[i] === null) {
return;
}
}
enterGradingMode();
}
return ret;
}
function genDebugLinkHandler(failingTestIndex) {
function ret() {
// Switch back to visualize mode, populating the "testCodeInput"
// field with the failing test case, and RE-RUN the back-end to
// visualize execution (this time with proper object IDs)
curTestIndex = failingTestIndex;
$("#testCodeInput").val(tests[curTestIndex]);
// prevent multiple-clicking ...
$(this).html("One sec ...");
$(this).attr('disabled', true);
$("#executeBtn").trigger('click'); // emulate an execute button press!
}
return ret;
}
function finishQuestionsInit(questionsDat) {
curQuestion = questionsDat; // initialize global
$("#ProblemName").html(questionsDat.name);
$("#ProblemStatement").html(questionsDat.question);
$("#showHintHref").click(function() {
$("#HintStatement").html("<b>Hint</b>: " + questionsDat.hint);
return false; // don't reload the page
});
$("#showSolutionHref").click(function() {
$("#SolutionStatement").html("<b>Solution</b>: " + questionsDat.solution);
return false; // don't reload the page
});
$("#actualCodeInput").val(questionsDat.skeleton);
// set some globals
tests = questionsDat.tests;
expects = questionsDat.expects;
curTestIndex = 0;
resetTestResults();
$("#testCodeInput").val(tests[curTestIndex]);
$("#executeBtn").attr('disabled', false);
$("#executeBtn").click(function() {
if (curQuestion.max_line_delta) {
// if the question has a 'max_line_delta' field, then check to see
// if > curQuestion.max_line_delta lines have changed from
// curQuestion.skeleton, and reject the attempt if that's the case
var numChangedLines = 0;
// split on newlines to do a line-level diff
// (rtrim both strings to discount the effect of trailing
// whitespace and newlines)
var diffResults = diff($("#actualCodeInput").val().rtrim().split(/\n/), questionsDat.skeleton.rtrim().split(/\n/));
//console.log(diffResults);
$.each(diffResults, function(i, e) {
if (e.file1 && e.file2) {
// i THINK this is the right way to calculate the number of
// changed lines ... taking the MAXIMUM of the delta lengths
// of e.file1 and e.file2:
numChangedLines += Math.max(e.file1.length, e.file2.length);
}
});
if (numChangedLines > curQuestion.max_line_delta) {
alert("Error: You have changed " + numChangedLines + " lines of code, but you are only allowed to change " + curQuestion.max_line_delta + " lines to solve this problem.");
return;
}
}
$('#executeBtn').html("Please wait ... processing your code");
$('#executeBtn').attr('disabled', true);
$("#pyOutputPane").hide();
var submittedCode = concatSolnTestCode($("#actualCodeInput").val(), $("#testCodeInput").val());
var postParams = {user_script : submittedCode};
if (questionsDat.max_instructions) {
postParams.max_instructions = questionsDat.max_instructions;
}
$.post("cgi-bin/web_exec.py",
postParams,
function(traceData) {
renderPyCodeOutput(submittedCode);
enterVisualizeMode(traceData);
},
"json");
});
$("#editBtn").click(function() {
enterEditMode();
});
$("#submitBtn").click(function() {
$('#submitBtn').html("Please wait ... submitting ...");
$('#submitBtn').attr('disabled', true);
resetTestResults(); // prepare for a new fresh set of test results
// remember that these results come in asynchronously and probably
// out-of-order, so code very carefully here!!!
for (var i = 0; i < tests.length; i++) {
var submittedCode = concatSolnTestCode($("#actualCodeInput").val(), tests[i]);
var postParams = {user_script : submittedCode, expect_script : expects[i]};
if (questionsDat.max_instructions) {
postParams.max_instructions = questionsDat.max_instructions;
}
$.post("cgi-bin/web_run_test.py",
postParams,
genTestResultHandler(i),
"json");
}
});
}
// should be called after ALL elements in testsTraces and expectsTraces
// have been populated by their respective AJAX POST calls
function gradeSubmission() {
$("#submittedCodePRE").html(htmlspecialchars($("#actualCodeInput").val()));
for (var i = 0; i < tests.length; i++) {
var res = testResults[i];
$("#gradeMatrix tbody#gradeMatrixTbody").append('<tr class="gradeMatrixRow"></tr>');
$("#gradeMatrix tr.gradeMatrixRow:last").append('<td class="testInputCell"></td>');
// input_val could be null if there's a REALLY bad error :(
if (res.input_globals) {
var curCell = $("#gradeMatrix tr.gradeMatrixRow:last td.testInputCell:last");
curCell.append('<table class="testInputTable"></table>');
// print out all non-function input global variables in a table
for (k in res.input_globals) {
var v = res.input_globals[k];
if (isPrimitiveType(v) || v[0] != 'function') {
curCell.find('table.testInputTable').append('<tr class="testInputVarRow"></tr>');
curCell.find('table.testInputTable tr.testInputVarRow:last').append('<td class="testInputVarnameCell">' + k + ':</td>');
curCell.find('table.testInputTable tr.testInputVarRow:last').append('<td class="testInputValCell"></td>');
renderData(v, curCell.find('table.testInputTable td.testInputValCell:last'), true /* ignoreIDs */);
}
}
}
if (res.status == 'error') {
$("#gradeMatrix tr.gradeMatrixRow:last").append('<td class="testOutputCell"><span style="color: ' + darkRed + '">' + res.error_msg + '</span></td>');
}
else {
assert(res.status == 'ok');
$("#gradeMatrix tr.gradeMatrixRow:last").append('<td class="testOutputCell"></td>');
var curCell = $("#gradeMatrix tr.gradeMatrixRow:last td.testOutputCell:last");
curCell.append('<table><tr class="testOutputVarRow"></tr></table>');
curCell.find('tr.testOutputVarRow:last').append('<td class="testOutputVarnameCell">' + res.output_var_to_compare + ':</td>');
curCell.find('tr.testOutputVarRow:last').append('<td class="testOutputValCell"></td>');
renderData(res.test_val, curCell.find('td.testOutputValCell:last'), true /* ignoreIDs */);
}
if (res.passed_test) {
var happyFaceImg = '<img style="vertical-align: middle;" src="yellow-happy-face.png"/>';
$("#gradeMatrix tr.gradeMatrixRow:last").append('<td class="statusCell">' + happyFaceImg + '</td>');
// add an empty 'expected' cell
$("#gradeMatrix tr.gradeMatrixRow:last").append('<td class="expectedCell"></td>');
}
else {
var sadFaceImg = '<img style="vertical-align: middle; margin-right: 8px;" src="red-sad-face.jpg"/>';
var debugBtnID = 'debug_test_' + i;
var debugMeBtn = '<button id="' + debugBtnID + '" class="debugBtn" type="button">Debug me</button>';
var expectedTd = '<td class="expectedCell">Expected: </td>';
$("#gradeMatrix tr.gradeMatrixRow:last").append('<td class="statusCell">' + sadFaceImg + debugMeBtn + '</td>' + expectedTd);
renderData(res.expect_val,
$("#gradeMatrix tr.gradeMatrixRow:last td.expectedCell:last"),
true /* ignoreIDs */);
$('#' + debugBtnID).unbind(); // unbind it just to be paranoid
$('#' + debugBtnID).click(genDebugLinkHandler(i));
}
}
var numPassed = 0;
for (var i = 0; i < tests.length; i++) {
var res = testResults[i];
if (res.passed_test) {
numPassed++;
}
}
if (numPassed < tests.length) {
$("#gradeSummary").html('Your submitted answer passed ' + numPassed + ' out of ' + tests.length + ' tests. Try to debug the failed tests!');
}
else {
assert(numPassed == tests.length);
$("#gradeSummary").html('Congrats, your submitted answer passed all ' + tests.length + ' tests!');
}
}