░▒▓████████████████████████████████▓▒░ ░▒▓█ ▓▒░ ░▒▓█ ~ S W A M P ~ ▓▒░ ░▒▓█ ▓▒░ ░▒▓████████████████████████████████▓▒░
pplmvsvm
LOCATION:
/var/www/moodle/public/ai/placement/courseassist/tests
☗ ROOT
↻ REFRESH
✎ CARVE FLESH
EDITING: utils_test.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 aiplacement_courseassist; use core_ai\ai_test_trait; defined('MOODLE_INTERNAL') || die(); require_once(__DIR__ . '/../../../tests/ai_test_trait.php'); /** * AI Placement course assist utils test. * * @package aiplacement_courseassist * @copyright 2024 Huong Nguyen <huongnv13@gmail.com> * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later * @covers \aiplacement_courseassist\utils */ final class utils_test extends \advanced_testcase { use ai_test_trait; /** @var array List of users. */ private array $users; /** @var \stdClass Course object. */ private \stdClass $course; /** @var \context_course Course context. */ private \context_course $context; /** @var \stdClass Teacher role. */ private \stdClass $teacherrole; public function setUp(): void { global $DB; parent::setUp(); $this->resetAfterTest(); $this->users[1] = $this->getDataGenerator()->create_user(); $this->users[2] = $this->getDataGenerator()->create_user(); $this->course = $this->getDataGenerator()->create_course(); $this->context = \context_course::instance($this->course->id); $this->teacherrole = $DB->get_record('role', ['shortname' => 'editingteacher']); $this->getDataGenerator()->enrol_user($this->users[1]->id, $this->course->id, 'manager'); $this->getDataGenerator()->enrol_user($this->users[2]->id, $this->course->id, 'editingteacher'); } /** * Data provider for supported placement tests. * * @return array */ public static function course_assist_actions_available_provider(): array { return [ 'Two actions' => [ 'actionstouse' => [ 'summarise_text', 'explain_text', ], 'expectedcount' => 2, ], 'Summarise only' => [ 'actionstouse' => [ 'summarise_text', ], 'expectedcount' => 1, ], 'Explain only' => [ 'actionstouse' => [ 'explain_text', ], 'expectedcount' => 1, ], 'No actions' => [ 'actionstouse' => [], 'expectedcount' => 0, ], ]; } /** * Test is_course_assist_available method. */ public function test_is_course_assist_available(): void { set_config('enabled', 1, 'aiplacement_courseassist'); $this->assertTrue(utils::is_course_assist_available()); set_config('enabled', 0, 'aiplacement_courseassist'); $this->assertFalse(utils::is_course_assist_available()); } /** * Test get_actions_available method. * * @param array $actionstouse The actions to use. * @param int $expectedcount Expected count of actions. * @dataProvider course_assist_actions_available_provider */ public function test_get_actions_available( array $actionstouse, int $expectedcount, ): void { $this->setUser($this->users[2]); // Set up the provider with the required action config. $this->create_ai_provider($actionstouse, \aiprovider_openai\provider::class); set_config('enabled', 1, 'aiplacement_courseassist'); // Enable the actions and check the count. foreach ($actionstouse as $action) { set_config($action, 1, 'aiplacement_courseassist'); } $actions = utils::get_actions_available($this->context, true); $this->assertCount($expectedcount, $actions); // Prohibit the user and check again. foreach ($actionstouse as $action) { assign_capability("aiplacement/courseassist:{$action}", CAP_PROHIBIT, $this->teacherrole->id, $this->context); } $actions = utils::get_actions_available($this->context, true); $this->assertCount(0, $actions); } }
CANCEL
Name
Type
Size
Modified
Actions
↩ ..
DIR
—
—
📁 behat/
DIR
—
2026-02-11 01:44
📁 external/
DIR
—
2026-02-11 01:44
📄 utils_test.php
PHP
4.6 KB
2026-02-11 01:44
EDIT