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.
540 lines
22 KiB
540 lines
22 KiB
2 years ago
|
<?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/>.
|
||
|
|
||
|
/**
|
||
|
* Privacy provider tests.
|
||
|
*
|
||
|
* @package core_question
|
||
|
* @copyright 2018 Andrew Nicols <andrew@nicols.co.uk>
|
||
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||
|
*/
|
||
|
|
||
|
use core_privacy\local\metadata\collection;
|
||
|
use core_privacy\local\request\deletion_criteria;
|
||
|
use core_privacy\local\request\writer;
|
||
|
use core_question\privacy\provider;
|
||
|
|
||
|
defined('MOODLE_INTERNAL') || die();
|
||
|
|
||
|
global $CFG;
|
||
|
require_once($CFG->libdir . '/xmlize.php');
|
||
|
require_once(__DIR__ . '/privacy_helper.php');
|
||
|
require_once(__DIR__ . '/../engine/tests/helpers.php');
|
||
|
|
||
|
/**
|
||
|
* Privacy provider tests class.
|
||
|
*
|
||
|
* @package core_question
|
||
|
* @copyright 2018 Andrew Nicols <andrew@nicols.co.uk>
|
||
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||
|
*/
|
||
|
class core_question_privacy_provider_testcase extends \core_privacy\tests\provider_testcase {
|
||
|
|
||
|
// Include the privacy helper which has assertions on it.
|
||
|
use core_question_privacy_helper;
|
||
|
|
||
|
/**
|
||
|
* Prepare a question attempt.
|
||
|
*
|
||
|
* @return question_usage_by_activity
|
||
|
*/
|
||
|
protected function prepare_question_attempt() {
|
||
|
// Create a question with a usage from the current user.
|
||
|
$questiongenerator = $this->getDataGenerator()->get_plugin_generator('core_question');
|
||
|
$cat = $questiongenerator->create_question_category();
|
||
|
$quba = question_engine::make_questions_usage_by_activity('core_question_preview', context_system::instance());
|
||
|
$quba->set_preferred_behaviour('deferredfeedback');
|
||
|
$questiondata = $questiongenerator->create_question('numerical', null, ['category' => $cat->id]);
|
||
|
$question = question_bank::load_question($questiondata->id);
|
||
|
$quba->add_question($question);
|
||
|
$quba->start_all_questions();
|
||
|
|
||
|
question_engine::save_questions_usage_by_activity($quba);
|
||
|
|
||
|
return $quba;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Test that calling export_question_usage on a usage belonging to a
|
||
|
* different user does not export any data.
|
||
|
*/
|
||
|
public function test_export_question_usage_no_usage() {
|
||
|
$this->resetAfterTest();
|
||
|
|
||
|
$quba = $this->prepare_question_attempt();
|
||
|
|
||
|
// Create a question with a usage from the current user.
|
||
|
$questiongenerator = $this->getDataGenerator()->get_plugin_generator('core_question');
|
||
|
$cat = $questiongenerator->create_question_category();
|
||
|
$quba = question_engine::make_questions_usage_by_activity('core_question_preview', context_system::instance());
|
||
|
$quba->set_preferred_behaviour('deferredfeedback');
|
||
|
$questiondata = $questiongenerator->create_question('numerical', null, ['category' => $cat->id]);
|
||
|
$question = question_bank::load_question($questiondata->id);
|
||
|
$quba->add_question($question);
|
||
|
$quba->start_all_questions();
|
||
|
|
||
|
question_engine::save_questions_usage_by_activity($quba);
|
||
|
|
||
|
// Set the user.
|
||
|
$testuser = $this->getDataGenerator()->create_user();
|
||
|
$this->setUser($testuser);
|
||
|
$context = $quba->get_owning_context();
|
||
|
$options = new \question_display_options();
|
||
|
|
||
|
provider::export_question_usage($testuser->id, $context, [], $quba->get_id(), $options, false);
|
||
|
$writer = writer::with_context($context);
|
||
|
|
||
|
$this->assertFalse($writer->has_any_data_in_any_context());
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Test that calling export_question_usage on a usage belonging to a
|
||
|
* different user but ignoring the user match
|
||
|
*/
|
||
|
public function test_export_question_usage_with_usage() {
|
||
|
$this->resetAfterTest();
|
||
|
|
||
|
$quba = $this->prepare_question_attempt();
|
||
|
|
||
|
// Create a question with a usage from the current user.
|
||
|
$questiongenerator = $this->getDataGenerator()->get_plugin_generator('core_question');
|
||
|
$cat = $questiongenerator->create_question_category();
|
||
|
$quba = question_engine::make_questions_usage_by_activity('core_question_preview', context_system::instance());
|
||
|
$quba->set_preferred_behaviour('deferredfeedback');
|
||
|
|
||
|
$questiondata = $questiongenerator->create_question('truefalse', 'true', ['category' => $cat->id]);
|
||
|
$quba->add_question(question_bank::load_question($questiondata->id));
|
||
|
$questiondata = $questiongenerator->create_question('shortanswer', null, ['category' => $cat->id]);
|
||
|
$quba->add_question(question_bank::load_question($questiondata->id));
|
||
|
|
||
|
// Set the user and answer the questions.
|
||
|
$testuser = $this->getDataGenerator()->create_user();
|
||
|
$this->setUser($testuser);
|
||
|
|
||
|
$quba->start_all_questions();
|
||
|
$quba->process_action(1, ['answer' => 1]);
|
||
|
$quba->process_action(2, ['answer' => 'cat']);
|
||
|
$quba->finish_all_questions();
|
||
|
|
||
|
question_engine::save_questions_usage_by_activity($quba);
|
||
|
|
||
|
$context = $quba->get_owning_context();
|
||
|
|
||
|
// Export all questions for this attempt.
|
||
|
$options = new \question_display_options();
|
||
|
provider::export_question_usage($testuser->id, $context, [], $quba->get_id(), $options, true);
|
||
|
$writer = writer::with_context($context);
|
||
|
|
||
|
$this->assertTrue($writer->has_any_data_in_any_context());
|
||
|
$this->assertTrue($writer->has_any_data());
|
||
|
|
||
|
$slots = $quba->get_slots();
|
||
|
$this->assertCount(2, $slots);
|
||
|
|
||
|
foreach ($slots as $slotno) {
|
||
|
$data = $writer->get_data([get_string('questions', 'core_question'), $slotno]);
|
||
|
$this->assertNotNull($data);
|
||
|
$this->assert_question_slot_equals($quba, $slotno, $options, $data);
|
||
|
}
|
||
|
|
||
|
$this->assertEmpty($writer->get_data([get_string('questions', 'core_question'), $quba->next_slot_number()]));
|
||
|
|
||
|
// Disable some options and re-export.
|
||
|
writer::reset();
|
||
|
$options = new \question_display_options();
|
||
|
$options->hide_all_feedback();
|
||
|
$options->flags = \question_display_options::HIDDEN;
|
||
|
$options->marks = \question_display_options::HIDDEN;
|
||
|
|
||
|
provider::export_question_usage($testuser->id, $context, [], $quba->get_id(), $options, true);
|
||
|
$writer = writer::with_context($context);
|
||
|
|
||
|
$this->assertTrue($writer->has_any_data_in_any_context());
|
||
|
$this->assertTrue($writer->has_any_data());
|
||
|
|
||
|
$slots = $quba->get_slots();
|
||
|
$this->assertCount(2, $slots);
|
||
|
|
||
|
foreach ($slots as $slotno) {
|
||
|
$data = $writer->get_data([get_string('questions', 'core_question'), $slotno]);
|
||
|
$this->assertNotNull($data);
|
||
|
$this->assert_question_slot_equals($quba, $slotno, $options, $data);
|
||
|
}
|
||
|
|
||
|
$this->assertEmpty($writer->get_data([get_string('questions', 'core_question'), $quba->next_slot_number()]));
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Test that questions owned by a user are exported and never deleted.
|
||
|
*/
|
||
|
public function test_question_owned_is_handled() {
|
||
|
global $DB;
|
||
|
$this->resetAfterTest();
|
||
|
|
||
|
$questiongenerator = $this->getDataGenerator()->get_plugin_generator('core_question');
|
||
|
|
||
|
// Create the two test users.
|
||
|
$user = $this->getDataGenerator()->create_user();
|
||
|
$otheruser = $this->getDataGenerator()->create_user();
|
||
|
|
||
|
// Create one question as each user in diferent contexts.
|
||
|
$this->setUser($user);
|
||
|
$userdata = $questiongenerator->setup_course_and_questions();
|
||
|
$expectedcontext = \context_course::instance($userdata[1]->id);
|
||
|
|
||
|
$this->setUser($otheruser);
|
||
|
$otheruserdata = $questiongenerator->setup_course_and_questions();
|
||
|
$unexpectedcontext = \context_course::instance($otheruserdata[1]->id);
|
||
|
|
||
|
// And create another one where we'll update a question as the test user.
|
||
|
$moreotheruserdata = $questiongenerator->setup_course_and_questions();
|
||
|
$otherexpectedcontext = \context_course::instance($moreotheruserdata[1]->id);
|
||
|
$morequestions = $moreotheruserdata[3];
|
||
|
|
||
|
// Update the third set of questions.
|
||
|
$this->setUser($user);
|
||
|
|
||
|
foreach ($morequestions as $question) {
|
||
|
$questiongenerator->update_question($question);
|
||
|
}
|
||
|
|
||
|
// Run the get_contexts_for_userid as default user.
|
||
|
$this->setUser();
|
||
|
|
||
|
// There should be two contexts returned - the first course, and the third.
|
||
|
$contextlist = provider::get_contexts_for_userid($user->id);
|
||
|
$this->assertCount(2, $contextlist);
|
||
|
|
||
|
$expectedcontexts = [
|
||
|
$expectedcontext->id,
|
||
|
$otherexpectedcontext->id,
|
||
|
];
|
||
|
$this->assertEquals($expectedcontexts, $contextlist->get_contextids(), 'Contexts not equal', 0.0, 10, true);
|
||
|
|
||
|
// Run the export_user_Data as the test user.
|
||
|
$this->setUser($user);
|
||
|
|
||
|
$approvedcontextlist = new \core_privacy\tests\request\approved_contextlist(
|
||
|
\core_user::get_user($user->id),
|
||
|
'core_question',
|
||
|
$expectedcontexts
|
||
|
);
|
||
|
provider::export_user_data($approvedcontextlist);
|
||
|
|
||
|
// There should be data for the user's question context.
|
||
|
$writer = writer::with_context($expectedcontext);
|
||
|
$this->assertTrue($writer->has_any_data());
|
||
|
|
||
|
// And for the course we updated.
|
||
|
$otherwriter = writer::with_context($otherexpectedcontext);
|
||
|
$this->assertTrue($otherwriter->has_any_data());
|
||
|
|
||
|
// But not for the other user's course.
|
||
|
$otherwriter = writer::with_context($unexpectedcontext);
|
||
|
$this->assertFalse($otherwriter->has_any_data());
|
||
|
|
||
|
// The question data is exported as an XML export in custom files.
|
||
|
$writer = writer::with_context($expectedcontext);
|
||
|
$subcontext = [get_string('questionbank', 'core_question')];
|
||
|
|
||
|
$exportfile = $writer->get_custom_file($subcontext, 'questions.xml');
|
||
|
$this->assertNotEmpty($exportfile);
|
||
|
|
||
|
$xmlized = xmlize($exportfile);
|
||
|
$xmlquestions = $xmlized['quiz']['#']['question'];
|
||
|
|
||
|
$this->assertCount(2, $xmlquestions);
|
||
|
|
||
|
// Run the delete functions as default user.
|
||
|
$this->setUser();
|
||
|
|
||
|
// Find out how many questions are in the question bank to start with.
|
||
|
$questioncount = $DB->count_records('question');
|
||
|
|
||
|
// The delete functions should do nothing here.
|
||
|
|
||
|
// Delete for all users in context.
|
||
|
provider::delete_data_for_all_users_in_context($expectedcontext);
|
||
|
$this->assertEquals($questioncount, $DB->count_records('question'));
|
||
|
|
||
|
provider::delete_data_for_user($approvedcontextlist);
|
||
|
$this->assertEquals($questioncount, $DB->count_records('question'));
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Deleting questions should only unset their created and modified user.
|
||
|
*/
|
||
|
public function test_question_delete_data_for_user_anonymised() {
|
||
|
global $DB;
|
||
|
$this->resetAfterTest(true);
|
||
|
|
||
|
$user = \core_user::get_user_by_username('admin');
|
||
|
$otheruser = $this->getDataGenerator()->create_user();
|
||
|
|
||
|
$course = $this->getDataGenerator()->create_course();
|
||
|
$context = \context_course::instance($course->id);
|
||
|
$othercourse = $this->getDataGenerator()->create_course();
|
||
|
$othercontext = \context_course::instance($othercourse->id);
|
||
|
|
||
|
// Create a couple of questions.
|
||
|
$questiongenerator = $this->getDataGenerator()->get_plugin_generator('core_question');
|
||
|
$cat = $questiongenerator->create_question_category([
|
||
|
'contextid' => $context->id,
|
||
|
]);
|
||
|
$othercat = $questiongenerator->create_question_category([
|
||
|
'contextid' => $othercontext->id,
|
||
|
]);
|
||
|
|
||
|
// Create questions:
|
||
|
// Q1 - Created by the UUT, Modified by UUT.
|
||
|
// Q2 - Created by the UUT, Modified by the other user.
|
||
|
// Q3 - Created by the other user, Modified by UUT
|
||
|
// Q4 - Created by the other user, Modified by the other user.
|
||
|
// Q5 - Created by the UUT, Modified by the UUT, but in a different context.
|
||
|
$this->setUser($user);
|
||
|
$q1 = $questiongenerator->create_question('shortanswer', null, array('category' => $cat->id));
|
||
|
$q2 = $questiongenerator->create_question('shortanswer', null, array('category' => $cat->id));
|
||
|
|
||
|
$this->setUser($otheruser);
|
||
|
$questiongenerator->update_question($q2);
|
||
|
$q3 = $questiongenerator->create_question('shortanswer', null, array('category' => $cat->id));
|
||
|
$q4 = $questiongenerator->create_question('shortanswer', null, array('category' => $cat->id));
|
||
|
|
||
|
$this->setUser($user);
|
||
|
$questiongenerator->update_question($q3);
|
||
|
$q5 = $questiongenerator->create_question('shortanswer', null, array('category' => $othercat->id));
|
||
|
|
||
|
$approvedcontextlist = new \core_privacy\tests\request\approved_contextlist(
|
||
|
$user,
|
||
|
'core_question',
|
||
|
[$context->id]
|
||
|
);
|
||
|
|
||
|
// Find out how many questions are in the question bank to start with.
|
||
|
$questioncount = $DB->count_records('question');
|
||
|
|
||
|
// Delete the data and check it is removed.
|
||
|
$this->setUser();
|
||
|
provider::delete_data_for_user($approvedcontextlist);
|
||
|
|
||
|
$this->assertEquals($questioncount, $DB->count_records('question'));
|
||
|
|
||
|
$qrecord = $DB->get_record('question', ['id' => $q1->id]);
|
||
|
$this->assertEquals(0, $qrecord->createdby);
|
||
|
$this->assertEquals(0, $qrecord->modifiedby);
|
||
|
|
||
|
$qrecord = $DB->get_record('question', ['id' => $q2->id]);
|
||
|
$this->assertEquals(0, $qrecord->createdby);
|
||
|
$this->assertEquals($otheruser->id, $qrecord->modifiedby);
|
||
|
|
||
|
$qrecord = $DB->get_record('question', ['id' => $q3->id]);
|
||
|
$this->assertEquals($otheruser->id, $qrecord->createdby);
|
||
|
$this->assertEquals(0, $qrecord->modifiedby);
|
||
|
|
||
|
$qrecord = $DB->get_record('question', ['id' => $q4->id]);
|
||
|
$this->assertEquals($otheruser->id, $qrecord->createdby);
|
||
|
$this->assertEquals($otheruser->id, $qrecord->modifiedby);
|
||
|
|
||
|
$qrecord = $DB->get_record('question', ['id' => $q5->id]);
|
||
|
$this->assertEquals($user->id, $qrecord->createdby);
|
||
|
$this->assertEquals($user->id, $qrecord->modifiedby);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Deleting questions should only unset their created and modified user for all questions in a context.
|
||
|
*/
|
||
|
public function test_question_delete_data_for_all_users_in_context_anonymised() {
|
||
|
global $DB;
|
||
|
$this->resetAfterTest(true);
|
||
|
|
||
|
$user = \core_user::get_user_by_username('admin');
|
||
|
$otheruser = $this->getDataGenerator()->create_user();
|
||
|
|
||
|
$course = $this->getDataGenerator()->create_course();
|
||
|
$context = \context_course::instance($course->id);
|
||
|
$othercourse = $this->getDataGenerator()->create_course();
|
||
|
$othercontext = \context_course::instance($othercourse->id);
|
||
|
|
||
|
// Create a couple of questions.
|
||
|
$questiongenerator = $this->getDataGenerator()->get_plugin_generator('core_question');
|
||
|
$cat = $questiongenerator->create_question_category([
|
||
|
'contextid' => $context->id,
|
||
|
]);
|
||
|
$othercat = $questiongenerator->create_question_category([
|
||
|
'contextid' => $othercontext->id,
|
||
|
]);
|
||
|
|
||
|
// Create questions:
|
||
|
// Q1 - Created by the UUT, Modified by UUT.
|
||
|
// Q2 - Created by the UUT, Modified by the other user.
|
||
|
// Q3 - Created by the other user, Modified by UUT
|
||
|
// Q4 - Created by the other user, Modified by the other user.
|
||
|
// Q5 - Created by the UUT, Modified by the UUT, but in a different context.
|
||
|
$this->setUser($user);
|
||
|
$q1 = $questiongenerator->create_question('shortanswer', null, array('category' => $cat->id));
|
||
|
$q2 = $questiongenerator->create_question('shortanswer', null, array('category' => $cat->id));
|
||
|
|
||
|
$this->setUser($otheruser);
|
||
|
$questiongenerator->update_question($q2);
|
||
|
$q3 = $questiongenerator->create_question('shortanswer', null, array('category' => $cat->id));
|
||
|
$q4 = $questiongenerator->create_question('shortanswer', null, array('category' => $cat->id));
|
||
|
|
||
|
$this->setUser($user);
|
||
|
$questiongenerator->update_question($q3);
|
||
|
$q5 = $questiongenerator->create_question('shortanswer', null, array('category' => $othercat->id));
|
||
|
|
||
|
// Find out how many questions are in the question bank to start with.
|
||
|
$questioncount = $DB->count_records('question');
|
||
|
|
||
|
// Delete the data and check it is removed.
|
||
|
$this->setUser();
|
||
|
provider::delete_data_for_all_users_in_context($context);
|
||
|
|
||
|
$this->assertEquals($questioncount, $DB->count_records('question'));
|
||
|
|
||
|
$qrecord = $DB->get_record('question', ['id' => $q1->id]);
|
||
|
$this->assertEquals(0, $qrecord->createdby);
|
||
|
$this->assertEquals(0, $qrecord->modifiedby);
|
||
|
|
||
|
$qrecord = $DB->get_record('question', ['id' => $q2->id]);
|
||
|
$this->assertEquals(0, $qrecord->createdby);
|
||
|
$this->assertEquals(0, $qrecord->modifiedby);
|
||
|
|
||
|
$qrecord = $DB->get_record('question', ['id' => $q3->id]);
|
||
|
$this->assertEquals(0, $qrecord->createdby);
|
||
|
$this->assertEquals(0, $qrecord->modifiedby);
|
||
|
|
||
|
$qrecord = $DB->get_record('question', ['id' => $q4->id]);
|
||
|
$this->assertEquals(0, $qrecord->createdby);
|
||
|
$this->assertEquals(0, $qrecord->modifiedby);
|
||
|
|
||
|
$qrecord = $DB->get_record('question', ['id' => $q5->id]);
|
||
|
$this->assertEquals($user->id, $qrecord->createdby);
|
||
|
$this->assertEquals($user->id, $qrecord->modifiedby);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Test for provider::get_users_in_context().
|
||
|
*/
|
||
|
public function test_get_users_in_context() {
|
||
|
$this->resetAfterTest();
|
||
|
|
||
|
$questiongenerator = $this->getDataGenerator()->get_plugin_generator('core_question');
|
||
|
|
||
|
// Create three test users.
|
||
|
$user1 = $this->getDataGenerator()->create_user();
|
||
|
$user2 = $this->getDataGenerator()->create_user();
|
||
|
$user3 = $this->getDataGenerator()->create_user();
|
||
|
|
||
|
// Create one question as each user in different contexts.
|
||
|
$this->setUser($user1);
|
||
|
$user1data = $questiongenerator->setup_course_and_questions();
|
||
|
$this->setUser($user2);
|
||
|
$user2data = $questiongenerator->setup_course_and_questions();
|
||
|
|
||
|
$course1context = \context_course::instance($user1data[1]->id);
|
||
|
$course1questions = $user1data[3];
|
||
|
|
||
|
// Log in as user3 and update the questions in course1.
|
||
|
$this->setUser($user3);
|
||
|
|
||
|
foreach ($course1questions as $question) {
|
||
|
$questiongenerator->update_question($question);
|
||
|
}
|
||
|
|
||
|
$userlist = new \core_privacy\local\request\userlist($course1context, 'core_question');
|
||
|
provider::get_users_in_context($userlist);
|
||
|
|
||
|
// User1 has created questions and user3 has edited them.
|
||
|
$this->assertCount(2, $userlist);
|
||
|
$this->assertEquals(
|
||
|
[$user1->id, $user3->id],
|
||
|
$userlist->get_userids(),
|
||
|
'', 0.0, 10, true);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Test for provider::delete_data_for_users().
|
||
|
*/
|
||
|
public function test_delete_data_for_users() {
|
||
|
global $DB;
|
||
|
|
||
|
$this->resetAfterTest();
|
||
|
|
||
|
$questiongenerator = $this->getDataGenerator()->get_plugin_generator('core_question');
|
||
|
|
||
|
// Create three test users.
|
||
|
$user1 = $this->getDataGenerator()->create_user();
|
||
|
$user2 = $this->getDataGenerator()->create_user();
|
||
|
$user3 = $this->getDataGenerator()->create_user();
|
||
|
|
||
|
// Create one question as each user in different contexts.
|
||
|
$this->setUser($user1);
|
||
|
$course1data = $questiongenerator->setup_course_and_questions();
|
||
|
$course1 = $course1data[1];
|
||
|
$course1qcat = $course1data[2];
|
||
|
$course1questions = $course1data[3];
|
||
|
$course1context = \context_course::instance($course1->id);
|
||
|
|
||
|
// Log in as user2 and update the questions in course1.
|
||
|
$this->setUser($user2);
|
||
|
|
||
|
foreach ($course1questions as $question) {
|
||
|
$questiongenerator->update_question($question);
|
||
|
}
|
||
|
|
||
|
// Add 2 more questions to course1 by user3.
|
||
|
$this->setUser($user3);
|
||
|
$questiongenerator->create_question('shortanswer', null, ['category' => $course1qcat->id]);
|
||
|
$questiongenerator->create_question('shortanswer', null, ['category' => $course1qcat->id]);
|
||
|
|
||
|
// Now, log in as user1 again, and then create a new course and add questions to that.
|
||
|
$this->setUser($user1);
|
||
|
$questiongenerator->setup_course_and_questions();
|
||
|
|
||
|
$approveduserlist = new \core_privacy\local\request\approved_userlist($course1context, 'core_question',
|
||
|
[$user1->id, $user2->id]);
|
||
|
provider::delete_data_for_users($approveduserlist);
|
||
|
|
||
|
// Now, there should be no question related to user1 or user2 in course1.
|
||
|
$this->assertEquals(
|
||
|
0,
|
||
|
$DB->count_records_sql("SELECT COUNT(q.id)
|
||
|
FROM {question} q
|
||
|
JOIN {question_categories} qc ON q.category = qc.id
|
||
|
WHERE qc.contextid = ?
|
||
|
AND (q.createdby = ? OR q.modifiedby = ? OR q.createdby = ? OR q.modifiedby = ?)",
|
||
|
[$course1context->id, $user1->id, $user1->id, $user2->id, $user2->id])
|
||
|
);
|
||
|
|
||
|
// User3 data in course1 should not change.
|
||
|
$this->assertEquals(
|
||
|
2,
|
||
|
$DB->count_records_sql("SELECT COUNT(q.id)
|
||
|
FROM {question} q
|
||
|
JOIN {question_categories} qc ON q.category = qc.id
|
||
|
WHERE qc.contextid = ? AND (q.createdby = ? OR q.modifiedby = ?)",
|
||
|
[$course1context->id, $user3->id, $user3->id])
|
||
|
);
|
||
|
|
||
|
// User1 has authored 2 questions in another course.
|
||
|
$this->assertEquals(
|
||
|
2,
|
||
|
$DB->count_records_select('question', "createdby = ? OR modifiedby = ?", [$user1->id, $user1->id])
|
||
|
);
|
||
|
}
|
||
|
}
|