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)
*/
namespace Passbolt\Log\Test\TestCase\Model\ActionLogs;
use App\Model\Entity\Role;
use App\Test\Lib\AppTestCase;
use App\Utility\UserAccessControl;
use App\Utility\UserAction;
use App\Utility\UuidFactory;
use Cake\ORM\Locator\LocatorAwareTrait;
/**
* Class ActionLogsTest
*/
class ActionLogsTableTest extends AppTestCase
{
use LocatorAwareTrait;
/**
* @var \Passbolt\Log\Model\Table\ActionsTable
*/
protected $Actions;
/**
* @var \Passbolt\Log\Model\Table\ActionLogsTable
*/
protected $ActionLogs;
public function setUp(): void
{
parent::setUp();
$this->Actions = $this->fetchTable('Passbolt/Log.Actions');
$this->ActionLogs = $this->fetchTable('Passbolt/Log.ActionLogs');
}
/**
* Test create function.
*/
public function testActionLogsTable_Create()
{
// Delete cache
$this->Actions->clearCache();
$accessControl = new UserAccessControl(Role::USER, UuidFactory::uuid('user.id.ada'));
$userAction = UserAction::getInstance($accessControl, 'Resources.Index', 'GET Resources.json');
$actionLog = $this->ActionLogs->create($userAction, 1);
/** @psalm-suppress UndefinedMagicMethod magic method exists */
$action = $this->Actions->findByName('Resources.Index')->first();
$this->assertEquals($action->id, UserAction::actionId('Resources.Index'));
$this->assertEquals($action->name, 'Resources.Index');
$this->assertNotEmpty($actionLog);
$this->assertEquals($actionLog->action_id, UserAction::actionId('Resources.Index'));
}
}
?>
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)
*/
namespace Passbolt\Log\Test\TestCase\Model\ActionLogs;
use App\Model\Entity\Role;
use App\Test\Lib\AppTestCase;
use App\Utility\UserAccessControl;
use App\Utility\UserAction;
use App\Utility\UuidFactory;
use Cake\ORM\Locator\LocatorAwareTrait;
/**
* Class ActionLogsTest
*/
class ActionLogsTableTest extends AppTestCase
{
use LocatorAwareTrait;
/**
* @var \Passbolt\Log\Model\Table\ActionsTable
*/
protected $Actions;
/**
* @var \Passbolt\Log\Model\Table\ActionLogsTable
*/
protected $ActionLogs;
public function setUp(): void
{
parent::setUp();
$this->Actions = $this->fetchTable('Passbolt/Log.Actions');
$this->ActionLogs = $this->fetchTable('Passbolt/Log.ActionLogs');
}
/**
* Test create function.
*/
public function testActionLogsTable_Create()
{
// Delete cache
$this->Actions->clearCache();
$accessControl = new UserAccessControl(Role::USER, UuidFactory::uuid('user.id.ada'));
$userAction = UserAction::getInstance($accessControl, 'Resources.Index', 'GET Resources.json');
$actionLog = $this->ActionLogs->create($userAction, 1);
/** @psalm-suppress UndefinedMagicMethod magic method exists */
$action = $this->Actions->findByName('Resources.Index')->first();
$this->assertEquals($action->id, UserAction::actionId('Resources.Index'));
$this->assertEquals($action->name, 'Resources.Index');
$this->assertNotEmpty($actionLog);
$this->assertEquals($actionLog->action_id, UserAction::actionId('Resources.Index'));
}
}
Function Calls
None |
Stats
MD5 | 09d6ae50b428f251ec845eed809e234a |
Eval Count | 0 |
Decode Time | 80 ms |