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\Catalog\Test\Unit\Ui\DataProvider\Product\Form\Modifier;
use Magento\Catalog\Model\Product\Type;
use Magento\Catalog\Ui\DataProvider\Product\Form\Modifier\System;
use Magento\Framework\UrlInterface;
use PHPUnit\Framework\MockObject\MockObject;
/**
* @method System getModel
*/
class SystemTest extends AbstractModifierTestCase
{
/**
* @var UrlInterface|MockObject
*/
protected $urlBuilderMock;
protected function setUp(): void
{
parent::setUp();
$this->urlBuilderMock = $this->getMockBuilder(UrlInterface::class)
->onlyMethods(['getUrl'])
->getMockForAbstractClass();
}
/**
* {@inheritdoc}
*/
protected function createModel()
{
return $this->objectManager->getObject(System::class, [
'locator' => $this->locatorMock,
'urlBuilder' => $this->urlBuilderMock,
'productUrls' => []
]);
}
public function testModifyData()
{
$submitUrl = 'http://submit.url';
$validateUrl = 'http://validate.url';
$reloadUrl = 'http://reload.url';
$productId = 1;
$storeId = 1;
$attributeSetId = 1;
$parameters = [
'id' => $productId,
'type' => Type::TYPE_SIMPLE,
'store' => $storeId,
];
$actionParameters = array_merge($parameters, ['set' => $attributeSetId]);
$reloadParameters = array_merge(
$parameters,
[
'popup' => 1,
'componentJson' => 1,
'prev_set_id' => $attributeSetId,
]
);
$this->productMock->expects($this->once())
->method('getId')
->willReturn($productId);
$this->productMock->expects($this->exactly(2))
->method('getTypeId')
->willReturn(Type::TYPE_SIMPLE);
$this->productMock->expects($this->once())
->method('getStoreId')
->willReturn($storeId);
$this->productMock->expects($this->once())
->method('getAttributeSetId')
->willReturn($attributeSetId);
$this->urlBuilderMock->expects($this->exactly(3))
->method('getUrl')
->willReturnMap([
['catalog/product/save', $actionParameters, $submitUrl],
['catalog/product/validate', $actionParameters, $validateUrl],
['catalog/product/reload', $reloadParameters, $reloadUrl],
]);
$expectedData = [
'config' => [
System::KEY_SUBMIT_URL => $submitUrl,
System::KEY_VALIDATE_URL => $validateUrl,
System::KEY_RELOAD_URL => $reloadUrl,
]
];
$this->assertSame($expectedData, $this->getModel()->modifyData([]));
}
public function testModifyMeta()
{
$this->assertSame(['meta_key' => 'meta_value'], $this->getModel()->modifyMeta(['meta_key' => 'meta_value']));
}
}
?>
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\Catalog\Test\Unit\Ui\DataProvider\Product\Form\Modifier;
use Magento\Catalog\Model\Product\Type;
use Magento\Catalog\Ui\DataProvider\Product\Form\Modifier\System;
use Magento\Framework\UrlInterface;
use PHPUnit\Framework\MockObject\MockObject;
/**
* @method System getModel
*/
class SystemTest extends AbstractModifierTestCase
{
/**
* @var UrlInterface|MockObject
*/
protected $urlBuilderMock;
protected function setUp(): void
{
parent::setUp();
$this->urlBuilderMock = $this->getMockBuilder(UrlInterface::class)
->onlyMethods(['getUrl'])
->getMockForAbstractClass();
}
/**
* {@inheritdoc}
*/
protected function createModel()
{
return $this->objectManager->getObject(System::class, [
'locator' => $this->locatorMock,
'urlBuilder' => $this->urlBuilderMock,
'productUrls' => []
]);
}
public function testModifyData()
{
$submitUrl = 'http://submit.url';
$validateUrl = 'http://validate.url';
$reloadUrl = 'http://reload.url';
$productId = 1;
$storeId = 1;
$attributeSetId = 1;
$parameters = [
'id' => $productId,
'type' => Type::TYPE_SIMPLE,
'store' => $storeId,
];
$actionParameters = array_merge($parameters, ['set' => $attributeSetId]);
$reloadParameters = array_merge(
$parameters,
[
'popup' => 1,
'componentJson' => 1,
'prev_set_id' => $attributeSetId,
]
);
$this->productMock->expects($this->once())
->method('getId')
->willReturn($productId);
$this->productMock->expects($this->exactly(2))
->method('getTypeId')
->willReturn(Type::TYPE_SIMPLE);
$this->productMock->expects($this->once())
->method('getStoreId')
->willReturn($storeId);
$this->productMock->expects($this->once())
->method('getAttributeSetId')
->willReturn($attributeSetId);
$this->urlBuilderMock->expects($this->exactly(3))
->method('getUrl')
->willReturnMap([
['catalog/product/save', $actionParameters, $submitUrl],
['catalog/product/validate', $actionParameters, $validateUrl],
['catalog/product/reload', $reloadParameters, $reloadUrl],
]);
$expectedData = [
'config' => [
System::KEY_SUBMIT_URL => $submitUrl,
System::KEY_VALIDATE_URL => $validateUrl,
System::KEY_RELOAD_URL => $reloadUrl,
]
];
$this->assertSame($expectedData, $this->getModel()->modifyData([]));
}
public function testModifyMeta()
{
$this->assertSame(['meta_key' => 'meta_value'], $this->getModel()->modifyMeta(['meta_key' => 'meta_value']));
}
}
Function Calls
| None |
Stats
| MD5 | ddab0ad10158fe11d8d5fba5407da40d |
| Eval Count | 0 |
| Decode Time | 141 ms |