Skip to content

Commit

Permalink
Merge branch 'MDL-64590_36' of https://github.com/timhunt/moodle into…
Browse files Browse the repository at this point in the history
… MOODLE_36_STABLE
  • Loading branch information
David Monllaó committed Feb 12, 2019
2 parents bb10d35 + aa8e765 commit 38ba693
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 3 deletions.
6 changes: 3 additions & 3 deletions question/behaviour/behaviourbase.php
Original file line number Diff line number Diff line change
Expand Up @@ -550,13 +550,13 @@ public function format_comment($comment = null, $commentformat = null, $context

/**
* @return string a summary of a manual comment action.
* @param unknown_type $step
* @param question_attempt_step $step
*/
protected function summarise_manual_comment($step) {
$a = new stdClass();
if ($step->has_behaviour_var('comment')) {
list($comment, $commentformat, $commentstep) = $this->qa->get_manual_comment();
$comment = question_utils::to_plain_text($comment, $commentformat);
$comment = question_utils::to_plain_text($step->get_behaviour_var('comment'),
$step->get_behaviour_var('commentformat'));
$a->comment = shorten_text($comment, 200);
} else {
$a->comment = '';
Expand Down
32 changes: 32 additions & 0 deletions question/behaviour/manualgraded/tests/walkthrough_test.php
Original file line number Diff line number Diff line change
Expand Up @@ -686,4 +686,36 @@ public function test_manual_grading_reshows_exactly_the_mark_input() {
$this->render();
$this->check_output_contains_text_input('-mark', '0.3333333');
}

public function test_manual_grading_history_display() {
global $PAGE;

// The current text editor depends on the users profile setting - so it needs a valid user.
$this->setAdminUser();
// Required to init a text editor.
$PAGE->set_url('/');

// Create an essay question graded out of 15 and attempt it.
$essay = test_question_maker::make_an_essay_question();
$this->start_attempt_at_question($essay, 'deferredfeedback', 10);
$this->process_submission(array('answer' => 'This is my wonderful essay!', 'answerformat' => FORMAT_HTML));
$this->quba->finish_all_questions();

// Verify.
$this->check_current_state(question_state::$needsgrading);

// Process an initial grade and comment.
$this->manual_grade('First comment', '5.0', FORMAT_HTML);

// Process a second grade and comment.
$this->manual_grade('Second comment', '7.0', FORMAT_HTML);

// Verify.
$this->check_current_state(question_state::$mangrpartial);
$this->check_current_mark(7);
$this->displayoptions->history = question_display_options::VISIBLE;
$this->render();
$this->check_output_contains('Manually graded 5 with comment: First comment');
$this->check_output_contains('Manually graded 7 with comment: Second comment');
}
}

0 comments on commit 38ba693

Please sign in to comment.