moodle/reportbuilder/tests/manager_test.php

172 lines
5.9 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/>.
declare(strict_types=1);
namespace core_reportbuilder;
use advanced_testcase;
use context_system;
use core_reportbuilder_generator;
use core_user\reportbuilder\datasource\users;
use stdClass;
use core_reportbuilder\local\models\report;
use core_reportbuilder\local\report\base;
/**
* Unit tests for the report manager class
*
* @package core_reportbuilder
* @covers \core_reportbuilder\manager
* @copyright 2020 Paul Holden <paulh@moodle.com>
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
class manager_test extends advanced_testcase {
/**
* Test creating a report instance from persistent
*/
public function test_get_report_from_persistent(): void {
global $CFG;
require_once("{$CFG->dirroot}/reportbuilder/tests/fixtures/system_report_available.php");
$this->resetAfterTest();
$report = manager::create_report_persistent((object) [
'type' => base::TYPE_SYSTEM_REPORT,
'source' => system_report_available::class,
]);
$systemreport = manager::get_report_from_persistent($report);
$this->assertInstanceOf(system_report::class, $systemreport);
}
/**
* Test creating a report instance from persistent with an invalid source
*/
public function test_get_report_from_persistent_invalid(): void {
$this->resetAfterTest();
$report = manager::create_report_persistent((object) [
'type' => base::TYPE_SYSTEM_REPORT,
'source' => stdClass::class,
]);
$this->expectException(source_invalid_exception::class);
manager::get_report_from_persistent($report);
}
/**
* Test creating a report instance from persistent with an unavailable source
*/
public function test_get_report_from_persistent_unavailable(): void {
global $CFG;
require_once("{$CFG->dirroot}/reportbuilder/tests/fixtures/system_report_unavailable.php");
$this->resetAfterTest();
$report = manager::create_report_persistent((object) [
'type' => base::TYPE_SYSTEM_REPORT,
'source' => system_report_unavailable::class,
]);
$this->expectException(source_unavailable_exception::class);
manager::get_report_from_persistent($report);
}
/**
* Test report source exists
*/
public function test_report_source_exists(): void {
global $CFG;
require_once("{$CFG->dirroot}/reportbuilder/tests/fixtures/system_report_available.php");
$this->assertTrue(manager::report_source_exists(system_report_available::class));
$this->assertFalse(manager::report_source_exists(stdClass::class));
}
/**
* Test report source available
*/
public function test_report_source_available(): void {
global $CFG;
require_once("{$CFG->dirroot}/reportbuilder/tests/fixtures/system_report_available.php");
$this->assertTrue(manager::report_source_available(system_report_available::class));
require_once("{$CFG->dirroot}/reportbuilder/tests/fixtures/system_report_unavailable.php");
$this->assertFalse(manager::report_source_available(system_report_unavailable::class));
}
/**
* Test creating a report persistent model
*/
public function test_create_report_persistent(): void {
global $CFG;
require_once("{$CFG->dirroot}/reportbuilder/tests/fixtures/system_report_available.php");
$this->resetAfterTest();
$report = manager::create_report_persistent((object) [
'type' => base::TYPE_SYSTEM_REPORT,
'source' => \core_reportbuilder\system_report_available::class,
]);
$this->assertInstanceOf(report::class, $report);
$this->assertEquals(base::TYPE_SYSTEM_REPORT, $report->get('type'));
$this->assertEquals(system_report_available::class, $report->get('source'));
$this->assertInstanceOf(context_system::class, $report->get_context());
}
/**
* Data provider for {@see test_report_limit_reached}
*
* @return array
*/
public function report_limit_reached_provider(): array {
return [
[0, 1, false],
[1, 1, true],
[2, 1, false],
[1, 2, true],
];
}
/**
* Test test_report_limit_reached method to check site custom reports limit
*
* @param int $customreportslimit
* @param int $existingreports
* @param bool $expected
* @dataProvider report_limit_reached_provider
*/
public function test_report_limit_reached(int $customreportslimit, int $existingreports, bool $expected): void {
global $CFG;
$this->resetAfterTest();
/** @var core_reportbuilder_generator $generator */
$generator = $this->getDataGenerator()->get_plugin_generator('core_reportbuilder');
for ($i = 1; $i <= $existingreports; $i++) {
$generator->create_report(['name' => 'Limited report '.$i, 'source' => users::class]);
}
// Set current custom report limit, and check whether the limit has been reached.
$CFG->customreportslimit = $customreportslimit;
$this->assertEquals($expected, manager::report_limit_reached());
}
}