Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php declare(strict_types=1); /** * Passbolt ~ Open source password manager for teams ..
Decoded Output download
<?php
declare(strict_types=1);
/**
* Passbolt ~ Open source password manager for teams
* Copyright (c) Passbolt SA (https://www.passbolt.com)
*
* Licensed under GNU Affero General Public License version 3 of the or any later version.
* For full copyright and license information, please see the LICENSE.txt
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright (c) Passbolt SA (https://www.passbolt.com)
* @license https://opensource.org/licenses/AGPL-3.0 AGPL License
* @link https://www.passbolt.com Passbolt(tm)
* @since 3.10.0
*/
namespace Passbolt\SelfRegistration\Test\TestCase\Controller;
use App\Test\Lib\AppIntegrationTestCase;
use Passbolt\SelfRegistration\SelfRegistrationPlugin;
use Passbolt\SelfRegistration\Test\Lib\SelfRegistrationTestTrait;
class SelfRegistrationGetSettingsControllerTest extends AppIntegrationTestCase
{
use SelfRegistrationTestTrait;
public function setUp(): void
{
parent::setUp();
$this->enableFeaturePlugin(SelfRegistrationPlugin::class);
}
public function testSelfRegistrationGetSettingsControllerTest_Success()
{
$this->logInAsAdmin();
$settingInDB = $this->setSelfRegistrationSettingsData();
$this->getJson('/self-registration/settings.json');
$this->assertResponseOk();
$retrievedSettings = $this->getResponseBodyAsArray();
$this->assertSame($this->getExpectedKeys(), array_keys($retrievedSettings));
$this->assertSame(json_decode($settingInDB->value, true), [
'provider' => $retrievedSettings['provider'],
'data' => $retrievedSettings['data'],
]);
}
public function testSelfRegistrationGetSettingsControllerTest_Guest_Have_No_Access()
{
$this->getJson('/self-registration/settings.json');
$this->assertAuthenticationError();
}
public function testSelfRegistrationGetSettingsControllerTest_Admin_Access_Only()
{
$this->logInAsUser();
$this->getJson('/self-registration/settings.json');
$this->assertForbiddenError('Access restricted to administrators.');
}
}
?>
Did this file decode correctly?
Original Code
<?php
declare(strict_types=1);
/**
* Passbolt ~ Open source password manager for teams
* Copyright (c) Passbolt SA (https://www.passbolt.com)
*
* Licensed under GNU Affero General Public License version 3 of the or any later version.
* For full copyright and license information, please see the LICENSE.txt
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright (c) Passbolt SA (https://www.passbolt.com)
* @license https://opensource.org/licenses/AGPL-3.0 AGPL License
* @link https://www.passbolt.com Passbolt(tm)
* @since 3.10.0
*/
namespace Passbolt\SelfRegistration\Test\TestCase\Controller;
use App\Test\Lib\AppIntegrationTestCase;
use Passbolt\SelfRegistration\SelfRegistrationPlugin;
use Passbolt\SelfRegistration\Test\Lib\SelfRegistrationTestTrait;
class SelfRegistrationGetSettingsControllerTest extends AppIntegrationTestCase
{
use SelfRegistrationTestTrait;
public function setUp(): void
{
parent::setUp();
$this->enableFeaturePlugin(SelfRegistrationPlugin::class);
}
public function testSelfRegistrationGetSettingsControllerTest_Success()
{
$this->logInAsAdmin();
$settingInDB = $this->setSelfRegistrationSettingsData();
$this->getJson('/self-registration/settings.json');
$this->assertResponseOk();
$retrievedSettings = $this->getResponseBodyAsArray();
$this->assertSame($this->getExpectedKeys(), array_keys($retrievedSettings));
$this->assertSame(json_decode($settingInDB->value, true), [
'provider' => $retrievedSettings['provider'],
'data' => $retrievedSettings['data'],
]);
}
public function testSelfRegistrationGetSettingsControllerTest_Guest_Have_No_Access()
{
$this->getJson('/self-registration/settings.json');
$this->assertAuthenticationError();
}
public function testSelfRegistrationGetSettingsControllerTest_Admin_Access_Only()
{
$this->logInAsUser();
$this->getJson('/self-registration/settings.json');
$this->assertForbiddenError('Access restricted to administrators.');
}
}
Function Calls
None |
Stats
MD5 | 284542aec341999c347d17a51ca0270b |
Eval Count | 0 |
Decode Time | 75 ms |