f1bfc8971f
This patch makes the default section name appear in brackets beside the 'Use default section name' checkbox.
156 lines
6.4 KiB
PHP
156 lines
6.4 KiB
PHP
<?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/>.
|
|
|
|
/**
|
|
* format_weeks related unit tests
|
|
*
|
|
* @package format_weeks
|
|
* @copyright 2015 Marina Glancy
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
|
|
defined('MOODLE_INTERNAL') || die();
|
|
|
|
global $CFG;
|
|
require_once($CFG->dirroot . '/course/lib.php');
|
|
|
|
/**
|
|
* format_weeks related unit tests
|
|
*
|
|
* @package format_weeks
|
|
* @copyright 2015 Marina Glancy
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
class format_weeks_testcase extends advanced_testcase {
|
|
|
|
public function test_update_course_numsections() {
|
|
global $DB;
|
|
$this->resetAfterTest(true);
|
|
|
|
$generator = $this->getDataGenerator();
|
|
|
|
$course = $generator->create_course(array('numsections' => 10, 'format' => 'weeks'),
|
|
array('createsections' => true));
|
|
$generator->create_module('assign', array('course' => $course, 'section' => 7));
|
|
|
|
$this->setAdminUser();
|
|
|
|
$this->assertEquals(11, $DB->count_records('course_sections', array('course' => $course->id)));
|
|
|
|
// Change the numsections to 8, last two sections did not have any activities, they should be deleted.
|
|
update_course((object)array('id' => $course->id, 'numsections' => 8));
|
|
$this->assertEquals(9, $DB->count_records('course_sections', array('course' => $course->id)));
|
|
$this->assertEquals(9, count(get_fast_modinfo($course)->get_section_info_all()));
|
|
|
|
// Change the numsections to 5, section 8 should be deleted but section 7 should remain as it has activities.
|
|
update_course((object)array('id' => $course->id, 'numsections' => 6));
|
|
$this->assertEquals(8, $DB->count_records('course_sections', array('course' => $course->id)));
|
|
$this->assertEquals(8, count(get_fast_modinfo($course)->get_section_info_all()));
|
|
$this->assertEquals(6, course_get_format($course)->get_course()->numsections);
|
|
}
|
|
|
|
/**
|
|
* Tests for format_weeks::get_section_name method with default section names.
|
|
*/
|
|
public function test_get_section_name() {
|
|
global $DB;
|
|
$this->resetAfterTest(true);
|
|
|
|
// Generate a course with 5 sections.
|
|
$generator = $this->getDataGenerator();
|
|
$numsections = 5;
|
|
$course = $generator->create_course(array('numsections' => $numsections, 'format' => 'weeks'),
|
|
array('createsections' => true));
|
|
|
|
// Get section names for course.
|
|
$coursesections = $DB->get_records('course_sections', array('course' => $course->id));
|
|
|
|
// Test get_section_name with default section names.
|
|
$courseformat = course_get_format($course);
|
|
foreach ($coursesections as $section) {
|
|
// Assert that with unmodified section names, get_section_name returns the same result as get_default_section_name.
|
|
$this->assertEquals($courseformat->get_default_section_name($section), $courseformat->get_section_name($section));
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Tests for format_weeks::get_section_name method with modified section names.
|
|
*/
|
|
public function test_get_section_name_customised() {
|
|
global $DB;
|
|
$this->resetAfterTest(true);
|
|
|
|
// Generate a course with 5 sections.
|
|
$generator = $this->getDataGenerator();
|
|
$numsections = 5;
|
|
$course = $generator->create_course(array('numsections' => $numsections, 'format' => 'weeks'),
|
|
array('createsections' => true));
|
|
|
|
// Get section names for course.
|
|
$coursesections = $DB->get_records('course_sections', array('course' => $course->id));
|
|
|
|
// Modify section names.
|
|
$customname = "Custom Section";
|
|
foreach ($coursesections as $section) {
|
|
$section->name = "$customname $section->section";
|
|
$DB->update_record('course_sections', $section);
|
|
}
|
|
|
|
// Requery updated section names then test get_section_name.
|
|
$coursesections = $DB->get_records('course_sections', array('course' => $course->id));
|
|
$courseformat = course_get_format($course);
|
|
foreach ($coursesections as $section) {
|
|
// Assert that with modified section names, get_section_name returns the modified section name.
|
|
$this->assertEquals($section->name, $courseformat->get_section_name($section));
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Tests for format_weeks::get_default_section_name.
|
|
*/
|
|
public function test_get_default_section_name() {
|
|
global $DB;
|
|
$this->resetAfterTest(true);
|
|
|
|
// Generate a course with 5 sections.
|
|
$generator = $this->getDataGenerator();
|
|
$numsections = 5;
|
|
$course = $generator->create_course(array('numsections' => $numsections, 'format' => 'weeks'),
|
|
array('createsections' => true));
|
|
|
|
// Get section names for course.
|
|
$coursesections = $DB->get_records('course_sections', array('course' => $course->id));
|
|
|
|
// Test get_default_section_name with default section names.
|
|
$courseformat = course_get_format($course);
|
|
foreach ($coursesections as $section) {
|
|
if ($section->section == 0) {
|
|
$sectionname = get_string('section0name', 'format_weeks');
|
|
$this->assertEquals($sectionname, $courseformat->get_default_section_name($section));
|
|
} else {
|
|
$dates = $courseformat->get_section_dates($section);
|
|
$dates->end = ($dates->end - 86400);
|
|
$dateformat = get_string('strftimedateshort');
|
|
$weekday = userdate($dates->start, $dateformat);
|
|
$endweekday = userdate($dates->end, $dateformat);
|
|
$sectionname = $weekday.' - '.$endweekday;
|
|
|
|
$this->assertEquals($sectionname, $courseformat->get_default_section_name($section));
|
|
}
|
|
}
|
|
}
|
|
}
|