AutorÃa | Ultima modificación | Ver Log |
<?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\external;
use core_ai\aiactions\summarise_text;
/**
* Test summarise text external webservice calls.
*
* @package aiplacement_courseassist
* @copyright 2025 Matt Porritt <matt.porritt@moodle.com>
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
* @covers \aiplacement_courseassist\external\summarise_text
*/
final class summarise_text_test extends \advanced_testcase {
/**
* Test summarise_text webservice.
*/
public function test_execute(): void {
$this->resetAfterTest();
set_config('enabled', 1, 'aiplacement_courseassist');
$this->setAdminUser();
// Get course context.
$course = $this->getDataGenerator()->create_course();
$context = \context_course::instance($course->id);
// Mock the manager class call.
$response = new \core_ai\aiactions\responses\response_summarise_text(success: true);
$response->set_response_data(
[
'generatedcontent' => 'This was a test',
'finishreason' => 'max_-tokens', // Alphanumext.
]
);
$mockmanager = $this->createMock(\core_ai\manager::class);
$mockmanager->method('process_action')->willReturn($response);
$mockmanager->method('is_action_available')->willReturn(true);
$mockmanager->method('is_action_enabled')->willReturn(true);
$mockmanager->method('get_providers_for_actions')->willReturn([
summarise_text::class => ['aiprovider_openai'],
]);
\core\di::set(\core_ai\manager::class, function() use ($mockmanager) {
return $mockmanager;
});
$_POST['sesskey'] = sesskey();
$params = [
'contextid' => $context->id,
'prompttext' => 'This is a test',
];
$result = \core_external\external_api::call_external_function(
'aiplacement_courseassist_summarise_text',
$params,
);
$this->assertFalse($result['error']);
$this->assertEquals('max_-tokens', $result['data']['finishreason']);
$this->assertEquals('This was a test', $result['data']['generatedcontent']);
$this->assertTrue($result['data']['success']);
}
}