Differences Between: [Versions 401 and 402]
1 <?php 2 // This file is part of Moodle - http://moodle.org/ 3 // 4 // Moodle is free software: you can redistribute it and/or modify 5 // it under the terms of the GNU General Public License as published by 6 // the Free Software Foundation, either version 3 of the License, or 7 // (at your option) any later version. 8 // 9 // Moodle is distributed in the hope that it will be useful, 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 // GNU General Public License for more details. 13 // 14 // You should have received a copy of the GNU General Public License 15 // along with Moodle. If not, see <http://www.gnu.org/licenses/>. 16 17 declare(strict_types=1); 18 19 namespace core_reportbuilder\external\filters; 20 21 use core_reportbuilder_generator; 22 use core_reportbuilder\manager; 23 use core_reportbuilder\report_access_exception; 24 use core_external\external_api; 25 use externallib_advanced_testcase; 26 use core_user\reportbuilder\datasource\users; 27 28 defined('MOODLE_INTERNAL') || die(); 29 30 global $CFG; 31 require_once("{$CFG->dirroot}/webservice/tests/helpers.php"); 32 33 /** 34 * Unit tests external filters set class 35 * 36 * @package core_reportbuilder 37 * @covers \core_reportbuilder\external\filters\set 38 * @copyright 2022 Paul Holden <paulh@moodle.com> 39 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later 40 */ 41 class set_test extends externallib_advanced_testcase { 42 43 /** 44 * Text execute method 45 */ 46 public function test_execute(): void { 47 $this->resetAfterTest(); 48 $this->setAdminUser(); 49 50 /** @var core_reportbuilder_generator $generator */ 51 $generator = $this->getDataGenerator()->get_plugin_generator('core_reportbuilder'); 52 $report = $generator->create_report(['name' => 'My report', 'source' => users::class]); 53 54 $values = [ 55 'entity:filter_operator' => 'something', 56 'entity:filter_value' => 42, 57 ]; 58 59 $result = set::execute($report->get('id'), '', json_encode($values)); 60 $result = external_api::clean_returnvalue(set::execute_returns(), $result); 61 62 $this->assertTrue($result); 63 64 // We should get our original filter values back. 65 $instance = manager::get_report_from_persistent($report); 66 $this->assertEquals($values, $instance->get_filter_values()); 67 } 68 69 /** 70 * Test execute method for a user without permission to view the report 71 */ 72 public function test_execute_access_exception(): void { 73 $this->resetAfterTest(); 74 75 /** @var core_reportbuilder_generator $generator */ 76 $generator = $this->getDataGenerator()->get_plugin_generator('core_reportbuilder'); 77 $report = $generator->create_report(['name' => 'My report', 'source' => users::class]); 78 79 $user = $this->getDataGenerator()->create_user(); 80 $this->setUser($user); 81 82 $this->expectException(report_access_exception::class); 83 $this->expectExceptionMessage('You cannot view this report'); 84 set::execute($report->get('id'), '', json_encode(['foo' => 1])); 85 } 86 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body