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 4.5.0
*/
namespace Passbolt\PasswordExpiry\Test\TestCase\Controller;
use App\Test\Factory\UserFactory;
use App\Test\Lib\AppIntegrationTestCase;
use App\Test\Lib\Model\EmailQueueTrait;
use Passbolt\PasswordExpiry\Model\Dto\PasswordExpirySettingsDto;
use Passbolt\PasswordExpiry\PasswordExpiryPlugin;
use Passbolt\PasswordExpiry\Test\Factory\PasswordExpirySettingFactory;
use Passbolt\PasswordExpiry\Test\Lib\PasswordExpiryTestTrait;
/**
* @covers \Passbolt\PasswordExpiry\Controller\PasswordExpirySettingsSetController
*/
class PasswordExpirySettingsSetControllerTest extends AppIntegrationTestCase
{
use EmailQueueTrait;
use PasswordExpiryTestTrait;
/**
* @inheritDoc
*/
public function setUp(): void
{
parent::setUp();
// Mock user agent and IP so extended user access control don't fail
$this->mockUserAgent();
$this->mockUserIp();
$this->enableFeaturePlugin(PasswordExpiryPlugin::class);
}
public function testPasswordExpirySetController_Success()
{
/** @var \App\Model\Entity\User $otherAdmin */
$otherAdmin = UserFactory::make()->admin()->persist();
$activeAdmin = $this->logInAsAdmin();
$this->postJson('/password-expiry/settings.json', $this->getValidPasswordExpiryPayload());
$this->assertSuccess();
$this->assertSame(1, PasswordExpirySettingFactory::count());
/** @var \Passbolt\PasswordExpiry\Model\Entity\PasswordExpirySetting $setting */
$setting = PasswordExpirySettingFactory::find()->firstOrFail();
$response = (array)$this->_responseJsonBody;
$this->assertSame($setting->get('id'), $response['id']);
$this->assertTrue($response[PasswordExpirySettingsDto::AUTOMATIC_EXPIRY]);
$this->assertTrue($response[PasswordExpirySettingsDto::AUTOMATIC_UPDATE]);
$this->assertFalse($response[PasswordExpirySettingsDto::POLICY_OVERRIDE]);
$this->assertNull($response[PasswordExpirySettingsDto::DEFAULT_EXPIRY_PERIOD]);
$this->assertArrayNotHasKey(PasswordExpirySettingsDto::EXPIRY_NOTIFICATION, $response);
$this->assertNotNull($response['created']);
$this->assertNotNull($response['modified']);
$this->assertNotNull($response['created_by']);
$this->assertNotNull($response['modified_by']);
$this->assertEmailQueueCount(2);
$this->assertEmailInBatchContains('You edited the password expiry settings', $activeAdmin->username);
$this->assertEmailInBatchContains(
$activeAdmin->profile->full_name . ' edited the password expiry settings',
$otherAdmin->username
);
}
public function testPasswordExpirySetController_Authentication()
{
$this->logInAsUser();
$this->postJson('/password-expiry/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 4.5.0
*/
namespace Passbolt\PasswordExpiry\Test\TestCase\Controller;
use App\Test\Factory\UserFactory;
use App\Test\Lib\AppIntegrationTestCase;
use App\Test\Lib\Model\EmailQueueTrait;
use Passbolt\PasswordExpiry\Model\Dto\PasswordExpirySettingsDto;
use Passbolt\PasswordExpiry\PasswordExpiryPlugin;
use Passbolt\PasswordExpiry\Test\Factory\PasswordExpirySettingFactory;
use Passbolt\PasswordExpiry\Test\Lib\PasswordExpiryTestTrait;
/**
* @covers \Passbolt\PasswordExpiry\Controller\PasswordExpirySettingsSetController
*/
class PasswordExpirySettingsSetControllerTest extends AppIntegrationTestCase
{
use EmailQueueTrait;
use PasswordExpiryTestTrait;
/**
* @inheritDoc
*/
public function setUp(): void
{
parent::setUp();
// Mock user agent and IP so extended user access control don't fail
$this->mockUserAgent();
$this->mockUserIp();
$this->enableFeaturePlugin(PasswordExpiryPlugin::class);
}
public function testPasswordExpirySetController_Success()
{
/** @var \App\Model\Entity\User $otherAdmin */
$otherAdmin = UserFactory::make()->admin()->persist();
$activeAdmin = $this->logInAsAdmin();
$this->postJson('/password-expiry/settings.json', $this->getValidPasswordExpiryPayload());
$this->assertSuccess();
$this->assertSame(1, PasswordExpirySettingFactory::count());
/** @var \Passbolt\PasswordExpiry\Model\Entity\PasswordExpirySetting $setting */
$setting = PasswordExpirySettingFactory::find()->firstOrFail();
$response = (array)$this->_responseJsonBody;
$this->assertSame($setting->get('id'), $response['id']);
$this->assertTrue($response[PasswordExpirySettingsDto::AUTOMATIC_EXPIRY]);
$this->assertTrue($response[PasswordExpirySettingsDto::AUTOMATIC_UPDATE]);
$this->assertFalse($response[PasswordExpirySettingsDto::POLICY_OVERRIDE]);
$this->assertNull($response[PasswordExpirySettingsDto::DEFAULT_EXPIRY_PERIOD]);
$this->assertArrayNotHasKey(PasswordExpirySettingsDto::EXPIRY_NOTIFICATION, $response);
$this->assertNotNull($response['created']);
$this->assertNotNull($response['modified']);
$this->assertNotNull($response['created_by']);
$this->assertNotNull($response['modified_by']);
$this->assertEmailQueueCount(2);
$this->assertEmailInBatchContains('You edited the password expiry settings', $activeAdmin->username);
$this->assertEmailInBatchContains(
$activeAdmin->profile->full_name . ' edited the password expiry settings',
$otherAdmin->username
);
}
public function testPasswordExpirySetController_Authentication()
{
$this->logInAsUser();
$this->postJson('/password-expiry/settings.json');
$this->assertForbiddenError('Access restricted to administrators.');
}
}
Function Calls
None |
Stats
MD5 | f3afdb869f4ff53bed574cc231245c80 |
Eval Count | 0 |
Decode Time | 87 ms |