forked from maths/moodle-qtype_stack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
questiontestrun.php
505 lines (436 loc) · 19.9 KB
/
questiontestrun.php
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
<?php
// This file is part of Stack - http://stack.maths.ed.ac.uk/
//
// Stack 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.
//
// Stack 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 STACK. If not, see <http://www.gnu.org/licenses/>.
/**
* This script lets the user test a question using any question tests defined
* in the database. It also displays some of the internal workins of questions.
*
* Users with moodle/question:view capability can use this script to view the
* results of the tests.
*
* Users with moodle/question:edit can edit the test cases and deployed version,
* as well as just run them.
*
* The script takes one parameter id which is a questionid as a parameter.
* In can optionally also take a random seed.
*
* @copyright 2012 the Open University
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
define('NO_OUTPUT_BUFFERING', true);
require_once(__DIR__.'/../../../config.php');
require_once($CFG->libdir . '/questionlib.php');
require_once(__DIR__ . '/locallib.php');
require_once(__DIR__ . '/stack/questiontest.php');
require_once(__DIR__ . '/stack/bulktester.class.php');
// Get the parameters from the URL.
$questionid = required_param('questionid', PARAM_INT);
// Load the necessary data.
$questiondata = question_bank::load_question_data($questionid);
if (!$questiondata) {
print_error('questiondoesnotexist', 'question');
}
$question = question_bank::load_question($questionid);
// Process any other URL parameters, and do require_login.
list($context, $seed, $urlparams) = qtype_stack_setup_question_test_page($question);
// Check permissions.
question_require_capability_on($questiondata, 'view');
$canedit = question_has_capability_on($questiondata, 'edit');
// Initialise $PAGE.
$PAGE->set_url('/question/type/stack/questiontestrun.php', $urlparams);
$title = stack_string('testingquestion', format_string($question->name));
$PAGE->set_title($title);
$PAGE->set_heading($title);
$PAGE->set_pagelayout('popup');
require_login();
// Create some other useful links.
$qbankparams = $urlparams;
unset($qbankparams['questionid']);
unset($qbankparams['seed']);
$qbankparams['qperpage'] = 1000; // Should match MAXIMUM_QUESTIONS_PER_PAGE but that constant is not easily accessible.
$qbankparams['category'] = $questiondata->category . ',' . $question->contextid;
$qbankparams['lastchanged'] = $question->id;
if ($questiondata->hidden) {
$qbankparams['showhidden'] = 1;
}
$questionbanklink = new moodle_url('/question/edit.php', $qbankparams);
$exportquestionlink = new moodle_url('/question/type/stack/exportone.php', $urlparams);
$exportquestionlink->param('sesskey', sesskey());
// Create the question usage we will use.
$quba = question_engine::make_questions_usage_by_activity('qtype_stack', $context);
$quba->set_preferred_behaviour('adaptive');
if (!is_null($seed)) {
// This is a bit of a hack to force the question to use a particular seed,
// even if it is not one of the deployed seeds.
$question->seed = $seed;
}
$slot = $quba->add_question($question, $question->defaultmark);
$quba->start_question($slot);
// Prepare the display options.
$options = new question_display_options();
$options->readonly = true;
$options->flags = question_display_options::HIDDEN;
$options->suppressruntestslink = true;
// Store a rendered version of the blank question here.
// Runtime errors generated by test cases might change rendering later.
$renderquestion = $quba->render_question($slot, $options);
// Start output.
echo $OUTPUT->header();
$renderer = $PAGE->get_renderer('qtype_stack');
flush();
// Load the list of test cases.
$testscases = question_bank::get_qtype('stack')->load_question_tests($question->id);
$deployfeedback = optional_param('deployfeedback', null, PARAM_TEXT);
if (!is_null($deployfeedback)) {
echo html_writer::tag('p', $deployfeedback, array('class' => 'overallresult pass'));
}
$deployfeedbackerr = optional_param('deployfeedbackerr', null, PARAM_TEXT);
if (!is_null($deployfeedbackerr)) {
echo html_writer::tag('p', $deployfeedbackerr, array('class' => 'overallresult fail'));
}
$upgradeerrors = $question->validate_against_stackversion();
if ($upgradeerrors != '') {
echo html_writer::tag('p', $upgradeerrors, array('class' => 'fail'));
}
// Display the list of deployed variants, with UI to edit the list.
if ($question->deployedseeds) {
echo $OUTPUT->heading(stack_string('deployedvariantsn', count($question->deployedseeds)), 3);
} else {
echo $OUTPUT->heading(stack_string('deployedvariants'), 3);
}
$variantmatched = false;
$variantdeployed = false;
if (!$question->has_random_variants()) {
echo html_writer::tag('p', stack_string('questiondoesnotuserandomisation') .
' ' . $OUTPUT->action_icon(question_preview_url($questionid, null, null, null, null, $context),
new pix_icon('t/preview', get_string('preview'))));
$variantmatched = true;
}
if (empty($question->deployedseeds)) {
if ($question->has_random_variants()) {
echo html_writer::tag('p', stack_string('questionnotdeployedyet').' '.
$OUTPUT->action_icon(question_preview_url($questionid, null, null, null, null, $context),
new pix_icon('t/preview', get_string('preview'))));
}
} else {
$notestable = new html_table();
$notestable->head = array(
stack_string('variant'),
stack_string('questionnote'),
);
$prtstable->attributes['class'] = 'generaltable stacktestsuite';
$a = ['total' => count($question->deployedseeds), 'done' => 0];
$progressevery = (int) min(max(1, count($question->deployedseeds) / 500), 100);
$pbar = new progress_bar('testingquestionvariants', 500, true);
foreach ($question->deployedseeds as $key => $deployedseed) {
if (!is_null($question->seed) && $question->seed == $deployedseed) {
$choice = html_writer::tag('b', $deployedseed,
array('title' => stack_string('currentlyselectedvariant')));;
$variantmatched = true;
} else {
$choice = html_writer::link(new moodle_url($PAGE->url, array('seed' => $deployedseed)),
$deployedseed, array('title' => stack_string('testthisvariant')));
}
$choice .= ' ' . $OUTPUT->action_icon(question_preview_url($questionid, null, null, null, $key + 1, $context),
new pix_icon('t/preview', get_string('preview')));
if ($canedit) {
$choice .= ' ' . $OUTPUT->action_icon(new moodle_url('/question/type/stack/deploy.php',
$urlparams + array('undeploy' => $deployedseed, 'sesskey' => sesskey())),
new pix_icon('t/delete', stack_string('undeploy')));
}
$qn = question_bank::load_question($questionid);
$bulktestresults = array(false, '');
if (optional_param('testall', null, PARAM_INT)) {
// Bulk test all versions.
$bulktester = new stack_bulk_tester();
$bulktestresults = $bulktester->qtype_stack_test_question($qn, $testscases, $deployedseed, true);
}
// Print out question notes of all deployed versions.
$qn->seed = (int) $deployedseed;
$cn = $qn->get_context();
$qunote = question_engine::make_questions_usage_by_activity('qtype_stack', $cn);
$qunote->set_preferred_behaviour('adaptive');
$slotnote = $qunote->add_question($qn, $qn->defaultmark);
$qunote->start_question($slotnote);
// Check if the question note has already been deployed.
if ($qn->get_question_summary() == $question->get_question_summary()) {
$variantdeployed = true;
}
$icon = '';
if ($bulktestresults[0]) {
$icon = $OUTPUT->pix_icon('t/check', stack_string('questiontestspass'));
}
$notestable->data[] = array(
$choice,
stack_ouput_castext($qn->get_question_summary()),
$icon,
$bulktestresults[1]
);
$a['done'] += 1;
if ($a['done'] % $progressevery == 0 || $a['done'] == $a['total']) {
core_php_time_limit::raise(60);
$pbar->update($a['done'], $a['total'], get_string('testingquestionvariants', 'qtype_stack', $a));
}
}
echo html_writer::table($notestable);
}
flush();
if (!$variantmatched) {
if ($canedit) {
$deploybutton = ' ' . $OUTPUT->single_button(new moodle_url('/question/type/stack/deploy.php',
$urlparams + array('deploy' => $question->seed)),
stack_string('deploy'));
if ($variantdeployed) {
$deploybutton = stack_string('alreadydeployed');
}
} else {
$deploybutton = '';
}
echo html_writer::tag('div', stack_string('showingundeployedvariant',
html_writer::tag('b', $question->seed)) . $deploybutton,
array('class' => 'undeployedvariant'));
}
// Add in some logic for a case where the author removes randomization after variants have been deployed.
if ($question->has_random_variants()) {
echo html_writer::start_tag('p');
echo html_writer::start_tag('form', array('method' => 'get', 'class' => 'switchtovariant',
'action' => new moodle_url('/question/type/stack/questiontestrun.php')));
echo html_writer::input_hidden_params($PAGE->url, array('seed'));
echo stack_string('switchtovariant');
echo ' ' . html_writer::empty_tag('input', array('type' => 'text', 'size' => 7,
'id' => 'seedfield', 'name' => 'seed', 'value' => mt_rand()));
echo ' ' . html_writer::empty_tag('input', array('type' => 'submit', 'value' => get_string('go')));
echo html_writer::end_tag('form');
if ($canedit) {
// Run tests on all the variants.
echo html_writer::start_tag('form', array('method' => 'get', 'class' => 'deploymany',
'action' => new moodle_url('/question/type/stack/questiontestrun.php', $urlparams)));
echo stack_string('deploytestall');
echo html_writer::input_hidden_params(new moodle_url($PAGE->url, array('sesskey' => sesskey(),
'testall' => '1')));
echo ' ' . html_writer::empty_tag('input', array('type' => 'submit', 'value' => get_string('go')));
echo html_writer::end_tag('form');
// Deploy many variants.
echo html_writer::start_tag('form', array('method' => 'get', 'class' => 'deploymany',
'action' => new moodle_url('/question/type/stack/deploy.php', $urlparams)));
echo html_writer::input_hidden_params(new moodle_url($PAGE->url, array('sesskey' => sesskey())), array('seed'));
echo stack_string('deploymany');
echo ' ' . html_writer::empty_tag('input', array('type' => 'text', 'size' => 4,
'id' => 'deploymanyfield', 'name' => 'deploymany', 'value' => ''));
echo ' ' . html_writer::empty_tag('input', array('type' => 'submit', 'value' => get_string('go')));
echo ' ' . stack_string('deploymanynotes');
echo html_writer::end_tag('form');
}
echo html_writer::end_tag('p');
}
if (!(empty($question->deployedseeds)) && $canedit) {
// Undeploy all the variants.
echo html_writer::start_tag('form', array('method' => 'get', 'class' => 'deploymany',
'action' => new moodle_url('/question/type/stack/deploy.php', $urlparams)));
echo stack_string('deployremoveall');
echo html_writer::input_hidden_params(new moodle_url($PAGE->url, array('sesskey' => sesskey(),
'undeployall' => 'true')));
echo ' ' . html_writer::empty_tag('input', array('type' => 'submit', 'value' => get_string('go')));
echo html_writer::end_tag('form');
}
// Display the controls to add another question test.
echo $OUTPUT->heading(stack_string('questiontests'), 2);
\core\session\manager::write_close();
// Execute the tests.
$testresults = array();
$allpassed = true;
foreach ($testscases as $key => $testcase) {
$testresults[$key] = $testcase->test_question($quba, $question, $seed);
if (!$testresults[$key]->passed()) {
$allpassed = false;
}
}
// Display the test results.
$addlabel = stack_string('addanothertestcase', 'qtype_stack');
if (empty($testresults)) {
echo html_writer::tag('p', stack_string('notestcasesyet'));
$addlabel = stack_string('addatestcase', 'qtype_stack');
} else if ($allpassed) {
echo html_writer::tag('p', stack_string('stackInstall_testsuite_pass'), array('class' => 'overallresult pass'));
} else {
echo html_writer::tag('p', stack_string('stackInstall_testsuite_fail'), array('class' => 'overallresult fail'));
}
if ($canedit) {
echo $OUTPUT->single_button(new moodle_url('/question/type/stack/questiontestedit.php',
$urlparams), $addlabel, 'get');
}
foreach ($testresults as $key => $result) {
if ($result->passed()) {
$outcome = html_writer::tag('span', stack_string('testsuitepass'), array('class' => 'pass'));
} else {
$outcome = html_writer::tag('span', stack_string('testsuitefail'), array('class' => 'fail'));
}
echo $OUTPUT->heading(stack_string('testcasexresult',
array('no' => $key, 'result' => $outcome)), 3);
// Display the information about the inputs.
$inputstable = new html_table();
$inputstable->head = array(
stack_string('inputname'),
stack_string('inputexpression'),
stack_string('inputentered'),
stack_string('inputdisplayed'),
stack_string('inputstatus'),
stack_string('errors'),
);
$inputstable->attributes['class'] = 'generaltable stacktestsuite';
foreach ($result->get_input_states() as $inputname => $inputstate) {
$inputval = s($inputstate->input);
if (false === $inputstate->input) {
$inputval = '';
}
$inputstable->data[] = array(
s($inputname),
s($inputstate->rawinput),
$inputval,
stack_ouput_castext($inputstate->display),
stack_string('inputstatusname' . $inputstate->status),
$inputstate->errors,
);
}
echo html_writer::table($inputstable);
flush(); // Force output to prevent timeouts and to make progress clear.
// Display the information about the PRTs.
$prtstable = new html_table();
$prtstable->head = array(
stack_string('prtname'),
stack_string('score'),
stack_string('expectedscore'),
stack_string('penalty'),
stack_string('expectedpenalty'),
stack_string('answernote'),
stack_string('expectedanswernote'),
get_string('feedback', 'question'),
stack_string('testsuitecolpassed'),
);
$prtstable->attributes['class'] = 'generaltable stacktestsuite';
$debuginfo = '';
foreach ($result->get_prt_states() as $prtname => $state) {
if ($state->testoutcome) {
$prtstable->rowclasses[] = 'pass';
$passedcol = stack_string('testsuitepass');
} else {
$prtstable->rowclasses[] = 'fail';
$passedcol = stack_string('testsuitefail').$state->reason;
}
// Sort out excessive decimal places from the DB.
if (is_null($state->expectedscore) || '' === $state->expectedscore) {
$expectedscore = '';
} else {
$expectedscore = $state->expectedscore + 0;
}
if (is_null($state->expectedpenalty) || '' === $state->expectedpenalty) {
$expectedpenalty = '';
} else {
$expectedpenalty = $state->expectedpenalty + 0;
}
$prtstable->data[] = array(
$prtname,
$state->score,
$expectedscore,
$state->penalty,
$expectedpenalty,
s($state->answernote) . html_writer::tag('pre', $state->trace),
s($state->expectedanswernote),
format_text($state->feedback),
$passedcol,
);
if ($state->debuginfo != '') {
$debuginfo .= "\n<h2>".$prtname."</h2>\n\n";
$debuginfo .= $state->debuginfo;
}
}
echo html_writer::table($prtstable);
flush(); // Force output to prevent timeouts and to make progress clear.
echo $debuginfo;
if ($canedit) {
echo html_writer::start_tag('div', array('class' => 'testcasebuttons'));
echo $OUTPUT->single_button(new moodle_url('/question/type/stack/questiontestedit.php',
$urlparams + array('testcase' => $key)),
stack_string('editthistestcase', 'qtype_stack'), 'get');
echo $OUTPUT->single_button(new moodle_url('/question/type/stack/questiontestdelete.php',
$urlparams + array('testcase' => $key)),
stack_string('deletethistestcase', 'qtype_stack'), 'get');
echo html_writer::end_tag('div');
}
}
// Display the question.
echo $OUTPUT->heading(stack_string('questionpreview'), 3);
echo html_writer::tag('p', html_writer::link($questionbanklink,
stack_string('seethisquestioninthequestionbank')));
if ($canedit) {
echo html_writer::tag('p',
html_writer::link($exportquestionlink, stack_string('exportthisquestion')) .
$OUTPUT->help_icon('exportthisquestion', 'qtype_stack'));
}
echo $renderquestion;
// Display the question note.
echo $OUTPUT->heading(stack_string('questionnote'), 3);
echo html_writer::tag('p', stack_ouput_castext($question->get_question_summary()),
array('class' => 'questionnote'));
// Display the question variables.
echo $OUTPUT->heading(stack_string('questionvariablevalues'), 3);
echo html_writer::start_tag('div', array('class' => 'questionvariables'));
$displayqvs = '';
foreach ($question->get_question_var_values() as $key => $value) {
$displayqvs .= s($key) . ' : ' . s($value). ";\n";
}
echo html_writer::tag('pre', $displayqvs);
echo html_writer::end_tag('div');
// Display a representation of the PRT for offline use.
$offlinemaxima = array();
foreach ($question->prts as $name => $prt) {
$offlinemaxima[] = $prt->get_maxima_representation();
}
$offlinemaxima = s(implode("\n", $offlinemaxima));
echo html_writer::start_tag('div', array('class' => 'questionvariables'));
echo html_writer::tag('pre', $offlinemaxima);
echo html_writer::end_tag('div');
// Display the general feedback, aka "Worked solution".
echo $OUTPUT->heading(stack_string('generalfeedback'), 3);
echo html_writer::tag('div', html_writer::tag('div', $renderer->general_feedback(
$quba->get_question_attempt($slot)),
array('class' => 'outcome generalfeedback')), array('class' => 'que'));
// Add a link to the cas chat to facilitate editing the general feedback.
if ($question->options->get_option('simplify')) {
$simp = 'on';
} else {
$simp = '';
}
$questionvarsinputs = $question->questionvariables;
foreach ($question->get_correct_response() as $key => $val) {
if (substr($key, -4, 4) !== '_val') {
$questionvarsinputs .= "\n{$key}:{$val};";
}
}
$chatparams = $urlparams;
$chatparams['vars'] = $questionvarsinputs;
$chatparams['simp'] = $simp;
$chatparams['cas'] = $question->generalfeedback;
// We've chosen not to send a specific seed since it is helpful
// to test the general feedback in a random context.
echo $OUTPUT->single_button(new moodle_url('/question/type/stack/caschat.php', $chatparams), stack_string('chat'));
if ($question->stackversion == null) {
echo html_writer::tag('p', stack_string('stackversionnone'));
} else {
echo html_writer::tag('p', stack_string('stackversionedited', $question->stackversion)
. stack_string('stackversionnow', get_config('qtype_stack', 'version')));
}
// Finish output.
echo $OUTPUT->footer();