mirror of
https://github.com/moodle/moodle.git
synced 2025-01-17 21:49:15 +01:00
Merge branch 'MDL-70725-master' of git://github.com/sarjona/moodle
This commit is contained in:
commit
5cef15ea60
@ -44,9 +44,6 @@ class core_oauth2_testcase extends advanced_testcase {
|
||||
\core\oauth2\api::create_standard_issuer('microsoft');
|
||||
\core\oauth2\api::create_standard_issuer('nextcloud', 'https://dummy.local/nextcloud/');
|
||||
|
||||
$this->expectException(\moodle_exception::class);
|
||||
\core\oauth2\api::create_standard_issuer('nextcloud');
|
||||
|
||||
$issuers = \core\oauth2\api::get_all_issuers();
|
||||
|
||||
$this->assertEquals($issuers[0]->get('name'), 'Google');
|
||||
@ -72,6 +69,17 @@ class core_oauth2_testcase extends advanced_testcase {
|
||||
$this->assertEquals($issuers[2]->get('name'), 'Nextcloud');
|
||||
}
|
||||
|
||||
/**
|
||||
* Tests the crud operations on oauth2 issuers.
|
||||
*/
|
||||
public function test_create_nextcloud_without_url() {
|
||||
$this->resetAfterTest();
|
||||
$this->setAdminUser();
|
||||
|
||||
$this->expectException(\moodle_exception::class);
|
||||
\core\oauth2\api::create_standard_issuer('nextcloud');
|
||||
}
|
||||
|
||||
/**
|
||||
* Tests we can list and delete each of the persistents related to an issuer.
|
||||
*/
|
||||
|
Loading…
x
Reference in New Issue
Block a user