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 namespace Roundcube\Tests\Actions\Settings; use Roundcube\Tests\ActionTestCase; us..
Decoded Output download
<?php
namespace Roundcube\Tests\Actions\Settings;
use Roundcube\Tests\ActionTestCase;
use Roundcube\Tests\OutputJsonMock;
/**
* Test class to test rcmail_action_settings_folder_size
*/
class FolderSizeTest extends ActionTestCase
{
/**
* Test getting a folder size
*/
public function test_run()
{
$action = new
cmail_action_settings_folder_size();
$output = $this->initOutput(
cmail_action::MODE_AJAX, 'settings', 'folder-size');
$this->assertInstanceOf(
cmail_action::class, $action);
$this->assertTrue($action->checks());
// Set expected storage function calls/results
self::mockStorage()
->registerFunction('folder_size', 100);
$_POST = ['_mbox' => 'Test'];
$this->runAndAssert($action, OutputJsonMock::E_EXIT);
$result = $output->getOutput();
$this->assertSame(['Content-Type: application/json; charset=UTF-8'], $output->headers);
$this->assertSame('folder-size', $result['action']);
$this->assertSame('this.folder_size_update("100 B");', trim($result['exec']));
}
/**
* Test handling errors
*/
public function test_run_errors()
{
$action = new
cmail_action_settings_folder_size();
$output = $this->initOutput(
cmail_action::MODE_AJAX, 'settings', 'folder-size');
// Set expected storage function calls/results
self::mockStorage()
->registerFunction('folder_size', false)
->registerFunction('get_error_code', -1)
->registerFunction('get_response_code',
cube_storage::READONLY);
$_POST = ['_mbox' => 'Test'];
$this->runAndAssert($action, OutputJsonMock::E_EXIT);
$result = $output->getOutput();
$this->assertSame(['Content-Type: application/json; charset=UTF-8'], $output->headers);
$this->assertSame('folder-size', $result['action']);
$this->assertTrue(strpos($result['exec'], 'this.display_message("Unable to perform operation. Folder is read-only.","error",0);') !== false);
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace Roundcube\Tests\Actions\Settings;
use Roundcube\Tests\ActionTestCase;
use Roundcube\Tests\OutputJsonMock;
/**
* Test class to test rcmail_action_settings_folder_size
*/
class FolderSizeTest extends ActionTestCase
{
/**
* Test getting a folder size
*/
public function test_run()
{
$action = new \rcmail_action_settings_folder_size();
$output = $this->initOutput(\rcmail_action::MODE_AJAX, 'settings', 'folder-size');
$this->assertInstanceOf(\rcmail_action::class, $action);
$this->assertTrue($action->checks());
// Set expected storage function calls/results
self::mockStorage()
->registerFunction('folder_size', 100);
$_POST = ['_mbox' => 'Test'];
$this->runAndAssert($action, OutputJsonMock::E_EXIT);
$result = $output->getOutput();
$this->assertSame(['Content-Type: application/json; charset=UTF-8'], $output->headers);
$this->assertSame('folder-size', $result['action']);
$this->assertSame('this.folder_size_update("100 B");', trim($result['exec']));
}
/**
* Test handling errors
*/
public function test_run_errors()
{
$action = new \rcmail_action_settings_folder_size();
$output = $this->initOutput(\rcmail_action::MODE_AJAX, 'settings', 'folder-size');
// Set expected storage function calls/results
self::mockStorage()
->registerFunction('folder_size', false)
->registerFunction('get_error_code', -1)
->registerFunction('get_response_code', \rcube_storage::READONLY);
$_POST = ['_mbox' => 'Test'];
$this->runAndAssert($action, OutputJsonMock::E_EXIT);
$result = $output->getOutput();
$this->assertSame(['Content-Type: application/json; charset=UTF-8'], $output->headers);
$this->assertSame('folder-size', $result['action']);
$this->assertTrue(strpos($result['exec'], 'this.display_message("Unable to perform operation. Folder is read-only.","error",0);') !== false);
}
}
Function Calls
None |
Stats
MD5 | bd40c9c5dcfe99452a337107fe194560 |
Eval Count | 0 |
Decode Time | 124 ms |