You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
216 lines
9.6 KiB
216 lines
9.6 KiB
<?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 assignsubmission_onlinetext.
|
|
*
|
|
* @package assignsubmission_onlinetext
|
|
* @copyright 2018 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/privacy_test.php');
|
|
|
|
/**
|
|
* Unit tests for mod/assign/submission/onlinetext/classes/privacy/
|
|
*
|
|
* @copyright 2018 Adrian Greeve <adrian@moodle.com>
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
class assignsubmission_online_privacy_testcase extends \mod_assign\tests\mod_assign_privacy_testcase {
|
|
|
|
/**
|
|
* Convenience function for creating feedback data.
|
|
*
|
|
* @param object $assign assign object
|
|
* @param stdClass $student user object
|
|
* @param string $text Submission text.
|
|
* @return array Submission plugin object and the submission object.
|
|
*/
|
|
protected function create_online_submission($assign, $student, $text) {
|
|
global $CFG;
|
|
|
|
$this->setUser($student->id);
|
|
$submission = $assign->get_user_submission($student->id, true);
|
|
$data = new stdClass();
|
|
$data->onlinetext_editor = array(
|
|
'itemid' => file_get_unused_draft_itemid(),
|
|
'text' => $text,
|
|
'format' => FORMAT_PLAIN
|
|
);
|
|
|
|
$submission = $assign->get_user_submission($student->id, true);
|
|
|
|
$plugin = $assign->get_submission_plugin_by_type('onlinetext');
|
|
$plugin->save($submission, $data);
|
|
|
|
return [$plugin, $submission];
|
|
}
|
|
|
|
/**
|
|
* Quick test to make sure that get_metadata returns something.
|
|
*/
|
|
public function test_get_metadata() {
|
|
$collection = new \core_privacy\local\metadata\collection('assignsubmission_onlinetext');
|
|
$collection = \assignsubmission_onlinetext\privacy\provider::get_metadata($collection);
|
|
$this->assertNotEmpty($collection);
|
|
}
|
|
|
|
/**
|
|
* Test that submission files and text are exported for a user.
|
|
*/
|
|
public function test_export_submission_user_data() {
|
|
$this->resetAfterTest();
|
|
// Create course, assignment, submission, and then a feedback comment.
|
|
$course = $this->getDataGenerator()->create_course();
|
|
// Student.
|
|
$user1 = $this->getDataGenerator()->create_user();
|
|
$this->getDataGenerator()->enrol_user($user1->id, $course->id, 'student');
|
|
$assign = $this->create_instance(['course' => $course]);
|
|
|
|
$context = $assign->get_context();
|
|
|
|
$submissiontext = 'Just some text';
|
|
list($plugin, $submission) = $this->create_online_submission($assign, $user1, $submissiontext);
|
|
|
|
$writer = \core_privacy\local\request\writer::with_context($context);
|
|
$this->assertFalse($writer->has_any_data());
|
|
|
|
// The student should have some text submitted.
|
|
$exportdata = new \mod_assign\privacy\assign_plugin_request_data($context, $assign, $submission, ['Attempt 1']);
|
|
\assignsubmission_onlinetext\privacy\provider::export_submission_user_data($exportdata);
|
|
$this->assertEquals($submissiontext, $writer->get_data(['Attempt 1',
|
|
get_string('privacy:path', 'assignsubmission_onlinetext')])->text);
|
|
}
|
|
|
|
/**
|
|
* Test that all submission files are deleted for this context.
|
|
*/
|
|
public function test_delete_submission_for_context() {
|
|
$this->resetAfterTest();
|
|
// Create course, assignment, submission, and then a feedback comment.
|
|
$course = $this->getDataGenerator()->create_course();
|
|
// Student.
|
|
$user1 = $this->getDataGenerator()->create_user();
|
|
$user2 = $this->getDataGenerator()->create_user();
|
|
|
|
$this->getDataGenerator()->enrol_user($user1->id, $course->id, 'student');
|
|
$this->getDataGenerator()->enrol_user($user2->id, $course->id, 'student');
|
|
|
|
$assign = $this->create_instance(['course' => $course]);
|
|
|
|
$context = $assign->get_context();
|
|
|
|
$studenttext = 'Student one\'s text.';
|
|
list($plugin, $submission) = $this->create_online_submission($assign, $user1, $studenttext);
|
|
$studenttext2 = 'Student two\'s text.';
|
|
list($plugin2, $submission2) = $this->create_online_submission($assign, $user2, $studenttext2);
|
|
|
|
// Only need the context and assign object in this plugin for this operation.
|
|
$requestdata = new \mod_assign\privacy\assign_plugin_request_data($context, $assign);
|
|
\assignsubmission_onlinetext\privacy\provider::delete_submission_for_context($requestdata);
|
|
// This checks that there is no content for these submissions.
|
|
$this->assertTrue($plugin->is_empty($submission));
|
|
$this->assertTrue($plugin2->is_empty($submission2));
|
|
}
|
|
|
|
/**
|
|
* Test that the comments for a user are deleted.
|
|
*/
|
|
public function test_delete_submission_for_userid() {
|
|
$this->resetAfterTest();
|
|
// Create course, assignment, submission, and then a feedback comment.
|
|
$course = $this->getDataGenerator()->create_course();
|
|
// Student.
|
|
$user1 = $this->getDataGenerator()->create_user();
|
|
$user2 = $this->getDataGenerator()->create_user();
|
|
|
|
$this->getDataGenerator()->enrol_user($user1->id, $course->id, 'student');
|
|
$this->getDataGenerator()->enrol_user($user2->id, $course->id, 'student');
|
|
|
|
$assign = $this->create_instance(['course' => $course]);
|
|
|
|
$context = $assign->get_context();
|
|
|
|
$studenttext = 'Student one\'s text.';
|
|
list($plugin, $submission) = $this->create_online_submission($assign, $user1, $studenttext);
|
|
$studenttext2 = 'Student two\'s text.';
|
|
list($plugin2, $submission2) = $this->create_online_submission($assign, $user2, $studenttext2);
|
|
|
|
// Need more data for this operation.
|
|
$requestdata = new \mod_assign\privacy\assign_plugin_request_data($context, $assign, $submission, [], $user1);
|
|
\assignsubmission_onlinetext\privacy\provider::delete_submission_for_userid($requestdata);
|
|
// This checks that there is no content for the first submission.
|
|
$this->assertTrue($plugin->is_empty($submission));
|
|
// But there is for the second submission.
|
|
$this->assertFalse($plugin2->is_empty($submission2));
|
|
}
|
|
|
|
public function test_delete_submissions() {
|
|
global $DB;
|
|
|
|
$this->resetAfterTest();
|
|
|
|
$course = $this->getDataGenerator()->create_course();
|
|
$user1 = $this->getDataGenerator()->create_user();
|
|
$user2 = $this->getDataGenerator()->create_user();
|
|
$user3 = $this->getDataGenerator()->create_user();
|
|
// Only makes submissions in the second assignment.
|
|
$user4 = $this->getDataGenerator()->create_user();
|
|
|
|
$this->getDataGenerator()->enrol_user($user1->id, $course->id, 'student');
|
|
$this->getDataGenerator()->enrol_user($user2->id, $course->id, 'student');
|
|
$this->getDataGenerator()->enrol_user($user3->id, $course->id, 'student');
|
|
$this->getDataGenerator()->enrol_user($user4->id, $course->id, 'student');
|
|
|
|
$assign1 = $this->create_instance(['course' => $course]);
|
|
$assign2 = $this->create_instance(['course' => $course]);
|
|
|
|
$context1 = $assign1->get_context();
|
|
$context2 = $assign2->get_context();
|
|
|
|
$student1text = 'Student one\'s text.';
|
|
list($plugin1, $submission1) = $this->create_online_submission($assign1, $user1, $student1text);
|
|
$student2text = 'Student two\'s text.';
|
|
list($plugin2, $submission2) = $this->create_online_submission($assign1, $user2, $student2text);
|
|
$student3text = 'Student two\'s text.';
|
|
list($plugin3, $submission3) = $this->create_online_submission($assign1, $user3, $student3text);
|
|
// Now for submissions in assignment two.
|
|
$student3text2 = 'Student two\'s text for the second assignment.';
|
|
list($plugin4, $submission4) = $this->create_online_submission($assign2, $user3, $student3text2);
|
|
$student4text = 'Student four\'s text.';
|
|
list($plugin5, $submission5) = $this->create_online_submission($assign2, $user4, $student4text);
|
|
|
|
$data = $DB->get_records('assignsubmission_onlinetext', ['assignment' => $assign1->get_instance()->id]);
|
|
$this->assertCount(3, $data);
|
|
// Delete the submissions for user 1 and 3.
|
|
$requestdata = new \mod_assign\privacy\assign_plugin_request_data($context1, $assign1);
|
|
$requestdata->set_userids([$user1->id, $user2->id]);
|
|
$requestdata->populate_submissions_and_grades();
|
|
\assignsubmission_onlinetext\privacy\provider::delete_submissions($requestdata);
|
|
|
|
// There should only be one record left for assignment one.
|
|
$data = $DB->get_records('assignsubmission_onlinetext', ['assignment' => $assign1->get_instance()->id]);
|
|
$this->assertCount(1, $data);
|
|
|
|
// Check that the second assignment has not been touched.
|
|
$data = $DB->get_records('assignsubmission_onlinetext', ['assignment' => $assign2->get_instance()->id]);
|
|
$this->assertCount(2, $data);
|
|
}
|
|
}
|
|
|