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\Analytics\Test\Unit\Model;
use Magento\Analytics\Model\FileInfo;
use Magento\Framework\TestFramework\Unit\Helper\ObjectManager as ObjectManagerHelper;
use PHPUnit\Framework\TestCase;
class FileInfoTest extends TestCase
{
/**
* @var ObjectManagerHelper
*/
private $objectManagerHelper;
/**
* @return void
*/
protected function setUp(): void
{
$this->objectManagerHelper = new ObjectManagerHelper($this);
}
/**
* @param string|null $path
* @param string|null $initializationVector
* @return void
* @dataProvider constructDataProvider
*/
public function testConstruct($path, $initializationVector)
{
$constructorArguments = [
'path' => $path,
'initializationVector' => $initializationVector,
];
/** @var FileInfo $fileInfo */
$fileInfo = $this->objectManagerHelper->getObject(
FileInfo::class,
array_filter($constructorArguments)
);
$this->assertSame($path ?: '', $fileInfo->getPath());
$this->assertSame($initializationVector ?: '', $fileInfo->getInitializationVector());
}
/**
* @return array
*/
public function constructDataProvider()
{
return [
'Degenerate object' => [null, null],
'Without Initialization Vector' => ['content text', null],
'With Initialization Vector' => ['content text', 'c51sd3c4sd68c5sd'],
];
}
}
?>
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\Analytics\Test\Unit\Model;
use Magento\Analytics\Model\FileInfo;
use Magento\Framework\TestFramework\Unit\Helper\ObjectManager as ObjectManagerHelper;
use PHPUnit\Framework\TestCase;
class FileInfoTest extends TestCase
{
/**
* @var ObjectManagerHelper
*/
private $objectManagerHelper;
/**
* @return void
*/
protected function setUp(): void
{
$this->objectManagerHelper = new ObjectManagerHelper($this);
}
/**
* @param string|null $path
* @param string|null $initializationVector
* @return void
* @dataProvider constructDataProvider
*/
public function testConstruct($path, $initializationVector)
{
$constructorArguments = [
'path' => $path,
'initializationVector' => $initializationVector,
];
/** @var FileInfo $fileInfo */
$fileInfo = $this->objectManagerHelper->getObject(
FileInfo::class,
array_filter($constructorArguments)
);
$this->assertSame($path ?: '', $fileInfo->getPath());
$this->assertSame($initializationVector ?: '', $fileInfo->getInitializationVector());
}
/**
* @return array
*/
public function constructDataProvider()
{
return [
'Degenerate object' => [null, null],
'Without Initialization Vector' => ['content text', null],
'With Initialization Vector' => ['content text', 'c51sd3c4sd68c5sd'],
];
}
}
Function Calls
| None |
Stats
| MD5 | 97eec7e2ac71ae1463c4d2bfdb79ae2d |
| Eval Count | 0 |
| Decode Time | 129 ms |