ÿØÿà JFIF    ÿÛ „  ( %"1!%)+...383,7(-.+  -+++--++++---+-+-----+---------------+---+-++7-----ÿÀ  ß â" ÿÄ     ÿÄ H    !1AQaq"‘¡2B±ÁÑð#R“Ò Tbr‚²á3csƒ’ÂñDS¢³$CÿÄ   ÿÄ %  !1AQa"23‘ÿÚ   ? ôÿ ¨pŸªáÿ —åYõõ\?àÒü©ŠÄï¨pŸªáÿ —åYõõ\?àÓü©ŠÄá 0Ÿªáÿ Ÿå[úƒ ú®ði~TÁbqÐ8OÕpÿ ƒOò¤Oè`–RÂáœá™êi€ßÉ< FtŸI“öÌ8úDf´°å}“¾œ6  öFá°y¥jñÇh†ˆ¢ã/ÃÐ:ªcÈ "Y¡ðÑl>ÿ ”ÏËte:qž\oäŠe÷󲍷˜HT4&ÿ ÓÐü6ö®¿øþßèô Ÿ•7Ñi’•j|“ñì>b…þS?*Óôÿ ÓÐü*h¥£ír¶ü UãS炟[AÐaè[ûª•õ&õj?†Éö+EzP—WeÒírJFt ‘BŒ†Ï‡%#tE Øz ¥OÛ«!1›üä±Í™%ºÍãö]°î(–:@<‹ŒÊö×òÆt¦ãº+‡¦%ÌÁ²h´OƒJŒtMÜ>ÀÜÊw3Y´•牋4ǍýʏTì>œú=Íwhyë,¾Ôò×õ¿ßÊa»«þˆѪQ|%6ž™A õ%:øj<>É—ÿ Å_ˆCbõ¥š±ý¯Ýƒï…¶|RëócÍf溪“t.СøTÿ *Ä¿-{†çàczůŽ_–^XþŒ±miB[X±d 1,é”zEù»& î9gœf™9Ð'.;—™i}!ôšåîqêÛ٤ёý£½ÆA–àôe"A$˝Úsäÿ ÷Û #°xŸëí(l »ý3—¥5m! rt`†0~'j2(]S¦¦kv,ÚÇ l¦øJA£Šƒ J3E8ÙiŽ:cÉžúeZ°€¯\®kÖ(79«Ž:¯X”¾³Š&¡* ….‰Ž(ÜíŸ2¥ª‡×Hi²TF¤ò[¨íÈRëÉ䢍mgÑ.Ÿ<öäS0í„ǹÁU´f#Vß;Õ–…P@3ío<ä-±»Ž.L|kªÀê›fÂ6@»eu‚|ÓaÞÆŸ…¨ááå>åŠ?cKü6ùTÍÆ”†sĤÚ;H2RÚ†õ\Ö·Ÿn'¾ ñ#ºI¤Å´%çÁ­‚â7›‹qT3Iï¨ÖÚ5I7Ë!ÅOóŸ¶øÝñØôת¦$Tcö‘[«Ö³šÒ';Aþ ¸èíg A2Z"i¸vdÄ÷.iõ®§)¿]¤À†–‡É&ä{V¶iŽ”.Ó×Õÿ û?h¬Mt–íª[ÿ Ñÿ ÌV(í}=ibÔ¡›¥¢±b Lô¥‡piη_Z<‡z§èŒ)iÖwiÇ 2hÙ3·=’d÷8éŽ1¦¸c¤µ€7›7Ø ð\á)} ¹fËí›pAÃL%âc2 í§æQz¿;T8sæ°qø)QFMð‰XŒÂ±N¢aF¨…8¯!U  Z©RÊ ÖPVÄÀÍin™Ì-GˆªÅËŠ›•zË}º±ŽÍFò¹}Uw×#ä5B¤{î}Ð<ÙD é©¤&‡ïDbàÁôMÁ.. namespace core; /** * Tests for myprofilelib apis. * * @package core * @copyright 2015 onwards Ankit agarwal * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later. */ class myprofilelib_test extends \advanced_testcase { /** * @var stdClass The user. */ private $user; /** * @var stdClass The course. */ private $course; /** * @var \core_user\output\myprofile\tree The navigation tree. */ private $tree; /** * Load required test libraries */ public static function setUpBeforeClass(): void { global $CFG; require_once($CFG->dirroot . '/lib/myprofilelib.php'); require_once($CFG->dirroot . '/user/profile/lib.php'); } public function setUp(): void { // Set the $PAGE->url value so core_myprofile_navigation() doesn't complain. global $PAGE; $PAGE->set_url('/test'); $this->user = $this->getDataGenerator()->create_user(); $this->course = $this->getDataGenerator()->create_course(); $this->tree = new \core_user\output\myprofile\tree(); $this->resetAfterTest(); } /** * Tests the core_myprofile_navigation() function as an admin viewing a user's course profile. */ public function test_core_myprofile_navigation_as_admin() { $this->setAdminUser(); $iscurrentuser = false; // Test tree as admin user. core_myprofile_navigation($this->tree, $this->user, $iscurrentuser, $this->course); $reflector = new \ReflectionObject($this->tree); $categories = $reflector->getProperty('categories'); $categories->setAccessible(true); $cats = $categories->getValue($this->tree); $this->assertArrayHasKey('contact', $cats); $this->assertArrayHasKey('coursedetails', $cats); $this->assertArrayHasKey('miscellaneous', $cats); $this->assertArrayHasKey('reports', $cats); $this->assertArrayHasKey('administration', $cats); $this->assertArrayHasKey('loginactivity', $cats); $nodes = $reflector->getProperty('nodes'); $nodes->setAccessible(true); $this->assertArrayHasKey('fullprofile', $nodes->getValue($this->tree)); } /** * Tests the core_myprofile_navigation() function as a user without permission to view the full * profile of another another user. */ public function test_core_myprofile_navigation_course_without_permission() { // User without permission. $this->setUser($this->getDataGenerator()->create_user()); $iscurrentuser = false; core_myprofile_navigation($this->tree, $this->user, $iscurrentuser, $this->course); $reflector = new \ReflectionObject($this->tree); $nodes = $reflector->getProperty('nodes'); $nodes->setAccessible(true); $this->assertArrayNotHasKey('fullprofile', $nodes->getValue($this->tree)); } /** * Tests the core_myprofile_navigation() function as the currently logged in user. */ public function test_core_myprofile_navigation_profile_link_as_current_user() { $this->setUser($this->user); $iscurrentuser = true; core_myprofile_navigation($this->tree, $this->user, $iscurrentuser, $this->course); $reflector = new \ReflectionObject($this->tree); $nodes = $reflector->getProperty('nodes'); $nodes->setAccessible(true); $this->assertArrayHasKey('editprofile', $nodes->getValue($this->tree)); } /** * Tests the core_myprofile_navigation() function as the admin viewing another user. */ public function test_core_myprofile_navigation_profile_link_as_admin() { $this->setAdminUser(); $iscurrentuser = false; core_myprofile_navigation($this->tree, $this->user, $iscurrentuser, $this->course); $reflector = new \ReflectionObject($this->tree); $nodes = $reflector->getProperty('nodes'); $nodes->setAccessible(true); $this->assertArrayHasKey('editprofile', $nodes->getValue($this->tree)); } /** * Tests the core_myprofile_navigation() function when viewing the preference page as an admin. */ public function test_core_myprofile_navigation_preference_as_admin() { $this->setAdminUser(); $iscurrentuser = false; core_myprofile_navigation($this->tree, $this->user, $iscurrentuser, $this->course); $reflector = new \ReflectionObject($this->tree); $nodes = $reflector->getProperty('nodes'); $nodes->setAccessible(true); $this->assertArrayHasKey('preferences', $nodes->getValue($this->tree)); $this->assertArrayHasKey('loginas', $nodes->getValue($this->tree)); } /** * Tests the core_myprofile_navigation() function when viewing the preference * page as another user without the ability to use the 'loginas' functionality. */ public function test_core_myprofile_navigation_preference_without_permission() { // Login as link for a user who doesn't have the capability to login as. $this->setUser($this->getDataGenerator()->create_user()); $iscurrentuser = false; core_myprofile_navigation($this->tree, $this->user, $iscurrentuser, $this->course); $reflector = new \ReflectionObject($this->tree); $nodes = $reflector->getProperty('nodes'); $nodes->setAccessible(true); $this->assertArrayNotHasKey('loginas', $nodes->getValue($this->tree)); } /** * Tests the core_myprofile_navigation() function as an admin viewing another user's contact details. */ public function test_core_myprofile_navigation_contact_fields_as_admin() { global $CFG; // User contact fields. set_config("hiddenuserfields", "country,city"); set_config("showuseridentity", "email,address,phone1,phone2,institution,department,idnumber"); $hiddenfields = explode(',', $CFG->hiddenuserfields); $identityfields = explode(',', $CFG->showuseridentity); $this->setAdminUser(); $iscurrentuser = false; // Make sure fields are not empty. $fields = array( 'country' => 'AU', 'city' => 'Silent hill', 'email' => 'Rulelikeaboss@example.com', 'address' => 'Didn\'t I mention silent hill already ?', 'phone1' => '123', 'phone2' => '234', 'institution' => 'strange land', 'department' => 'video game/movie', 'idnumber' => 'SLHL' ); foreach ($fields as $field => $value) { $this->user->$field = $value; } // User with proper permissions. core_myprofile_navigation($this->tree, $this->user, $iscurrentuser, null); $reflector = new \ReflectionObject($this->tree); $nodes = $reflector->getProperty('nodes'); $nodes->setAccessible(true); foreach ($hiddenfields as $field) { $this->assertArrayHasKey($field, $nodes->getValue($this->tree)); } foreach ($identityfields as $field) { $this->assertArrayHasKey($field, $nodes->getValue($this->tree)); } } /** * Tests the core_myprofile_navigation() function as a user viewing another user's profile * ensuring that the contact details are not shown. */ public function test_core_myprofile_navigation_contact_field_without_permission() { global $CFG; $iscurrentuser = false; $hiddenfields = explode(',', $CFG->hiddenuserfields); $identityfields = explode(',', $CFG->showuseridentity); // User without permission. $this->setUser($this->getDataGenerator()->create_user()); core_myprofile_navigation($this->tree, $this->user, $iscurrentuser, null); $reflector = new \ReflectionObject($this->tree); $nodes = $reflector->getProperty('nodes'); $nodes->setAccessible(true); foreach ($hiddenfields as $field) { $this->assertArrayNotHasKey($field, $nodes->getValue($this->tree)); } foreach ($identityfields as $field) { $this->assertArrayNotHasKey($field, $nodes->getValue($this->tree)); } } /** * Data provider for {@see test_core_myprofile_navigation_contact_timezone} * * @return array[] */ public function core_myprofile_navigation_contact_timezone_provider(): array { return [ 'Hidden field' => ['timezone', '99', '99', null], 'Forced timezone' => ['', 'Europe/London', 'Pacific/Tahiti', 'Europe/London'], 'User timezone (default)' => ['', '99', '99', 'Australia/Perth'], 'User timezone (selected)' => ['', '99', 'Pacific/Tahiti', 'Pacific/Tahiti'], ]; } /** * Test timezone node added to user profile navigation * * @param string $hiddenuserfields * @param string $forcetimezone Timezone identifier or '99' (User can choose their own) * @param string $usertimezone Timezone identifier or '99' (Use server default) * @param string|null $expectresult * @return bool * * @dataProvider core_myprofile_navigation_contact_timezone_provider */ public function test_core_myprofile_navigation_contact_timezone(string $hiddenuserfields, string $forcetimezone, string $usertimezone, ?string $expectresult = null): void { set_config('hiddenuserfields', $hiddenuserfields); set_config('forcetimezone', $forcetimezone); // Set the timezone of our test user, and load their navigation tree. $this->user->timezone = $usertimezone; $this->setUser($this->user); core_myprofile_navigation($this->tree, $this->user, true, null); $reflector = new \ReflectionObject($this->tree); $nodes = $reflector->getProperty('nodes'); $nodes->setAccessible(true); /** @var \core_user\output\myprofile\node[] $tree */ $tree = $nodes->getValue($this->tree); if ($expectresult !== null) { $this->assertArrayHasKey('timezone', $tree); $this->assertEquals($expectresult, $tree['timezone']->content); } else { $this->assertArrayNotHasKey('timezone', $tree); } } /** * Tests the core_myprofile_navigation() function as an admin viewing another user's * profile ensuring the login activity links are shown. */ public function test_core_myprofile_navigation_login_activity() { // First access, last access, last ip. $this->setAdminUser(); $iscurrentuser = false; core_myprofile_navigation($this->tree, $this->user, $iscurrentuser, null); $reflector = new \ReflectionObject($this->tree); $nodes = $reflector->getProperty('nodes'); $nodes->setAccessible(true); $this->assertArrayHasKey('firstaccess', $nodes->getValue($this->tree)); $this->assertArrayHasKey('lastaccess', $nodes->getValue($this->tree)); $this->assertArrayHasKey('lastip', $nodes->getValue($this->tree)); } /** * Tests the core_myprofile_navigation() function as a user viewing another user's profile * ensuring the login activity links are not shown. */ public function test_core_myprofile_navigationn_login_activity_without_permission() { // User without permission. set_config("hiddenuserfields", "firstaccess,lastaccess,lastip"); $this->setUser($this->getDataGenerator()->create_user()); $iscurrentuser = false; core_myprofile_navigation($this->tree, $this->user, $iscurrentuser, null); $reflector = new \ReflectionObject($this->tree); $nodes = $reflector->getProperty('nodes'); $nodes->setAccessible(true); $this->assertArrayNotHasKey('firstaccess', $nodes->getValue($this->tree)); $this->assertArrayNotHasKey('lastaccess', $nodes->getValue($this->tree)); $this->assertArrayNotHasKey('lastip', $nodes->getValue($this->tree)); } }