/user/tests/externallib_test.php
https://bitbucket.org/synergylearning/campusconnect · PHP · 754 lines · 549 code · 106 blank · 99 comment · 54 complexity · c68724b251eb5c671cafaa214ad16782 MD5 · raw file
- <?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/>.
- /**
- * User external PHPunit tests
- *
- * @package core_user
- * @category external
- * @copyright 2012 Jerome Mouneyrac
- * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
- * @since Moodle 2.4
- */
- defined('MOODLE_INTERNAL') || die();
- global $CFG;
- require_once($CFG->dirroot . '/webservice/tests/helpers.php');
- require_once($CFG->dirroot . '/user/externallib.php');
- require_once($CFG->dirroot . '/files/externallib.php');
- class core_user_externallib_testcase extends externallib_advanced_testcase {
- /**
- * Test get_users
- */
- public function test_get_users() {
- global $USER, $CFG;
- $this->resetAfterTest(true);
- $course = self::getDataGenerator()->create_course();
- $user1 = array(
- 'username' => 'usernametest1',
- 'idnumber' => 'idnumbertest1',
- 'firstname' => 'First Name User Test 1',
- 'lastname' => 'Last Name User Test 1',
- 'email' => 'usertest1@email.com',
- 'address' => '2 Test Street Perth 6000 WA',
- 'phone1' => '01010101010',
- 'phone2' => '02020203',
- 'icq' => 'testuser1',
- 'skype' => 'testuser1',
- 'yahoo' => 'testuser1',
- 'aim' => 'testuser1',
- 'msn' => 'testuser1',
- 'department' => 'Department of user 1',
- 'institution' => 'Institution of user 1',
- 'description' => 'This is a description for user 1',
- 'descriptionformat' => FORMAT_MOODLE,
- 'city' => 'Perth',
- 'url' => 'http://moodle.org',
- 'country' => 'au'
- );
- $user1 = self::getDataGenerator()->create_user($user1);
- set_config('usetags', 1);
- require_once($CFG->dirroot . '/user/editlib.php');
- require_once($CFG->dirroot . '/tag/lib.php');
- $user1->interests = array('Cinema', 'Tennis', 'Dance', 'Guitar', 'Cooking');
- useredit_update_interests($user1, $user1->interests);
- $user2 = self::getDataGenerator()->create_user(
- array('username' => 'usernametest2', 'idnumber' => 'idnumbertest2'));
- $generatedusers = array();
- $generatedusers[$user1->id] = $user1;
- $generatedusers[$user2->id] = $user2;
- $context = context_course::instance($course->id);
- $roleid = $this->assignUserCapability('moodle/user:viewdetails', $context->id);
- // Enrol the users in the course.
- $this->getDataGenerator()->enrol_user($user1->id, $course->id, $roleid);
- $this->getDataGenerator()->enrol_user($user2->id, $course->id, $roleid);
- $this->getDataGenerator()->enrol_user($USER->id, $course->id, $roleid);
- // call as admin and receive all possible fields.
- $this->setAdminUser();
- $searchparams = array(
- array('key' => 'invalidkey', 'value' => 'invalidkey'),
- array('key' => 'email', 'value' => $user1->email),
- array('key' => 'firstname', 'value' => $user1->firstname));
- // Call the external function.
- $result = core_user_external::get_users($searchparams);
- // We need to execute the return values cleaning process to simulate the web service server
- $result = external_api::clean_returnvalue(core_user_external::get_users_returns(), $result);
- // Check we retrieve the good total number of enrolled users + no error on capability.
- $expectedreturnedusers = 1;
- $returnedusers = $result['users'];
- $this->assertEquals($expectedreturnedusers, count($returnedusers));
- foreach($returnedusers as $returneduser) {
- $generateduser = ($returneduser['id'] == $USER->id) ?
- $USER : $generatedusers[$returneduser['id']];
- $this->assertEquals($generateduser->username, $returneduser['username']);
- if (!empty($generateduser->idnumber)) {
- $this->assertEquals($generateduser->idnumber, $returneduser['idnumber']);
- }
- $this->assertEquals($generateduser->firstname, $returneduser['firstname']);
- $this->assertEquals($generateduser->lastname, $returneduser['lastname']);
- if ($generateduser->email != $USER->email) { // Don't check the tmp modified $USER email.
- $this->assertEquals($generateduser->email, $returneduser['email']);
- }
- if (!empty($generateduser->address)) {
- $this->assertEquals($generateduser->address, $returneduser['address']);
- }
- if (!empty($generateduser->phone1)) {
- $this->assertEquals($generateduser->phone1, $returneduser['phone1']);
- }
- if (!empty($generateduser->phone2)) {
- $this->assertEquals($generateduser->phone2, $returneduser['phone2']);
- }
- if (!empty($generateduser->icq)) {
- $this->assertEquals($generateduser->icq, $returneduser['icq']);
- }
- if (!empty($generateduser->skype)) {
- $this->assertEquals($generateduser->skype, $returneduser['skype']);
- }
- if (!empty($generateduser->yahoo)) {
- $this->assertEquals($generateduser->yahoo, $returneduser['yahoo']);
- }
- if (!empty($generateduser->aim)) {
- $this->assertEquals($generateduser->aim, $returneduser['aim']);
- }
- if (!empty($generateduser->msn)) {
- $this->assertEquals($generateduser->msn, $returneduser['msn']);
- }
- if (!empty($generateduser->department)) {
- $this->assertEquals($generateduser->department, $returneduser['department']);
- }
- if (!empty($generateduser->institution)) {
- $this->assertEquals($generateduser->institution, $returneduser['institution']);
- }
- if (!empty($generateduser->description)) {
- $this->assertEquals($generateduser->description, $returneduser['description']);
- }
- if (!empty($generateduser->descriptionformat)) {
- $this->assertEquals(FORMAT_HTML, $returneduser['descriptionformat']);
- }
- if (!empty($generateduser->city)) {
- $this->assertEquals($generateduser->city, $returneduser['city']);
- }
- if (!empty($generateduser->country)) {
- $this->assertEquals($generateduser->country, $returneduser['country']);
- }
- if (!empty($generateduser->url)) {
- $this->assertEquals($generateduser->url, $returneduser['url']);
- }
- if (!empty($CFG->usetags) and !empty($generateduser->interests)) {
- $this->assertEquals(implode(', ', $generateduser->interests), $returneduser['interests']);
- }
- }
- // Test the invalid key warning.
- $warnings = $result['warnings'];
- $this->assertEquals(count($warnings), 1);
- $warning = array_pop($warnings);
- $this->assertEquals($warning['item'], 'invalidkey');
- $this->assertEquals($warning['warningcode'], 'invalidfieldparameter');
- // Test sending twice the same search field.
- try {
- $searchparams = array(
- array('key' => 'firstname', 'value' => 'Canard'),
- array('key' => 'email', 'value' => $user1->email),
- array('key' => 'firstname', 'value' => $user1->firstname));
- // Call the external function.
- $result = core_user_external::get_users($searchparams);
- $this->fail('Expecting \'keyalreadyset\' moodle_exception to be thrown.');
- } catch (moodle_exception $e) {
- $this->assertEquals('keyalreadyset', $e->errorcode);
- } catch (Exception $e) {
- $this->fail('Expecting \'keyalreadyset\' moodle_exception to be thrown.');
- }
- }
- /**
- * Test get_users_by_field
- */
- public function test_get_users_by_field() {
- global $USER, $CFG;
- $this->resetAfterTest(true);
- $course = self::getDataGenerator()->create_course();
- $user1 = array(
- 'username' => 'usernametest1',
- 'idnumber' => 'idnumbertest1',
- 'firstname' => 'First Name User Test 1',
- 'lastname' => 'Last Name User Test 1',
- 'email' => 'usertest1@email.com',
- 'address' => '2 Test Street Perth 6000 WA',
- 'phone1' => '01010101010',
- 'phone2' => '02020203',
- 'icq' => 'testuser1',
- 'skype' => 'testuser1',
- 'yahoo' => 'testuser1',
- 'aim' => 'testuser1',
- 'msn' => 'testuser1',
- 'department' => 'Department of user 1',
- 'institution' => 'Institution of user 1',
- 'description' => 'This is a description for user 1',
- 'descriptionformat' => FORMAT_MOODLE,
- 'city' => 'Perth',
- 'url' => 'http://moodle.org',
- 'country' => 'au'
- );
- $user1 = self::getDataGenerator()->create_user($user1);
- if (!empty($CFG->usetags)) {
- require_once($CFG->dirroot . '/user/editlib.php');
- require_once($CFG->dirroot . '/tag/lib.php');
- $user1->interests = array('Cinema', 'Tennis', 'Dance', 'Guitar', 'Cooking');
- useredit_update_interests($user1, $user1->interests);
- }
- $user2 = self::getDataGenerator()->create_user(
- array('username' => 'usernametest2', 'idnumber' => 'idnumbertest2'));
- $generatedusers = array();
- $generatedusers[$user1->id] = $user1;
- $generatedusers[$user2->id] = $user2;
- $context = context_course::instance($course->id);
- $roleid = $this->assignUserCapability('moodle/user:viewdetails', $context->id);
- // Enrol the users in the course.
- $this->getDataGenerator()->enrol_user($user1->id, $course->id, $roleid, 'manual');
- $this->getDataGenerator()->enrol_user($user2->id, $course->id, $roleid, 'manual');
- $this->getDataGenerator()->enrol_user($USER->id, $course->id, $roleid, 'manual');
- // call as admin and receive all possible fields.
- $this->setAdminUser();
- $fieldstosearch = array('id', 'idnumber', 'username', 'email');
- foreach ($fieldstosearch as $fieldtosearch) {
- // Call the external function.
- $returnedusers = core_user_external::get_users_by_field($fieldtosearch,
- array($USER->{$fieldtosearch}, $user1->{$fieldtosearch}, $user2->{$fieldtosearch}));
- // Expected result differ following the searched field
- // Admin user in the PHPunit framework doesn't have email or idnumber.
- if ($fieldtosearch == 'email' or $fieldtosearch == 'idnumber') {
- $expectedreturnedusers = 2;
- } else {
- $expectedreturnedusers = 3;
- }
- // Check we retrieve the good total number of enrolled users + no error on capability.
- $this->assertEquals($expectedreturnedusers, count($returnedusers));
- foreach($returnedusers as $returneduser) {
- $generateduser = ($returneduser['id'] == $USER->id) ?
- $USER : $generatedusers[$returneduser['id']];
- $this->assertEquals($generateduser->username, $returneduser['username']);
- if (!empty($generateduser->idnumber)) {
- $this->assertEquals($generateduser->idnumber, $returneduser['idnumber']);
- }
- $this->assertEquals($generateduser->firstname, $returneduser['firstname']);
- $this->assertEquals($generateduser->lastname, $returneduser['lastname']);
- if ($generateduser->email != $USER->email) { //don't check the tmp modified $USER email
- $this->assertEquals($generateduser->email, $returneduser['email']);
- }
- if (!empty($generateduser->address)) {
- $this->assertEquals($generateduser->address, $returneduser['address']);
- }
- if (!empty($generateduser->phone1)) {
- $this->assertEquals($generateduser->phone1, $returneduser['phone1']);
- }
- if (!empty($generateduser->phone2)) {
- $this->assertEquals($generateduser->phone2, $returneduser['phone2']);
- }
- if (!empty($generateduser->icq)) {
- $this->assertEquals($generateduser->icq, $returneduser['icq']);
- }
- if (!empty($generateduser->skype)) {
- $this->assertEquals($generateduser->skype, $returneduser['skype']);
- }
- if (!empty($generateduser->yahoo)) {
- $this->assertEquals($generateduser->yahoo, $returneduser['yahoo']);
- }
- if (!empty($generateduser->aim)) {
- $this->assertEquals($generateduser->aim, $returneduser['aim']);
- }
- if (!empty($generateduser->msn)) {
- $this->assertEquals($generateduser->msn, $returneduser['msn']);
- }
- if (!empty($generateduser->department)) {
- $this->assertEquals($generateduser->department, $returneduser['department']);
- }
- if (!empty($generateduser->institution)) {
- $this->assertEquals($generateduser->institution, $returneduser['institution']);
- }
- if (!empty($generateduser->description)) {
- $this->assertEquals($generateduser->description, $returneduser['description']);
- }
- if (!empty($generateduser->descriptionformat) and isset($returneduser['descriptionformat'])) {
- $this->assertEquals($generateduser->descriptionformat, $returneduser['descriptionformat']);
- }
- if (!empty($generateduser->city)) {
- $this->assertEquals($generateduser->city, $returneduser['city']);
- }
- if (!empty($generateduser->country)) {
- $this->assertEquals($generateduser->country, $returneduser['country']);
- }
- if (!empty($generateduser->url)) {
- $this->assertEquals($generateduser->url, $returneduser['url']);
- }
- if (!empty($CFG->usetags) and !empty($generateduser->interests)) {
- $this->assertEquals(implode(', ', $generateduser->interests), $returneduser['interests']);
- }
- }
- }
- // Test that no result are returned for search by username if we are not admin
- $this->setGuestUser();
- // Call the external function.
- $returnedusers = core_user_external::get_users_by_field('username',
- array($USER->username, $user1->username, $user2->username));
- // Only the own $USER username should be returned
- $this->assertEquals(1, count($returnedusers));
- // And finally test as one of the enrolled users.
- $this->setUser($user1);
- // Call the external function.
- $returnedusers = core_user_external::get_users_by_field('username',
- array($USER->username, $user1->username, $user2->username));
- // Only the own $USER username should be returned still.
- $this->assertEquals(1, count($returnedusers));
- }
- /**
- * Test get_course_user_profiles
- */
- public function test_get_course_user_profiles() {
- global $USER, $CFG;
- $this->resetAfterTest(true);
- $course = self::getDataGenerator()->create_course();
- $user1 = array(
- 'username' => 'usernametest1',
- 'idnumber' => 'idnumbertest1',
- 'firstname' => 'First Name User Test 1',
- 'lastname' => 'Last Name User Test 1',
- 'email' => 'usertest1@email.com',
- 'address' => '2 Test Street Perth 6000 WA',
- 'phone1' => '01010101010',
- 'phone2' => '02020203',
- 'icq' => 'testuser1',
- 'skype' => 'testuser1',
- 'yahoo' => 'testuser1',
- 'aim' => 'testuser1',
- 'msn' => 'testuser1',
- 'department' => 'Department of user 1',
- 'institution' => 'Institution of user 1',
- 'description' => 'This is a description for user 1',
- 'descriptionformat' => FORMAT_MOODLE,
- 'city' => 'Perth',
- 'url' => 'http://moodle.org',
- 'country' => 'au'
- );
- $user1 = self::getDataGenerator()->create_user($user1);
- if (!empty($CFG->usetags)) {
- require_once($CFG->dirroot . '/user/editlib.php');
- require_once($CFG->dirroot . '/tag/lib.php');
- $user1->interests = array('Cinema', 'Tennis', 'Dance', 'Guitar', 'Cooking');
- useredit_update_interests($user1, $user1->interests);
- }
- $user2 = self::getDataGenerator()->create_user();
- $context = context_course::instance($course->id);
- $roleid = $this->assignUserCapability('moodle/user:viewdetails', $context->id);
- // Enrol the users in the course.
- $this->getDataGenerator()->enrol_user($user1->id, $course->id, $roleid, 'manual');
- $this->getDataGenerator()->enrol_user($user2->id, $course->id, $roleid, 'manual');
- $this->getDataGenerator()->enrol_user($USER->id, $course->id, $roleid, 'manual');
- // Call the external function.
- $enrolledusers = core_user_external::get_course_user_profiles(array(
- array('userid' => $USER->id, 'courseid' => $course->id),
- array('userid' => $user1->id, 'courseid' => $course->id),
- array('userid' => $user2->id, 'courseid' => $course->id)));
- // We need to execute the return values cleaning process to simulate the web service server.
- $enrolledusers = external_api::clean_returnvalue(core_user_external::get_course_user_profiles_returns(), $enrolledusers);
- // Check we retrieve the good total number of enrolled users + no error on capability.
- $this->assertEquals(3, count($enrolledusers));
- // Do the same call as admin to receive all possible fields.
- $this->setAdminUser();
- $USER->email = "admin@fakeemail.com";
- // Call the external function.
- $enrolledusers = core_user_external::get_course_user_profiles(array(
- array('userid' => $USER->id, 'courseid' => $course->id),
- array('userid' => $user1->id, 'courseid' => $course->id),
- array('userid' => $user2->id, 'courseid' => $course->id)));
- // We need to execute the return values cleaning process to simulate the web service server.
- $enrolledusers = external_api::clean_returnvalue(core_user_external::get_course_user_profiles_returns(), $enrolledusers);
- foreach($enrolledusers as $enrolleduser) {
- if ($enrolleduser['username'] == $user1->username) {
- $this->assertEquals($user1->idnumber, $enrolleduser['idnumber']);
- $this->assertEquals($user1->firstname, $enrolleduser['firstname']);
- $this->assertEquals($user1->lastname, $enrolleduser['lastname']);
- $this->assertEquals($user1->email, $enrolleduser['email']);
- $this->assertEquals($user1->address, $enrolleduser['address']);
- $this->assertEquals($user1->phone1, $enrolleduser['phone1']);
- $this->assertEquals($user1->phone2, $enrolleduser['phone2']);
- $this->assertEquals($user1->icq, $enrolleduser['icq']);
- $this->assertEquals($user1->skype, $enrolleduser['skype']);
- $this->assertEquals($user1->yahoo, $enrolleduser['yahoo']);
- $this->assertEquals($user1->aim, $enrolleduser['aim']);
- $this->assertEquals($user1->msn, $enrolleduser['msn']);
- $this->assertEquals($user1->department, $enrolleduser['department']);
- $this->assertEquals($user1->institution, $enrolleduser['institution']);
- $this->assertEquals($user1->description, $enrolleduser['description']);
- $this->assertEquals(FORMAT_HTML, $enrolleduser['descriptionformat']);
- $this->assertEquals($user1->city, $enrolleduser['city']);
- $this->assertEquals($user1->country, $enrolleduser['country']);
- $this->assertEquals($user1->url, $enrolleduser['url']);
- if (!empty($CFG->usetags)) {
- $this->assertEquals(implode(', ', $user1->interests), $enrolleduser['interests']);
- }
- }
- }
- }
- /**
- * Test create_users
- */
- public function test_create_users() {
- global $USER, $CFG, $DB;
- $this->resetAfterTest(true);
- $user1 = array(
- 'username' => 'usernametest1',
- 'password' => 'Moodle2012!',
- 'idnumber' => 'idnumbertest1',
- 'firstname' => 'First Name User Test 1',
- 'lastname' => 'Last Name User Test 1',
- 'middlename' => 'Middle Name User Test 1',
- 'lastnamephonetic' => '最後のお名前のテスト一号',
- 'firstnamephonetic' => 'お名前のテスト一号',
- 'alternatename' => 'Alternate Name User Test 1',
- 'email' => 'usertest1@email.com',
- 'description' => 'This is a description for user 1',
- 'city' => 'Perth',
- 'country' => 'au'
- );
- $context = context_system::instance();
- $roleid = $this->assignUserCapability('moodle/user:create', $context->id);
- // Call the external function.
- $createdusers = core_user_external::create_users(array($user1));
- // We need to execute the return values cleaning process to simulate the web service server.
- $createdusers = external_api::clean_returnvalue(core_user_external::create_users_returns(), $createdusers);
- // Check we retrieve the good total number of created users + no error on capability.
- $this->assertEquals(1, count($createdusers));
- foreach($createdusers as $createduser) {
- $dbuser = $DB->get_record('user', array('id' => $createduser['id']));
- $this->assertEquals($dbuser->username, $user1['username']);
- $this->assertEquals($dbuser->idnumber, $user1['idnumber']);
- $this->assertEquals($dbuser->firstname, $user1['firstname']);
- $this->assertEquals($dbuser->lastname, $user1['lastname']);
- $this->assertEquals($dbuser->email, $user1['email']);
- $this->assertEquals($dbuser->description, $user1['description']);
- $this->assertEquals($dbuser->city, $user1['city']);
- $this->assertEquals($dbuser->country, $user1['country']);
- }
- // Call without required capability
- $this->unassignUserCapability('moodle/user:create', $context->id, $roleid);
- $this->setExpectedException('required_capability_exception');
- $createdusers = core_user_external::create_users(array($user1));
- }
- /**
- * Test delete_users
- */
- public function test_delete_users() {
- global $USER, $CFG, $DB;
- $this->resetAfterTest(true);
- $user1 = self::getDataGenerator()->create_user();
- $user2 = self::getDataGenerator()->create_user();
- // Check the users were correctly created.
- $this->assertEquals(2, $DB->count_records_select('user', 'deleted = 0 AND (id = :userid1 OR id = :userid2)',
- array('userid1' => $user1->id, 'userid2' => $user2->id)));
- $context = context_system::instance();
- $roleid = $this->assignUserCapability('moodle/user:delete', $context->id);
- // Call the external function.
- core_user_external::delete_users(array($user1->id, $user2->id));
- // Check we retrieve no users + no error on capability.
- $this->assertEquals(0, $DB->count_records_select('user', 'deleted = 0 AND (id = :userid1 OR id = :userid2)',
- array('userid1' => $user1->id, 'userid2' => $user2->id)));
- // Call without required capability.
- $this->unassignUserCapability('moodle/user:delete', $context->id, $roleid);
- $this->setExpectedException('required_capability_exception');
- core_user_external::delete_users(array($user1->id, $user2->id));
- }
- /**
- * Test get_users_by_id
- */
- public function test_get_users_by_id() {
- global $USER, $CFG;
- $this->resetAfterTest(true);
- $user1 = array(
- 'username' => 'usernametest1',
- 'idnumber' => 'idnumbertest1',
- 'firstname' => 'First Name User Test 1',
- 'lastname' => 'Last Name User Test 1',
- 'email' => 'usertest1@email.com',
- 'address' => '2 Test Street Perth 6000 WA',
- 'phone1' => '01010101010',
- 'phone2' => '02020203',
- 'icq' => 'testuser1',
- 'skype' => 'testuser1',
- 'yahoo' => 'testuser1',
- 'aim' => 'testuser1',
- 'msn' => 'testuser1',
- 'department' => 'Department of user 1',
- 'institution' => 'Institution of user 1',
- 'description' => 'This is a description for user 1',
- 'descriptionformat' => FORMAT_MOODLE,
- 'city' => 'Perth',
- 'url' => 'http://moodle.org',
- 'country' => 'au'
- );
- $user1 = self::getDataGenerator()->create_user($user1);
- if (!empty($CFG->usetags)) {
- require_once($CFG->dirroot . '/user/editlib.php');
- require_once($CFG->dirroot . '/tag/lib.php');
- $user1->interests = array('Cinema', 'Tennis', 'Dance', 'Guitar', 'Cooking');
- useredit_update_interests($user1, $user1->interests);
- }
- $user2 = self::getDataGenerator()->create_user();
- $context = context_system::instance();
- $roleid = $this->assignUserCapability('moodle/user:viewdetails', $context->id);
- // Call the external function.
- $returnedusers = core_user_external::get_users_by_id(array(
- $USER->id, $user1->id, $user2->id));
- // We need to execute the return values cleaning process to simulate the web service server.
- $returnedusers = external_api::clean_returnvalue(core_user_external::get_users_by_id_returns(), $returnedusers);
- // Check we retrieve the good total number of enrolled users + no error on capability.
- $this->assertEquals(3, count($returnedusers));
- // Do the same call as admin to receive all possible fields.
- $this->setAdminUser();
- $USER->email = "admin@fakeemail.com";
- // Call the external function.
- $returnedusers = core_user_external::get_users_by_id(array(
- $USER->id, $user1->id, $user2->id));
- // We need to execute the return values cleaning process to simulate the web service server.
- $returnedusers = external_api::clean_returnvalue(core_user_external::get_users_by_id_returns(), $returnedusers);
- foreach($returnedusers as $enrolleduser) {
- if ($enrolleduser['username'] == $user1->username) {
- $this->assertEquals($user1->idnumber, $enrolleduser['idnumber']);
- $this->assertEquals($user1->firstname, $enrolleduser['firstname']);
- $this->assertEquals($user1->lastname, $enrolleduser['lastname']);
- $this->assertEquals($user1->email, $enrolleduser['email']);
- $this->assertEquals($user1->address, $enrolleduser['address']);
- $this->assertEquals($user1->phone1, $enrolleduser['phone1']);
- $this->assertEquals($user1->phone2, $enrolleduser['phone2']);
- $this->assertEquals($user1->icq, $enrolleduser['icq']);
- $this->assertEquals($user1->skype, $enrolleduser['skype']);
- $this->assertEquals($user1->yahoo, $enrolleduser['yahoo']);
- $this->assertEquals($user1->aim, $enrolleduser['aim']);
- $this->assertEquals($user1->msn, $enrolleduser['msn']);
- $this->assertEquals($user1->department, $enrolleduser['department']);
- $this->assertEquals($user1->institution, $enrolleduser['institution']);
- $this->assertEquals($user1->description, $enrolleduser['description']);
- $this->assertEquals(FORMAT_HTML, $enrolleduser['descriptionformat']);
- $this->assertEquals($user1->city, $enrolleduser['city']);
- $this->assertEquals($user1->country, $enrolleduser['country']);
- $this->assertEquals($user1->url, $enrolleduser['url']);
- if (!empty($CFG->usetags)) {
- $this->assertEquals(implode(', ', $user1->interests), $enrolleduser['interests']);
- }
- }
- }
- }
- /**
- * Test update_users
- */
- public function test_update_users() {
- global $USER, $CFG, $DB;
- $this->resetAfterTest(true);
- $user1 = self::getDataGenerator()->create_user();
- $user1 = array(
- 'id' => $user1->id,
- 'username' => 'usernametest1',
- 'password' => 'Moodle2012!',
- 'idnumber' => 'idnumbertest1',
- 'firstname' => 'First Name User Test 1',
- 'lastname' => 'Last Name User Test 1',
- 'middlename' => 'Middle Name User Test 1',
- 'lastnamephonetic' => '最後のお名前のテスト一号',
- 'firstnamephonetic' => 'お名前のテスト一号',
- 'alternatename' => 'Alternate Name User Test 1',
- 'email' => 'usertest1@email.com',
- 'description' => 'This is a description for user 1',
- 'city' => 'Perth',
- 'country' => 'au'
- );
- $context = context_system::instance();
- $roleid = $this->assignUserCapability('moodle/user:update', $context->id);
- // Call the external function.
- core_user_external::update_users(array($user1));
- $dbuser = $DB->get_record('user', array('id' => $user1['id']));
- $this->assertEquals($dbuser->username, $user1['username']);
- $this->assertEquals($dbuser->idnumber, $user1['idnumber']);
- $this->assertEquals($dbuser->firstname, $user1['firstname']);
- $this->assertEquals($dbuser->lastname, $user1['lastname']);
- $this->assertEquals($dbuser->email, $user1['email']);
- $this->assertEquals($dbuser->description, $user1['description']);
- $this->assertEquals($dbuser->city, $user1['city']);
- $this->assertEquals($dbuser->country, $user1['country']);
- // Call without required capability.
- $this->unassignUserCapability('moodle/user:update', $context->id, $roleid);
- $this->setExpectedException('required_capability_exception');
- core_user_external::update_users(array($user1));
- }
- /**
- * Test add_user_private_files
- */
- public function test_add_user_private_files() {
- global $USER, $CFG, $DB;
- $this->resetAfterTest(true);
- $context = context_system::instance();
- $roleid = $this->assignUserCapability('moodle/user:manageownfiles', $context->id);
- $context = context_user::instance($USER->id);
- $contextid = $context->id;
- $component = "user";
- $filearea = "draft";
- $itemid = 0;
- $filepath = "/";
- $filename = "Simple.txt";
- $filecontent = base64_encode("Let us create a nice simple file");
- $contextlevel = null;
- $instanceid = null;
- $browser = get_file_browser();
- // Call the files api to create a file.
- $draftfile = core_files_external::upload($contextid, $component, $filearea, $itemid, $filepath,
- $filename, $filecontent, $contextlevel, $instanceid);
- $draftid = $draftfile['itemid'];
- // Make sure the file was created.
- $file = $browser->get_file_info($context, $component, $filearea, $draftid, $filepath, $filename);
- $this->assertNotEmpty($file);
- // Make sure the file does not exist in the user private files.
- $file = $browser->get_file_info($context, $component, 'private', 0, $filepath, $filename);
- $this->assertEmpty($file);
- // Call the external function.
- core_user_external::add_user_private_files($draftid);
- // Make sure the file was added to the user private files.
- $file = $browser->get_file_info($context, $component, 'private', 0, $filepath, $filename);
- $this->assertNotEmpty($file);
- }
- /**
- * Test add user device
- */
- public function test_add_user_device() {
- global $USER, $CFG, $DB;
- $this->resetAfterTest(true);
- $device = array(
- 'appid' => 'com.moodle.moodlemobile',
- 'name' => 'occam',
- 'model' => 'Nexus 4',
- 'platform' => 'Android',
- 'version' => '4.2.2',
- 'pushid' => 'apushdkasdfj4835',
- 'uuid' => 'asdnfl348qlksfaasef859'
- );
- // Call the external function.
- core_user_external::add_user_device($device['appid'], $device['name'], $device['model'], $device['platform'],
- $device['version'], $device['pushid'], $device['uuid']);
- $created = $DB->get_record('user_devices', array('pushid' => $device['pushid']));
- $created = (array) $created;
- $this->assertEquals($device, array_intersect_key((array)$created, $device));
- }
- }