2 // This file is part of Moodle - http://moodle.org/
4 // Moodle is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
9 // Moodle is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License
15 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
17 defined('MOODLE_INTERNAL') || die();
20 require_once($CFG->dirroot . '/webservice/externallib.php');
21 require_once($CFG->dirroot . '/webservice/tests/helpers.php');
24 * External course functions unit tests
26 * @package core_webservice
28 * @copyright 2012 Paul Charsley
29 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
31 class core_webservice_externallib_testcase extends externallib_advanced_testcase {
33 public function setUp() {
34 // Calling parent is good, always
37 // We always need enabled WS for this testcase
38 set_config('enablewebservices', '1');
41 public function test_get_site_info() {
42 global $DB, $USER, $CFG;
44 $this->resetAfterTest(true);
46 // This is the info we are going to check
47 set_config('release', '2.4dev (Build: 20120823)');
48 set_config('version', '2012083100.00');
52 set_config('maxbytes', $maxbytes);
53 set_config('userquota', $userquota);
57 $user['username'] = 'johnd';
58 $user['firstname'] = 'John';
59 $user['lastname'] = 'Doe';
60 self::setUser(self::getDataGenerator()->create_user($user));
62 // Add a web service and token.
63 $webservice = new stdClass();
64 $webservice->name = 'Test web service';
65 $webservice->enabled = true;
66 $webservice->restrictedusers = false;
67 $webservice->component = 'moodle';
68 $webservice->timecreated = time();
69 $webservice->downloadfiles = true;
70 $webservice->uploadfiles = true;
71 $externalserviceid = $DB->insert_record('external_services', $webservice);
73 // Add a function to the service
74 $DB->insert_record('external_services_functions', array('externalserviceid' => $externalserviceid,
75 'functionname' => 'core_course_get_contents'));
77 $_POST['wstoken'] = 'testtoken';
78 $externaltoken = new stdClass();
79 $externaltoken->token = 'testtoken';
80 $externaltoken->tokentype = 0;
81 $externaltoken->userid = $USER->id;
82 $externaltoken->externalserviceid = $externalserviceid;
83 $externaltoken->contextid = 1;
84 $externaltoken->creatorid = $USER->id;
85 $externaltoken->timecreated = time();
86 $DB->insert_record('external_tokens', $externaltoken);
88 $siteinfo = core_webservice_external::get_site_info();
90 // We need to execute the return values cleaning process to simulate the web service server.
91 $siteinfo = external_api::clean_returnvalue(core_webservice_external::get_site_info_returns(), $siteinfo);
93 $this->assertEquals('johnd', $siteinfo['username']);
94 $this->assertEquals('John', $siteinfo['firstname']);
95 $this->assertEquals('Doe', $siteinfo['lastname']);
96 $this->assertEquals(current_language(), $siteinfo['lang']);
97 $this->assertEquals($USER->id, $siteinfo['userid']);
98 $this->assertEquals(true, $siteinfo['downloadfiles']);
99 $this->assertEquals($CFG->release, $siteinfo['release']);
100 $this->assertEquals($CFG->version, $siteinfo['version']);
101 $this->assertEquals($CFG->mobilecssurl, $siteinfo['mobilecssurl']);
102 $this->assertEquals(count($siteinfo['functions']), 1);
103 $function = array_pop($siteinfo['functions']);
104 $this->assertEquals($function['name'], 'core_course_get_contents');
105 $this->assertEquals($function['version'], $siteinfo['version']);
106 $this->assertEquals(1, $siteinfo['downloadfiles']);
107 $this->assertEquals(1, $siteinfo['uploadfiles']);
109 foreach ($siteinfo['advancedfeatures'] as $feature) {
110 if ($feature['name'] == 'mnet_dispatcher_mode') {
111 if ($CFG->mnet_dispatcher_mode == 'off') {
112 $this->assertEquals(0, $feature['value']);
114 $this->assertEquals(1, $feature['value']);
117 $this->assertEquals($CFG->{$feature['name']}, $feature['value']);
121 $this->assertEquals($userquota, $siteinfo['userquota']);
122 // We can use the function for the expectation because USER_CAN_IGNORE_FILE_SIZE_LIMITS is
123 // covered below for admin user. This test is for user not allowed to ignore limits.
124 $this->assertEquals(get_max_upload_file_size($maxbytes), $siteinfo['usermaxuploadfilesize']);
125 $this->assertEquals(true, $siteinfo['usercanmanageownfiles']);
127 $this->assertEquals(HOMEPAGE_MY, $siteinfo['userhomepage']);
130 $this->setAdminUser();
132 // Set a fake token for the user admin.
133 $_POST['wstoken'] = 'testtoken';
134 $externaltoken = new stdClass();
135 $externaltoken->token = 'testtoken';
136 $externaltoken->tokentype = 0;
137 $externaltoken->userid = $USER->id;
138 $externaltoken->externalserviceid = $externalserviceid;
139 $externaltoken->contextid = 1;
140 $externaltoken->creatorid = $USER->id;
141 $externaltoken->timecreated = time();
142 $DB->insert_record('external_tokens', $externaltoken);
144 // Set a home page by user preferences.
145 $CFG->defaulthomepage = HOMEPAGE_USER;
146 set_user_preference('user_home_page_preference', HOMEPAGE_SITE);
148 $siteinfo = core_webservice_external::get_site_info();
150 // We need to execute the return values cleaning process to simulate the web service server.
151 $siteinfo = external_api::clean_returnvalue(core_webservice_external::get_site_info_returns(), $siteinfo);
153 $this->assertEquals(0, $siteinfo['userquota']);
154 $this->assertEquals(USER_CAN_IGNORE_FILE_SIZE_LIMITS, $siteinfo['usermaxuploadfilesize']);
155 $this->assertEquals(true, $siteinfo['usercanmanageownfiles']);
157 $this->assertEquals(HOMEPAGE_SITE, $siteinfo['userhomepage']);