mirror of
https://github.com/moodle/moodle.git
synced 2025-07-26 00:31:35 +02:00
Testing that the new method is_feedback_modified() works as it should with the standard plugins.
93 lines
3.3 KiB
PHP
93 lines
3.3 KiB
PHP
<?php
|
|
// This file is part of Moodle - http://moodle.org/
|
|
//
|
|
// Moodle 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.
|
|
//
|
|
// Moodle 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 Moodle. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
/**
|
|
* Unit tests for assignfeedback_comments
|
|
*
|
|
* @package assignfeedback_comments
|
|
* @copyright 2016 Adrian Greeve <adrian@moodle.com>
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
|
|
defined('MOODLE_INTERNAL') || die();
|
|
|
|
global $CFG;
|
|
require_once($CFG->dirroot . '/mod/assign/tests/base_test.php');
|
|
|
|
/**
|
|
* Unit tests for assignfeedback_comments
|
|
*
|
|
* @copyright 2016 Adrian Greeve <adrian@moodle.com>
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
class assignfeedback_comments_testcase extends mod_assign_base_testcase {
|
|
|
|
/**
|
|
* Create an assign object and submit an online text submission.
|
|
*/
|
|
protected function create_assign_and_submit_text() {
|
|
$assign = $this->create_instance(array('assignsubmission_onlinetext_enabled' => 1,
|
|
'assignfeedback_comments_enabled' => 1));
|
|
|
|
$user = $this->students[0];
|
|
$this->setUser($user);
|
|
|
|
// Create an online text submission.
|
|
$submission = $assign->get_user_submission($user->id, true);
|
|
|
|
$data = new stdClass();
|
|
$data->onlinetext_editor = array(
|
|
'text' => '<p>This is some text.</p>',
|
|
'format' => 1,
|
|
'itemid' => file_get_unused_draft_itemid());
|
|
$plugin = $assign->get_submission_plugin_by_type('onlinetext');
|
|
$plugin->save($submission, $data);
|
|
|
|
return $assign;
|
|
}
|
|
|
|
/**
|
|
* Test the is_feedback_modified() method for the comments feedback.
|
|
*/
|
|
public function test_is_feedback_modified() {
|
|
$assign = $this->create_assign_and_submit_text();
|
|
|
|
$this->setUser($this->teachers[0]);
|
|
|
|
// Create formdata.
|
|
$data = new stdClass();
|
|
$data->assignfeedbackcomments_editor = array(
|
|
'text' => '<p>first comment for this test</p>',
|
|
'format' => 1
|
|
);
|
|
$grade = $assign->get_user_grade($this->students[0]->id, true);
|
|
|
|
// This is the first time that we are submitting feedback, so it is modified.
|
|
$plugin = $assign->get_feedback_plugin_by_type('comments');
|
|
$this->assertTrue($plugin->is_feedback_modified($grade, $data));
|
|
// Save the feedback.
|
|
$plugin->save($grade, $data);
|
|
// Try again with the same data.
|
|
$this->assertFalse($plugin->is_feedback_modified($grade, $data));
|
|
// Change the data.
|
|
$data->assignfeedbackcomments_editor = array(
|
|
'text' => '<p>Altered comment for this test</p>',
|
|
'format' => 1
|
|
);
|
|
$this->assertTrue($plugin->is_feedback_modified($grade, $data));
|
|
}
|
|
}
|