-
Notifications
You must be signed in to change notification settings - Fork 148
/
Copy pathquestiontestrun.php
641 lines (564 loc) · 26.3 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
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
<?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 variant,
* 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__ . '/vle_specific.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);
$qversion = null;
// We should always run tests on the latest version of the question.
// This means we can refresh/reload the page even if the question has been edited and saved in another window.
// When we click "edit question" button we automatically jump to the last version, and don't edit this version.
$query = 'SELECT qv.questionid, qv.version FROM {question_versions} qv
JOIN {question_bank_entries} qbe ON qbe.id = qv.questionbankentryid
WHERE qbe.id = (SELECT be.id FROM {question_bank_entries} be
JOIN {question_versions} v ON v.questionbankentryid = be.id
WHERE v.questionid = ' . $questionid . ')
ORDER BY qv.questionid';
global $DB;
$result = $DB->get_records_sql($query);
$result = end($result);
$qversion = $result->version;
$questionid = $result->questionid;
// Load the necessary data.
$questiondata = question_bank::load_question_data($questionid);
if (!$questiondata) {
throw new stack_exception('questiondoesnotexist');
}
$question = question_bank::load_question($questionid);
// We hard-wire decimals to be a full stop when testing questions.
$question->options->set_option('decimals', '.');
// 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']);
$editparams = $qbankparams;
$editparams['id'] = $question->id;
$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 (property_exists($questiondata, 'hidden') && $questiondata->hidden) {
$qbankparams['showhidden'] = 1;
}
$todoparams = $qbankparams;
$todoparams['contextid'] = $question->contextid;
$questionbanklinkedit = new moodle_url('/question/bank/editquestion/question.php', $editparams);
$questionbanklink = new moodle_url('/question/edit.php', $qbankparams);
$exportquestionlink = new moodle_url('/question/type/stack/exportone.php', $urlparams);
$exportquestionlink->param('sesskey', sesskey());
$todolink = new moodle_url('/question/type/stack/adminui/todo.php', $todoparams);
// 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);
question_engine::save_questions_usage_by_activity($quba);
// Prepare the display options.
$options = question_display_options();
// Start output.
echo $OUTPUT->header();
$renderer = $PAGE->get_renderer('qtype_stack');
echo $OUTPUT->heading($question->name, 2);
if ($qversion !== null) {
echo html_writer::tag('p', stack_string('version') . ' ' . $qversion);
}
// We've chosen not to send a specific seed since it is helpful to test the general feedback in a random context.
$chatparams = $urlparams;
// ISS-1110 Rather than send parts of the question, save the quba and
// supply the qubaid and slot so the details can be loaded on the caschat page.
// This avoids a long URI causing an Apache error.
$chatparams['initialise'] = true;
$chatparams['qubaid'] = $quba->get_id();
$chatparams['slot'] = $slot;
$chatlink = new moodle_url('/question/type/stack/adminui/caschat.php', $chatparams);
$links = [];
if ($canedit) {
$links[] = html_writer::link($questionbanklinkedit, stack_string('editquestioninthequestionbank'),
['class' => 'nav-link']);
}
$links[] = html_writer::link($questionbanklink, stack_string('seethisquestioninthequestionbank'),
['class' => 'nav-link']);
if ($canedit) {
$links[] = html_writer::link($chatlink, stack_string('sendgeneralfeedback'), ['class' => 'nav-link']);
$links[] = html_writer::link($question->qtype->get_tidy_question_url($question),
stack_string('tidyquestion'), ['class' => 'nav-link']);
$links[] = html_writer::link($exportquestionlink, stack_string('exportthisquestion'), ['class' => 'nav-link']);
}
$links[] = html_writer::link(new moodle_url('/question/type/stack/questiontestreport.php', $urlparams),
stack_string('basicquestionreport'), ['class' => 'nav-link']);
$links[] = html_writer::link($todolink, stack_string('seetodolist'),
['class' => 'nav-link']);
echo html_writer::tag('nav', implode(' ', $links), ['class' => 'nav']);
flush();
$question->castextprocessor = new castext2_qa_processor($quba->get_question_attempt($slot));
$generalfeedback = $question->get_generalfeedback_castext();
$rendergeneralfeedback = $renderer->general_feedback($quba->get_question_attempt($slot));
$generalfeedbackerr = $generalfeedback->get_errors();
$questiondescription = $question->get_questiondescription_castext();
$renderquestiondescription = $renderer->question_description($quba->get_question_attempt($slot));
$questiondescription = $questiondescription->get_errors();
// 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);
// Make sure the seed is available for later use.
$seed = $question->seed;
$questionvariablevalues = $question->get_question_session_keyval_representation();
// Load the list of test cases.
$testscases = question_bank::get_qtype('stack')->load_question_tests($question->id);
// Create the default test case.
$defaulttest = null;
$defaulttestresult = null;
if (optional_param('defaulttestcase', null, PARAM_INT) && $canedit && $question->inputs !== []) {
$defaulttest = stack_bulk_tester::create_default_test($question);
question_bank::get_qtype('stack')->save_question_test($questionid, $defaulttest);
$testscases = question_bank::get_qtype('stack')->load_question_tests($question->id);
echo html_writer::tag('p', stack_string_error('runquestiontests_auto'));
}
// Prompt user to create the default test case.
if (empty($testscases) && $canedit && $question->inputs !== []) {
// Add in a default test case and give it full marks.
echo html_writer::start_tag('form', [
'method' => 'get', 'class' => 'defaulttestcase',
'action' => new moodle_url('/question/type/stack/questiontestrun.php', $urlparams),
]);
echo html_writer::input_hidden_params(new moodle_url($PAGE->url,
['sesskey' => sesskey(), 'defaulttestcase' => 1]));
echo ' ' . html_writer::empty_tag('input', [
'type' => 'submit', 'class' => 'btn btn-danger',
'value' => stack_string('runquestiontests_autoprompt'),
]);
echo html_writer::end_tag('form');
}
if (empty($testscases) && $question->inputs !== []) {
echo "\n<hr/>\n";
$defaulttest = stack_bulk_tester::create_default_test($question);
$defaulttestresult = $defaulttest->test_question($questionid, $seed, $context);
echo stack_string('runquestiontests_explanation');
echo $defaulttestresult->html_output($question, stack_string('runquestiontests_example'));
echo "\n<hr/>\n";
}
$deployfeedback = optional_param('deployfeedback', null, PARAM_TEXT);
if (!is_null($deployfeedback)) {
echo html_writer::tag('p', $deployfeedback, ['class' => 'overallresult pass']);
}
$deployfeedbackerr = optional_param('deployfeedbackerr', null, PARAM_TEXT);
if (!is_null($deployfeedbackerr)) {
echo html_writer::tag('p', $deployfeedbackerr, ['class' => 'overallresult fail']);
}
$upgradeerrors = $question->validate_against_stackversion($context);
if ($upgradeerrors != '') {
echo html_writer::tag('p', $upgradeerrors, ['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;
$questionnotes = [];
$qurl = qbank_previewquestion\helper::question_preview_url($questionid, null, null, null, null, $context);
if (!$question->has_random_variants()) {
echo "\n";
echo html_writer::tag('p', stack_string('questiondoesnotuserandomisation') . ' ' .
$OUTPUT->action_icon($qurl, 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_error('runquestiontests_alert') . ' ' .
stack_string('questionnotdeployedyet') . ' ' .
$OUTPUT->action_icon($qurl, new pix_icon('t/preview', get_string('preview'))));
}
} else {
$notestable = new html_table();
$notestable->head = [
stack_string('variant'),
stack_string('questionnote'),
' ',
' ',
];
$notestable->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,
['title' => stack_string('currentlyselectedvariant')]);;
$variantmatched = true;
} else {
$choice = html_writer::link(new moodle_url($PAGE->url, ['seed' => $deployedseed]),
$deployedseed, ['title' => stack_string('testthisvariant')]);
}
$qurl = qbank_previewquestion\helper::question_preview_url($questionid, null, null, null, $key + 1, $context);
$choice .= ' ' . $OUTPUT->action_icon($qurl, new pix_icon('t/preview', get_string('preview')));
if ($canedit) {
$choice .= ' ' . $OUTPUT->action_icon(new moodle_url('/question/type/stack/deploy.php',
$urlparams + ['undeploy' => $deployedseed, 'sesskey' => sesskey()]),
new pix_icon('t/delete', stack_string('undeploy')));
}
$bulktestresults = [false, ''];
if (optional_param('testall', null, PARAM_INT)) {
// Bulk test all variants.
$bulktester = new stack_bulk_tester();
$bulktestresults = $bulktester->qtype_stack_test_question($context, $questionid,
$testscases, 'web', $deployedseed, true);
}
// Print out question notes of all deployed variants.
$qn = question_bank::load_question($questionid);
$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 for duplicate question notes.
$questionnotes[] = $qn->get_question_summary();
// 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[] = [
$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));
}
}
function sort_by_note($a1, $b1) {
$a = $a1['1'];
$b = $b1['1'];
if ($a == $b) {
return 0;
}
if ($a < $b) {
return -1;
}
return 1;
}
usort($notestable->data, 'sort_by_note');
if (count($questionnotes) != count(array_flip($questionnotes))) {
echo "\n";
echo html_writer::tag('p', stack_string_error('deployduplicateerror'));
echo "\n";
}
echo html_writer::table($notestable);
echo "\n";
}
flush();
if (!$variantmatched) {
if ($canedit) {
$deploybutton = ' ' . $OUTPUT->single_button(new moodle_url('/question/type/stack/deploy.php',
$urlparams + ['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,
['class' => 'undeployedvariant']);
echo "\n";
}
if (!(empty($question->deployedseeds)) && $canedit) {
// Undeploy all the variants.
echo html_writer::start_tag('form', [
'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, [
'sesskey' => sesskey(),
'undeployall' => 'true',
]));
echo ' ' . html_writer::empty_tag('input', [
'type' => 'submit', 'class' => 'btn btn-danger',
'value' => stack_string('deployremoveall'),
]);
echo html_writer::end_tag('form');
}
// Add in some logic for a case where the author removes randomization after variants have been deployed.
if ($question->has_random_variants()) {
echo "\n";
echo html_writer::start_tag('p');
echo html_writer::start_tag('form', [
'method' => 'get', 'class' => 'switchtovariant',
'action' => new moodle_url('/question/type/stack/questiontestrun.php'),
]);
echo html_writer::input_hidden_params($PAGE->url, ['seed']);
echo ' ' . html_writer::empty_tag('input', [
'type' => 'submit', 'class' => 'btn btn-secondary',
'value' => stack_string('switchtovariant'),
]);
echo ' ' . html_writer::empty_tag('input', [
'type' => 'text', 'size' => 7,
'id' => 'seedfield', 'name' => 'seed', 'value' => mt_rand(),
]);
echo html_writer::end_tag('form');
if ($canedit) {
// Deploy many variants.
echo html_writer::start_tag('form', [
'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, ['sesskey' => sesskey()]), ['seed']);
echo ' ' . html_writer::empty_tag('input', [
'type' => 'submit', 'class' => 'btn btn-secondary',
'value' => stack_string('deploymanybtn'),
]);
echo ' ' . html_writer::empty_tag('input', [
'type' => 'text', 'size' => 4,
'id' => 'deploymanyfield', 'name' => 'deploymany', 'value' => '',
]);
echo ' ' . stack_string('deploymanynotes');
echo html_writer::end_tag('form');
// Systematic deployment of variants (from 1 to ...).
echo html_writer::start_tag('form', [
'method' => 'get', 'class' => 'deploysystematic',
'action' => new moodle_url('/question/type/stack/deploy.php', $urlparams),
]);
echo html_writer::input_hidden_params(new moodle_url($PAGE->url, ['sesskey' => sesskey()]), ['seed']);
echo ' ' . html_writer::empty_tag('input', [
'type' => 'submit', 'class' => 'btn btn-secondary',
'value' => stack_string('deploysystematicbtn'),
]);
echo ' ' . html_writer::empty_tag('input', [
'type' => 'text', 'size' => 3,
'id' => 'deploysystematicfield', 'name' => 'deploysystematic', 'value' => '',
]);
echo html_writer::end_tag('form');
// Systematic deployment of variants (from ... to ...).
echo html_writer::start_tag('form', [
'method' => 'get', 'class' => 'deploysystematicfromto',
'action' => new moodle_url('/question/type/stack/deploy.php', $urlparams),
]);
echo html_writer::input_hidden_params(new moodle_url($PAGE->url, ['sesskey' => sesskey()]), ['seed']);
echo ' ' . html_writer::empty_tag('input', [
'type' => 'submit', 'class' => 'btn btn-secondary',
'value' => stack_string('deploysystematicfrombtn'),
]);
echo ' ' . html_writer::empty_tag('input', [
'type' => 'text', 'size' => 3,
'id' => 'deploysystematicfromfield', 'name' => 'deploysystematicfrom', 'value' => '',
]);
echo ' ' . stack_string('deploysystematicto');
echo ' ' . html_writer::empty_tag('input', [
'type' => 'text', 'size' => 3,
'id' => 'deploysystematictofield', 'name' => 'deploysystematicto', 'value' => '',
]);
echo html_writer::end_tag('form');
// Deploy many from a CS list of integer seeds.
echo "\n" . html_writer::start_tag('form', [
'method' => 'get', 'class' => 'deployfromlist',
'action' => new moodle_url('/question/type/stack/deploy.php', $urlparams),
]);
echo html_writer::input_hidden_params(new moodle_url($PAGE->url, ['sesskey' => sesskey()]), ['seed']);
echo "\n" . html_writer::start_tag('table');
echo html_writer::start_tag('tr');
echo html_writer::start_tag('td');
echo ' ' . html_writer::empty_tag('input', [
'type' => 'submit', 'class' => 'btn btn-secondary',
'value' => stack_string('deployfromlistbtn'),
]);
echo html_writer::end_tag('td');
echo html_writer::start_tag('td');
echo ' ' . html_writer::start_tag('textarea', [
'cols' => 15, 'rows' => min(count($question->deployedseeds), 5),
'id' => 'deployfromlist', 'name' => 'deployfromlist',
]);
echo html_writer::end_tag('textarea');
echo html_writer::end_tag('td');
echo html_writer::start_tag('td');
echo stack_string('deployfromlist');
echo html_writer::end_tag('td');
$out = html_writer::tag('summary', stack_string('deployfromlistexisting'));
$out .= html_writer::tag('pre', implode("\n", $question->deployedseeds));
$out = html_writer::tag('details', $out);
echo html_writer::tag('td', $out);
echo html_writer::end_tag('tr');
echo "\n" . html_writer::end_tag('table');
echo "\n" . html_writer::end_tag('form');
// Run tests on all the variants.
echo html_writer::start_tag('form', [
'method' => 'get', 'class' => 'deploymany',
'action' => new moodle_url('/question/type/stack/questiontestrun.php', $urlparams),
]);
echo html_writer::input_hidden_params(new moodle_url($PAGE->url, [
'sesskey' => sesskey(),
'testall' => '1',
]));
echo ' ' . html_writer::empty_tag('input', [
'type' => 'submit', 'class' => 'btn btn-warning',
'value' => stack_string('deploytestall'),
]);
echo html_writer::end_tag('form');
echo "\n";
}
}
// Execute the tests.
$testresults = [];
$allpassed = true;
foreach ($testscases as $key => $testcase) {
$testresults[$key] = $testcase->test_question($questionid, $seed, $context);
if (!$testresults[$key]->passed()) {
$allpassed = false;
}
}
\core\session\manager::write_close();
if ($question->runtimeerrors || $generalfeedbackerr) {
echo html_writer::tag('p', stack_string('errors'), ['class' => 'overallresult fail']);
echo html_writer::tag('p', implode('<br />', array_keys($question->runtimeerrors)));
echo html_writer::tag('p', stack_string('generalfeedback') . ': ' . $generalfeedbackerr);
}
// Make sure the question has inputs, otherwise testing is uncessary.
if ($question->inputs !== []) {
echo $OUTPUT->heading(stack_string('questiontestsfor', $seed), 2);
// Display the test results.
$addlabel = stack_string('addanothertestcase', 'qtype_stack');
$basemsg = '';
if ($question->has_random_variants()) {
$basemsg = stack_string('questiontestsfor', $seed) . ': ';
}
if (empty($testresults)) {
echo html_writer::tag('p', stack_string_error('runquestiontests_alert') . ' ' . stack_string('notestcasesyet'));
$addlabel = stack_string('addatestcase', 'qtype_stack');
} else if ($allpassed) {
echo html_writer::tag('p', $basemsg .
stack_string('stackInstall_testsuite_pass'), ['class' => 'overallresult pass']);
} else {
echo html_writer::tag('p', $basemsg .
stack_string_error('stackInstall_testsuite_fail'), ['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) {
echo $result->html_output($question, $key);
flush(); // Force output to prevent timeouts and to make progress clear.
if ($canedit) {
echo "\n";
echo html_writer::start_tag('div', ['class' => 'testcasebuttons']);
echo $OUTPUT->single_button(new moodle_url('/question/type/stack/questiontestedit.php',
$urlparams + ['testcase' => $key]),
stack_string('editthistestcase', 'qtype_stack'), 'get');
echo $OUTPUT->single_button(new moodle_url('/question/type/stack/questiontestedit.php',
$urlparams + ['testcase' => $key, 'confirmthistestcase' => true]),
stack_string('confirmthistestcase', 'qtype_stack'), 'get');
echo $OUTPUT->single_button(new moodle_url('/question/type/stack/questiontestdelete.php',
$urlparams + ['testcase' => $key]),
stack_string('deletethistestcase', 'qtype_stack'), 'get');
echo html_writer::end_tag('div');
echo "\n";
}
}
// Display the question variables.
echo $OUTPUT->heading(stack_string('questionvariablevalues'), 3);
echo "\n";
echo html_writer::start_tag('div', ['class' => 'questionvariables']);
echo html_writer::tag('pre', $questionvariablevalues);
echo html_writer::end_tag('div');
echo "\n";
// Question variables and PRTs in a summary tag.
$out = html_writer::tag('summary', stack_string('prts'));
$out .= html_writer::start_tag('div', ['class' => 'questionvariables']);
$out .= html_writer::tag('pre', $questionvariablevalues);
$out .= html_writer::end_tag('div');
// Display a representation of the PRT for offline use.
$offlinemaxima = [];
foreach ($question->prts as $name => $prt) {
$offlinemaxima[] = $prt->get_maxima_representation();
}
$offlinemaxima = s(implode("\n", $offlinemaxima));
$out .= html_writer::start_tag('div', ['class' => 'questionvariables']);
$out .= html_writer::tag('pre', $offlinemaxima);
$out .= html_writer::end_tag('div');
echo html_writer::tag('details', $out);
echo "\n";
echo $OUTPUT->heading(stack_string('questionpreview'), 3);
echo "\n";
echo $renderquestion;
echo "\n";
// Display the question note.
echo $OUTPUT->heading(stack_string('questionnote'), 3);
echo html_writer::tag('div', html_writer::tag('div', stack_ouput_castext($question->get_question_summary()),
['class' => 'questionnote']), ['class' => 'que']);
// Display the general feedback, aka "Worked solution".
echo $OUTPUT->heading(stack_string('generalfeedback'), 3);
echo html_writer::tag('div', html_writer::tag('div', $rendergeneralfeedback,
['class' => 'outcome generalfeedback']), ['class' => 'que']);
echo $OUTPUT->heading(stack_string('questiondescription'), 3);
echo html_writer::tag('div', html_writer::tag('div', $renderquestiondescription,
['class' => 'outcome generalfeedback']), ['class' => 'que']);
echo "\n";
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();