Files
moodle/lib/tests/task/show_started_courses_task_test.php
T
Eloy Lafuente (stronk7) 01148a0816 MDL-81522 phpunit: Add missing void return type to all tests
While this change is not 100% required now, it's good habit
and we are checking for it since Moodle 4.4.

All the changes in this commit have been applied automatically
using the moodle.PHPUnit.TestReturnType sniff and are, exclusively
adding the ": void" return types when missing.
2024-06-11 11:55:07 +02:00

167 lines
6.3 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/>.
namespace core\task;
use advanced_testcase;
/**
* Class containing unit tests for the show started courses task.
*
* It automatically sets the course visibility to shown when the course start date matches the current day.
*
* @package core
* @copyright 2023 Sara Arjona <sara@moodle.com>
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
* @coversDefaultClass \core\task\show_started_courses_task
*/
class show_started_courses_task_test extends advanced_testcase {
/**
* Test show_started_courses cron task.
*
* @dataProvider get_courses_provider
* @covers ::execute
*
* @param int $lastweekhidden Number of courses with the start date set to last week to be created.
* @param int $yesterdayhidden Number of courses with the start date set to yesterday to be created.
* @param int $tomorrowhidden Number of courses with the start date set to tomorrow to be created.
* @param bool $createvisible Whether visible courses should be created or not.
*/
public function test_show_started_courses(
int $lastweekhidden,
int $yesterdayhidden,
int $tomorrowhidden,
bool $createvisible = true
): void {
global $DB;
$this->resetAfterTest();
$generator = $this->getDataGenerator();
$visiblecourses = [];
$hiddencourses = [];
$now = time();
$lastweek = $now - WEEKSECS;
$yesterday = $now - DAYSECS + 60;
$tomorrow = $now + DAYSECS;
// Hidden course that started last week.
for ($i = 0; $i < $lastweekhidden; $i++) {
$generator->create_course(['visible' => false, 'startdate' => $lastweek]);
}
// Hidden course that started yesterday.
for ($i = 0; $i < $yesterdayhidden; $i++) {
$hiddencourses[] = $generator->create_course(['visible' => false, 'startdate' => $yesterday])->id;
}
// Hidden course that hasn't started yet.
for ($i = 0; $i < $tomorrowhidden; $i++) {
$generator->create_course(['visible' => false, 'startdate' => $tomorrow]);
}
if ($createvisible) {
// Visible course that already started.
$visiblecourses[] = $generator->create_course(['visible' => true, 'startdate' => $yesterday])->id;
// Visible course that hasn't started yet.
$visiblecourses[] = $generator->create_course(['visible' => true, 'startdate' => $tomorrow])->id;
}
$visibletotal = count($visiblecourses) + 1;
$coursetotal = $visibletotal + $lastweekhidden + $yesterdayhidden + $tomorrowhidden;
// Check current courses have been created correctly.
$this->assertEquals($coursetotal, $DB->count_records('course'));
$this->assertEquals($visibletotal, $DB->count_records('course', ['visible' => 1]));
$sink = $this->redirectEvents();
// Run the show started courses task.
ob_start();
$task = new show_started_courses_task();
$task->execute();
ob_end_clean();
// Confirm the courses with yesterday as starting date are visible too. The rest should remain hidden.
$this->assertEquals($coursetotal, $DB->count_records('course'));
$courses = $DB->get_records('course', ['visible' => 1], '', 'id');
$this->assertCount($visibletotal + $yesterdayhidden, $courses);
$expected = array_merge($hiddencourses, $visiblecourses);
$this->assertEquals(asort($expected), asort($courses));
// Check the started course event has been raised.
$events = $sink->get_events();
$sink->close();
$this->assertCount($yesterdayhidden, $events);
foreach ($events as $event) {
$this->assertInstanceOf('\\core\\event\\course_started', $event);
$this->assertArrayHasKey($event->courseid, array_flip($expected));
}
}
/**
* Data provider for test_show_started_courses.
*
* @return array
*/
public function get_courses_provider(): array {
return [
'No hidden courses' => [
'lastweek' => 0,
'yesterday' => 0,
'tomorrow' => 0,
],
'No hidden courses (without visible courses)' => [
'lastweek' => 0,
'yesterday' => 0,
'tomorrow' => 0,
'createvisible' => false,
],
'Hidden courses with last week or tomorrow dates' => [
'lastweek' => 2,
'yesterday' => 0,
'tomorrow' => 2,
],
'One hidden course of each type (last week, yesterday and tomorrow)' => [
'lastweek' => 1,
'yesterday' => 1,
'tomorrow' => 1,
],
'Different hidden courses of each type' => [
'lastweek' => 2,
'yesterday' => 3,
'tomorrow' => 4,
],
'A couple of hidden courses of each type (without visible courses)' => [
'lastweek' => 2,
'yesterday' => 2,
'tomorrow' => 2,
'createvisible' => false,
],
'Only a few hidden courses for yesterday' => [
'lastweek' => 0,
'yesterday' => 5,
'tomorrow' => 0,
],
'Only a few hidden courses for yesterday (without visible courses)' => [
'lastweek' => 0,
'yesterday' => 5,
'tomorrow' => 0,
'createvisible' => false,
],
];
}
}