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 /** * Copyright Magento, Inc. All rights reserved. * See COPYING.txt for license ..
Decoded Output download
<?php
/**
* Copyright Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);
namespace Magento\AsynchronousOperations\Test\Unit\Model;
use Magento\AsynchronousOperations\Model\Operation;
use Magento\AsynchronousOperations\Model\OperationStatusPool;
use Magento\AsynchronousOperations\Model\OperationStatusValidator;
use Magento\Framework\TestFramework\Unit\Helper\ObjectManager;
use PHPUnit\Framework\TestCase;
class OperationStatusValidatorTest extends TestCase
{
/**
* @var OperationStatusPool
*/
private $operationStatusPool;
/**
* @var OperationStatusValidator
*/
private $operationStatusValidator;
/**
* @var Operation
*/
private $operation;
protected function setUp(): void
{
$this->operationStatusPool = $this->createMock(OperationStatusPool::class);
$objectManager = new ObjectManager($this);
$this->operationStatusValidator = $objectManager->getObject(
OperationStatusValidator::class,
[
'operationStatusPool' => $this->operationStatusPool
]
);
$this->operation = $objectManager->getObject(
Operation::class,
[
'operationStatusValidator' => $this->operationStatusValidator
]
);
}
/**
* @param string $status
* @param array $statusPool
* @param string $expectedResult
* @dataProvider dataProviderForTestSetStatus
*/
public function testSetStatus(
int $status,
array $statusPool,
string $expectedResult
) {
$this->operationStatusPool
->method('getStatuses')
->willReturn($statusPool);
try {
$this->operation->setStatus($status);
$this->assertEquals($expectedResult, $this->operation->getStatus());
} catch (\Exception $exception) {
$this->assertEquals($expectedResult, $exception->getMessage());
}
}
/**
* @SuppressWarnings(PHPMD.ExcessiveMethodLength)
*/
public function dataProviderForTestSetStatus()
{
return [
[
'status' => 0,
'statusPool' => [
'complete' => 1,
'retriablyFailed' => 2,
'notRetriablyFailed' => 3,
'open' => 4,
'rejected' => 5
],
'expectedResult' => 'Invalid Operation Status.'
],
[
'status' => 1,
'statusPool' => [
'complete' => 1,
'retriablyFailed' => 2,
'notRetriablyFailed' => 3,
'open' => 4,
'rejected' => 5
],
'expectedResult' => '1'
],
[
'status' => 2,
'statusPool' => [
'complete' => 1,
'retriablyFailed' => 2,
'notRetriablyFailed' => 3,
'open' => 4,
'rejected' => 5
],
'expectedResult' => '2'
],
[
'status' => 3,
'statusPool' => [
'complete' => 1,
'retriablyFailed' => 2,
'notRetriablyFailed' => 3,
'open' => 4,
'rejected' => 5
],
'expectedResult' => '3'
],
[
'status' => 4,
'statusPool' => [
'complete' => 1,
'retriablyFailed' => 2,
'notRetriablyFailed' => 3,
'open' => 4,
'rejected' => 5
],
'expectedResult' => '4'
],
[
'status' => 5,
'statusPool' => [
'complete' => 1,
'retriablyFailed' => 2,
'notRetriablyFailed' => 3,
'open' => 4,
'rejected' => 5
],
'expectedResult' => '5'
]
];
}
}
?>
Did this file decode correctly?
Original Code
<?php
/**
* Copyright Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);
namespace Magento\AsynchronousOperations\Test\Unit\Model;
use Magento\AsynchronousOperations\Model\Operation;
use Magento\AsynchronousOperations\Model\OperationStatusPool;
use Magento\AsynchronousOperations\Model\OperationStatusValidator;
use Magento\Framework\TestFramework\Unit\Helper\ObjectManager;
use PHPUnit\Framework\TestCase;
class OperationStatusValidatorTest extends TestCase
{
/**
* @var OperationStatusPool
*/
private $operationStatusPool;
/**
* @var OperationStatusValidator
*/
private $operationStatusValidator;
/**
* @var Operation
*/
private $operation;
protected function setUp(): void
{
$this->operationStatusPool = $this->createMock(OperationStatusPool::class);
$objectManager = new ObjectManager($this);
$this->operationStatusValidator = $objectManager->getObject(
OperationStatusValidator::class,
[
'operationStatusPool' => $this->operationStatusPool
]
);
$this->operation = $objectManager->getObject(
Operation::class,
[
'operationStatusValidator' => $this->operationStatusValidator
]
);
}
/**
* @param string $status
* @param array $statusPool
* @param string $expectedResult
* @dataProvider dataProviderForTestSetStatus
*/
public function testSetStatus(
int $status,
array $statusPool,
string $expectedResult
) {
$this->operationStatusPool
->method('getStatuses')
->willReturn($statusPool);
try {
$this->operation->setStatus($status);
$this->assertEquals($expectedResult, $this->operation->getStatus());
} catch (\Exception $exception) {
$this->assertEquals($expectedResult, $exception->getMessage());
}
}
/**
* @SuppressWarnings(PHPMD.ExcessiveMethodLength)
*/
public function dataProviderForTestSetStatus()
{
return [
[
'status' => 0,
'statusPool' => [
'complete' => 1,
'retriablyFailed' => 2,
'notRetriablyFailed' => 3,
'open' => 4,
'rejected' => 5
],
'expectedResult' => 'Invalid Operation Status.'
],
[
'status' => 1,
'statusPool' => [
'complete' => 1,
'retriablyFailed' => 2,
'notRetriablyFailed' => 3,
'open' => 4,
'rejected' => 5
],
'expectedResult' => '1'
],
[
'status' => 2,
'statusPool' => [
'complete' => 1,
'retriablyFailed' => 2,
'notRetriablyFailed' => 3,
'open' => 4,
'rejected' => 5
],
'expectedResult' => '2'
],
[
'status' => 3,
'statusPool' => [
'complete' => 1,
'retriablyFailed' => 2,
'notRetriablyFailed' => 3,
'open' => 4,
'rejected' => 5
],
'expectedResult' => '3'
],
[
'status' => 4,
'statusPool' => [
'complete' => 1,
'retriablyFailed' => 2,
'notRetriablyFailed' => 3,
'open' => 4,
'rejected' => 5
],
'expectedResult' => '4'
],
[
'status' => 5,
'statusPool' => [
'complete' => 1,
'retriablyFailed' => 2,
'notRetriablyFailed' => 3,
'open' => 4,
'rejected' => 5
],
'expectedResult' => '5'
]
];
}
}
Function Calls
None |
Stats
MD5 | 098392c12ae100e53ba27fb98a279952 |
Eval Count | 0 |
Decode Time | 88 ms |