mirror of
https://github.com/moodle/moodle.git
synced 2025-04-22 17:02:03 +02:00
Merge branch 'MOODLE_405_STABLE_MDL-84651' of https://github.com/mattporritt/moodle into MOODLE_405_STABLE
This commit is contained in:
commit
e3acb02b21
@ -90,7 +90,7 @@ class summarise_text extends external_api {
|
||||
);
|
||||
|
||||
// Send the action to the AI manager.
|
||||
$manager = new \core_ai\manager();
|
||||
$manager = \core\di::get(\core_ai\manager::class);
|
||||
$response = $manager->process_action($action);
|
||||
// Return the response.
|
||||
return [
|
||||
@ -133,7 +133,7 @@ class summarise_text extends external_api {
|
||||
VALUE_DEFAULT,
|
||||
),
|
||||
'finishreason' => new external_value(
|
||||
PARAM_ALPHA,
|
||||
PARAM_ALPHAEXT,
|
||||
'The reason generation was stopped',
|
||||
VALUE_DEFAULT,
|
||||
'stop',
|
||||
|
73
ai/placement/courseassist/tests/external/summarise_text_test.php
vendored
Normal file
73
ai/placement/courseassist/tests/external/summarise_text_test.php
vendored
Normal file
@ -0,0 +1,73 @@
|
||||
<?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;
|
||||
|
||||
/**
|
||||
* 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');
|
||||
set_config('enabled', 1, 'aiprovider_openai');
|
||||
set_config('apikey', '123', 'aiprovider_openai');
|
||||
$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);
|
||||
\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']);
|
||||
}
|
||||
}
|
@ -132,7 +132,7 @@ class generate_text extends external_api {
|
||||
VALUE_DEFAULT,
|
||||
),
|
||||
'finishreason' => new external_value(
|
||||
PARAM_ALPHA,
|
||||
PARAM_ALPHAEXT,
|
||||
'The reason generation was stopped',
|
||||
VALUE_DEFAULT,
|
||||
'stop',
|
||||
|
72
ai/placement/editor/tests/external/generate_text_test.php
vendored
Normal file
72
ai/placement/editor/tests/external/generate_text_test.php
vendored
Normal file
@ -0,0 +1,72 @@
|
||||
<?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_editor\external;
|
||||
|
||||
/**
|
||||
* Test generate text external webservice calls.
|
||||
*
|
||||
* @package aiplacement_editor
|
||||
* @copyright 2025 Matt Porritt <matt.porritt@moodle.com>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
* @covers \aiplacement_editor\external\generate_text
|
||||
*/
|
||||
final class generate_text_test extends \advanced_testcase {
|
||||
/**
|
||||
* Test generate_text webservice.
|
||||
*/
|
||||
public function test_execute(): void {
|
||||
$this->resetAfterTest();
|
||||
set_config('enabled', 1, 'aiplacement_editor');
|
||||
set_config('enabled', 1, 'aiprovider_openai');
|
||||
set_config('apikey', '123', 'aiprovider_openai');
|
||||
$this->setAdminUser();
|
||||
|
||||
// Get system context.
|
||||
$context = \core\context\system::instance();
|
||||
|
||||
// Mock the manager class call.
|
||||
$response = new \core_ai\aiactions\responses\response_generate_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);
|
||||
\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_editor_generate_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']);
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user