ÿØÿà 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; defined('MOODLE_INTERNAL') || die(); global $CFG; require_once($CFG->libdir . '/gradelib.php'); /** * Unit tests for /lib/gradelib.php. * * @package core * @category test * @copyright 2012 Andrew Davis * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ class gradelib_test extends \advanced_testcase { public function test_grade_update_mod_grades() { $this->resetAfterTest(true); // Create a broken module instance. $modinstance = new \stdClass(); $modinstance->modname = 'doesntexist'; $this->assertFalse(grade_update_mod_grades($modinstance)); // A debug message should have been generated. $this->assertDebuggingCalled(); // Create a course and instance of mod_assign. $course = $this->getDataGenerator()->create_course(); $assigndata['course'] = $course->id; $assigndata['name'] = 'lightwork assignment'; $modinstance = self::getDataGenerator()->create_module('assign', $assigndata); // Function grade_update_mod_grades() requires 2 additional properties, cmidnumber and modname. $cm = get_coursemodule_from_instance('assign', $modinstance->id, 0, false, MUST_EXIST); $modinstance->cmidnumber = $cm->id; $modinstance->modname = 'assign'; $this->assertTrue(grade_update_mod_grades($modinstance)); } /** * Tests the function remove_grade_letters(). */ public function test_remove_grade_letters() { global $DB; $this->resetAfterTest(); $course = $this->getDataGenerator()->create_course(); $context = \context_course::instance($course->id); // Add a grade letter to the course. $letter = new \stdClass(); $letter->letter = 'M'; $letter->lowerboundary = '100'; $letter->contextid = $context->id; $DB->insert_record('grade_letters', $letter); // Pre-warm the cache, ensure that that the letter is cached. $cache = \cache::make('core', 'grade_letters'); // Check that the cache is empty beforehand. $letters = $cache->get($context->id); $this->assertFalse($letters); // Call the function. grade_get_letters($context); $letters = $cache->get($context->id); $this->assertEquals(1, count($letters)); $this->assertTrue(in_array($letter->letter, $letters)); remove_grade_letters($context, false); // Confirm grade letter was deleted. $this->assertEquals(0, $DB->count_records('grade_letters')); // Confirm grade letter is also deleted from cache. $letters = $cache->get($context->id); $this->assertFalse($letters); } /** * Tests the function grade_course_category_delete(). */ public function test_grade_course_category_delete() { global $DB; $this->resetAfterTest(); $category = \core_course_category::create(array('name' => 'Cat1')); // Add a grade letter to the category. $letter = new \stdClass(); $letter->letter = 'M'; $letter->lowerboundary = '100'; $letter->contextid = \context_coursecat::instance($category->id)->id; $DB->insert_record('grade_letters', $letter); grade_course_category_delete($category->id, '', false); // Confirm grade letter was deleted. $this->assertEquals(0, $DB->count_records('grade_letters')); } /** * Tests the function grade_regrade_final_grades(). */ public function test_grade_regrade_final_grades() { global $DB; $this->resetAfterTest(); // Setup some basics. $course = $this->getDataGenerator()->create_course(); $user = $this->getDataGenerator()->create_user(); $this->getDataGenerator()->enrol_user($user->id, $course->id, 'student'); // We need two grade items. $params = ['idnumber' => 'g1', 'courseid' => $course->id]; $g1 = new \grade_item($this->getDataGenerator()->create_grade_item($params)); unset($params['idnumber']); $g2 = new \grade_item($this->getDataGenerator()->create_grade_item($params)); $category = new \grade_category($this->getDataGenerator()->create_grade_category($params)); $catitem = $category->get_grade_item(); // Now set a calculation. $catitem->set_calculation('=[[g1]]'); $catitem->update(); // Everything needs updating. $this->assertEquals(4, $DB->count_records('grade_items', ['courseid' => $course->id, 'needsupdate' => 1])); grade_regrade_final_grades($course->id); // See that everything has been updated. $this->assertEquals(0, $DB->count_records('grade_items', ['courseid' => $course->id, 'needsupdate' => 1])); $g1->delete(); // Now there is one that needs updating. $this->assertEquals(1, $DB->count_records('grade_items', ['courseid' => $course->id, 'needsupdate' => 1])); // This can cause an infinite loop if things go... poorly. grade_regrade_final_grades($course->id); // Now because of the failure, two things need updating. $this->assertEquals(2, $DB->count_records('grade_items', ['courseid' => $course->id, 'needsupdate' => 1])); } /** * Tests for the grade_get_date_for_user_grade function. * * @dataProvider grade_get_date_for_user_grade_provider * @param \stdClass $grade * @param \stdClass $user * @param int $expected */ public function test_grade_get_date_for_user_grade(\stdClass $grade, \stdClass $user, ?int $expected): void { $this->assertEquals($expected, grade_get_date_for_user_grade($grade, $user)); } /** * Data provider for tests of the grade_get_date_for_user_grade function. * * @return array */ public function grade_get_date_for_user_grade_provider(): array { $u1 = (object) [ 'id' => 42, ]; $u2 = (object) [ 'id' => 930, ]; $d1 = 1234567890; $d2 = 9876543210; $g1 = (object) [ 'usermodified' => $u1->id, 'dategraded' => $d1, 'datesubmitted' => $d2, ]; $g2 = (object) [ 'usermodified' => $u1->id, 'dategraded' => $d1, 'datesubmitted' => 0, ]; $g3 = (object) [ 'usermodified' => $u1->id, 'dategraded' => null, 'datesubmitted' => $d2, ]; return [ 'If the user is the last person to have modified the grade_item then show the date that it was graded' => [ $g1, $u1, $d1, ], 'If there is no grade and there is no feedback, then show graded date as null' => [ $g3, $u1, null, ], 'If the user is not the last person to have modified the grade_item, ' . 'and there is no submission date, then show the date that it was submitted' => [ $g1, $u2, $d2, ], 'If the user is not the last person to have modified the grade_item, ' . 'but there is no submission date, then show the date that it was graded' => [ $g2, $u2, $d1, ], 'If the user is the last person to have modified the grade_item, ' . 'and there is no submission date, then still show the date that it was graded' => [ $g2, $u1, $d1, ], ]; } /** * Test the caching of grade letters. */ public function test_get_grade_letters() { $this->resetAfterTest(); // Setup some basics. $course = $this->getDataGenerator()->create_course(); $context = \context_course::instance($course->id); $cache = \cache::make('core', 'grade_letters'); $letters = $cache->get($context->id); // Make sure the cache is empty. $this->assertFalse($letters); // Now check to see if the letters get cached. $actual = grade_get_letters($context); $expected = $cache->get($context->id); $this->assertEquals($expected, $actual); } /** * Test custom letters. */ public function test_get_grade_letters_custom() { global $DB; $this->resetAfterTest(); $course = $this->getDataGenerator()->create_course(); $context = \context_course::instance($course->id); $cache = \cache::make('core', 'grade_letters'); $letters = $cache->get($context->id); // Make sure the cache is empty. $this->assertFalse($letters); // Add a grade letter to the course. $letter = new \stdClass(); $letter->letter = 'M'; $letter->lowerboundary = '100'; $letter->contextid = $context->id; $DB->insert_record('grade_letters', $letter); $actual = grade_get_letters($context); $expected = $cache->get($context->id); $this->assertEquals($expected, $actual); } /** * When getting a calculated grade containing an error, we mark grading finished and don't keep trying to regrade. * * @covers \grade_get_grades() * @return void */ public function test_grade_get_grades_errors() { $this->resetAfterTest(); // Setup some basics. $course = $this->getDataGenerator()->create_course(); $user1 = $this->getDataGenerator()->create_user(); $this->getDataGenerator()->enrol_user($user1->id, $course->id, 'student'); $user2 = $this->getDataGenerator()->create_user(); $this->getDataGenerator()->enrol_user($user2->id, $course->id, 'editingteacher'); // Set up 2 gradeable activities. $assign = $this->getDataGenerator()->create_module('assign', ['idnumber' => 'a1', 'course' => $course->id]); $quiz = $this->getDataGenerator()->create_module('quiz', ['idnumber' => 'q1', 'course' => $course->id]); // Create a calculated grade item using the activities. $params = ['courseid' => $course->id]; $g1 = new \grade_item($this->getDataGenerator()->create_grade_item($params)); $g1->set_calculation('=[[a1]] + [[q1]]'); // Now delete one of the activities to break the calculation. course_delete_module($assign->cmid); // Course grade item has needsupdate. $this->assertEquals(1, \grade_item::fetch_course_item($course->id)->needsupdate); // Get grades for the quiz, to trigger a regrade. $this->setUser($user2); $grades1 = grade_get_grades($course->id, 'mod', 'quiz', $quiz->id); // We should get an error for the broken calculation. $this->assertNotEmpty($grades1->errors); $this->assertEquals(get_string('errorcalculationbroken', 'grades', $g1->itemname), reset($grades1->errors)); // Course grade item should not have needsupdate so that we don't try to regrade again. $this->assertEquals(0, \grade_item::fetch_course_item($course->id)->needsupdate); // Get grades for the quiz again. This should not trigger the regrade and resulting error this time. $grades2 = grade_get_grades($course->id, 'mod', 'quiz', $quiz->id); $this->assertEmpty($grades2->errors); } }