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\Model\Category\Attribute\Backend;

use Magento\Catalog\Model\Category\Attribute\Backend\Sortby;
use Magento\Eav\Model\Entity\AbstractEntity;
use Magento\Eav\Model\Entity\Attribute\AbstractAttribute;
use Magento\Eav\Model\Entity\Attribute\Frontend\AbstractFrontend;
use Magento\Framework\App\Config\ScopeConfigInterface;
use Magento\Framework\DataObject;
use Magento\Framework\TestFramework\Unit\Helper\ObjectManager;
use PHPUnit\Framework\TestCase;

class SortbyTest extends TestCase
{
    private const DEFAULT_ATTRIBUTE_CODE = 'attribute_name';

    /**
     * @var Sortby
     */
    private $model;

    /**
     * @var ObjectManager
     */
    private $objectHelper;

    /**
     * @var AbstractAttribute
     */
    private $attribute;

    /**
     * @var ScopeConfigInterface
     */
    private $scopeConfig;

    /**
     * @inheritdoc
     */
    protected function setUp(): void
    {
        $this->objectHelper = new ObjectManager($this);
        $this->scopeConfig = $this->getMockForAbstractClass(ScopeConfigInterface::class);
        $this->model = $this->objectHelper->getObject(
            Sortby::class,
            ['scopeConfig' => $this->scopeConfig]
        );
        $this->attribute = $this->createPartialMock(
            AbstractAttribute::class,
            [
                'getName',
                '__call',
                'isValueEmpty',
                'getEntity',
                'getFrontend',
                'getIsRequired',
                'getIsUnique'
            ]
        );

        $this->model->setAttribute($this->attribute);
    }

    /**
     * @param $attributeCode
     * @param $data
     * @param $expected
     *
     * @return void
     * @dataProvider beforeSaveDataProvider
     */
    public function testBeforeSave($attributeCode, $data, $expected): void
    {
        $this->attribute->expects($this->any())->method('getName')->willReturn($attributeCode);
        $object = new DataObject($data);
        $this->model->beforeSave($object);
        $this->assertTrue($object->hasData($attributeCode));
        $this->assertSame($expected, $object->getData($attributeCode));
    }

    /**
     * @return array
     */
    public function beforeSaveDataProvider(): array
    {
        return [
            'attribute with specified value' => [
                self::DEFAULT_ATTRIBUTE_CODE,
                [self::DEFAULT_ATTRIBUTE_CODE => 'test_value'],
                'test_value'
            ],
            'attribute with default value' => [
                self::DEFAULT_ATTRIBUTE_CODE,
                [self::DEFAULT_ATTRIBUTE_CODE => null],
                null
            ],
            'attribute does not exist' => [
                self::DEFAULT_ATTRIBUTE_CODE,
                [],
                null
            ],
            'attribute sort by empty' => [
                'available_sort_by',
                ['available_sort_by' => null],
                null
            ],
            'attribute sort by' => [
                'available_sort_by',
                ['available_sort_by' => ['test', 'value']],
                'test,value'
            ]
        ];
    }

    /**
     * @param $attributeCode
     * @param $data
     * @param $expected
     *
     * @return void
     * @dataProvider afterLoadDataProvider
     */
    public function testAfterLoad($attributeCode, $data, $expected): void
    {
        $this->attribute->expects($this->any())->method('getName')->willReturn($attributeCode);
        $object = new DataObject($data);
        $this->model->afterLoad($object);
        $this->assertTrue($object->hasData($attributeCode));
        $this->assertSame($expected, $object->getData($attributeCode));
    }

    /**
     * @return array
     */
    public function afterLoadDataProvider(): array
    {
        return [
            'attribute with specified value' => [
                self::DEFAULT_ATTRIBUTE_CODE,
                [self::DEFAULT_ATTRIBUTE_CODE => 'test_value'],
                'test_value'
            ],
            'attribute sort by empty' => [
                'available_sort_by',
                ['available_sort_by' => null],
                null
            ],
            'attribute sort by' => [
                'available_sort_by',
                ['available_sort_by' => 'test,value'],
                ['test', 'value']
            ]
        ];
    }

    /**
     * @param $attributeData
     * @param $data
     * @param $expected
     *
     * @return void
     * @dataProvider validateDataProvider
     */
    public function testValidate($attributeData, $data, $expected): void
    {
        $this->attribute->expects($this->any())->method('getName')->willReturn($attributeData['code']);
        $this->attribute->method('getIsRequired')
            ->willReturn($attributeData['isRequired']);
        $this->attribute
            ->expects($this->any())
            ->method('isValueEmpty')
            ->willReturn($attributeData['isValueEmpty']);
        $object = new DataObject($data);
        $this->assertSame($expected, $this->model->validate($object));
    }

    /**
     * @return array
     */
    public function validateDataProvider(): array
    {
        return [
            'is not required' => [
                ['code' => self::DEFAULT_ATTRIBUTE_CODE, 'isRequired' => false, 'isValueEmpty' => false],
                [],
                true
            ],
            'required, empty, not use config case 1' => [
                ['code' => self::DEFAULT_ATTRIBUTE_CODE, 'isRequired' => true, 'isValueEmpty' => true],
                [self::DEFAULT_ATTRIBUTE_CODE => [], 'use_post_data_config' => []],
                false
            ],
            'required, empty, not use config case 2' => [
                ['code' => self::DEFAULT_ATTRIBUTE_CODE, 'isRequired' => true, 'isValueEmpty' => true],
                [self::DEFAULT_ATTRIBUTE_CODE => [], 'use_post_data_config' => ['config']],
                false
            ],
            'required, empty, use config' => [
                ['code' => self::DEFAULT_ATTRIBUTE_CODE, 'isRequired' => true, 'isValueEmpty' => true],
                [self::DEFAULT_ATTRIBUTE_CODE => [], 'use_post_data_config' => [self::DEFAULT_ATTRIBUTE_CODE]],
                true
            ]
        ];
    }

    /**
     * @return void
     */
    public function testValidateUnique(): void
    {
        $this->attribute->expects($this->any())->method('getName')->willReturn('attribute_name');
        $this->attribute->method('getIsRequired');
        $this->attribute->method('getIsUnique')
            ->willReturn(true);

        $entityMock = $this->getMockForAbstractClass(
            AbstractEntity::class,
            [],
            '',
            false,
            true,
            true,
            ['checkAttributeUniqueValue']
        );
        $this->attribute->expects($this->any())->method('getEntity')->willReturn($entityMock);
        $entityMock->method('checkAttributeUniqueValue')
            ->willReturn(true);
        $this->assertTrue($this->model->validate(new DataObject()));
    }

    /**
     * @return void
     */
    public function testValidateUniqueException(): void
    {
        $this->expectException('Magento\Framework\Exception\LocalizedException');
        $this->attribute->expects($this->any())->method('getName')->willReturn('attribute_name');
        $this->attribute->method('getIsRequired');
        $this->attribute->method('getIsUnique')->willReturn(true);

        $entityMock = $this->getMockForAbstractClass(
            AbstractEntity::class,
            [],
            '',
            false,
            true,
            true,
            ['checkAttributeUniqueValue']
        );
        $frontMock = $this->getMockForAbstractClass(
            AbstractFrontend::class,
            [],
            '',
            false,
            true,
            true,
            ['getLabel']
        );
        $this->attribute->expects($this->any())->method('getEntity')->willReturn($entityMock);
        $this->attribute->expects($this->any())->method('getFrontend')->willReturn($frontMock);
        $entityMock->method('checkAttributeUniqueValue')->willReturn(false);
        $this->assertTrue($this->model->validate(new DataObject()));
    }

    /**
     * @param $attributeCode
     * @param $data
     *
     * @return void
     * @dataProvider validateDefaultSortDataProvider
     */
    public function testValidateDefaultSort($attributeCode, $data): void
    {
        $this->attribute->expects($this->any())->method('getName')->willReturn($attributeCode);
        $this->scopeConfig->expects($this->any())->method('getValue')->willReturn('value2');
        $object = new DataObject($data);
        $this->assertTrue($this->model->validate($object));
    }

    /**
     * @return array
     */
    public function validateDefaultSortDataProvider(): array
    {
        return [
            [
                'default_sort_by',
                [
                    'available_sort_by' => ['value1', 'value2'],
                    'default_sort_by' => 'value2',
                    'use_post_data_config' => []
                ]
            ],
            [
                'default_sort_by',
                [
                    'available_sort_by' => 'value1,value2',
                    'use_post_data_config' => ['default_sort_by']
                ]
            ],
            [
                'default_sort_by',
                [
                    'available_sort_by' => null,
                    'default_sort_by' => null,
                    'use_post_data_config' => ['available_sort_by', 'default_sort_by', 'filter_price_range']
                ]
            ]
        ];
    }

    /**
     * @param $attributeCode
     * @param $data
     *
     * @return void
     * @dataProvider validateDefaultSortException
     */
    public function testValidateDefaultSortException($attributeCode, $data): void
    {
        $this->expectException('Magento\Framework\Exception\LocalizedException');
        $this->attribute->expects($this->any())->method('getName')->willReturn($attributeCode);
        $this->scopeConfig->expects($this->any())->method('getValue')->willReturn('another value');
        $object = new DataObject($data);
        $this->model->validate($object);
    }

    /**
     * @return array
     */
    public function validateDefaultSortException(): array
    {
        return [
            [
                'default_sort_by',
                [
                    'available_sort_by' => null,
                    'use_post_data_config' => ['default_sort_by']
                ]
            ],
            [
                'default_sort_by',
                [
                    'available_sort_by' => null,
                    'use_post_data_config' => []
                ]
            ],
            [
                'default_sort_by',
                [
                    'available_sort_by' => ['value1', 'value2'],
                    'default_sort_by' => 'another value',
                    'use_post_data_config' => []
                ]
            ],
            [
                'default_sort_by',
                [
                    'available_sort_by' => 'value1',
                    'use_post_data_config' => []
                ]
            ]
        ];
    }
}
 ?>

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\Model\Category\Attribute\Backend;

use Magento\Catalog\Model\Category\Attribute\Backend\Sortby;
use Magento\Eav\Model\Entity\AbstractEntity;
use Magento\Eav\Model\Entity\Attribute\AbstractAttribute;
use Magento\Eav\Model\Entity\Attribute\Frontend\AbstractFrontend;
use Magento\Framework\App\Config\ScopeConfigInterface;
use Magento\Framework\DataObject;
use Magento\Framework\TestFramework\Unit\Helper\ObjectManager;
use PHPUnit\Framework\TestCase;

class SortbyTest extends TestCase
{
    private const DEFAULT_ATTRIBUTE_CODE = 'attribute_name';

    /**
     * @var Sortby
     */
    private $model;

    /**
     * @var ObjectManager
     */
    private $objectHelper;

    /**
     * @var AbstractAttribute
     */
    private $attribute;

    /**
     * @var ScopeConfigInterface
     */
    private $scopeConfig;

    /**
     * @inheritdoc
     */
    protected function setUp(): void
    {
        $this->objectHelper = new ObjectManager($this);
        $this->scopeConfig = $this->getMockForAbstractClass(ScopeConfigInterface::class);
        $this->model = $this->objectHelper->getObject(
            Sortby::class,
            ['scopeConfig' => $this->scopeConfig]
        );
        $this->attribute = $this->createPartialMock(
            AbstractAttribute::class,
            [
                'getName',
                '__call',
                'isValueEmpty',
                'getEntity',
                'getFrontend',
                'getIsRequired',
                'getIsUnique'
            ]
        );

        $this->model->setAttribute($this->attribute);
    }

    /**
     * @param $attributeCode
     * @param $data
     * @param $expected
     *
     * @return void
     * @dataProvider beforeSaveDataProvider
     */
    public function testBeforeSave($attributeCode, $data, $expected): void
    {
        $this->attribute->expects($this->any())->method('getName')->willReturn($attributeCode);
        $object = new DataObject($data);
        $this->model->beforeSave($object);
        $this->assertTrue($object->hasData($attributeCode));
        $this->assertSame($expected, $object->getData($attributeCode));
    }

    /**
     * @return array
     */
    public function beforeSaveDataProvider(): array
    {
        return [
            'attribute with specified value' => [
                self::DEFAULT_ATTRIBUTE_CODE,
                [self::DEFAULT_ATTRIBUTE_CODE => 'test_value'],
                'test_value'
            ],
            'attribute with default value' => [
                self::DEFAULT_ATTRIBUTE_CODE,
                [self::DEFAULT_ATTRIBUTE_CODE => null],
                null
            ],
            'attribute does not exist' => [
                self::DEFAULT_ATTRIBUTE_CODE,
                [],
                null
            ],
            'attribute sort by empty' => [
                'available_sort_by',
                ['available_sort_by' => null],
                null
            ],
            'attribute sort by' => [
                'available_sort_by',
                ['available_sort_by' => ['test', 'value']],
                'test,value'
            ]
        ];
    }

    /**
     * @param $attributeCode
     * @param $data
     * @param $expected
     *
     * @return void
     * @dataProvider afterLoadDataProvider
     */
    public function testAfterLoad($attributeCode, $data, $expected): void
    {
        $this->attribute->expects($this->any())->method('getName')->willReturn($attributeCode);
        $object = new DataObject($data);
        $this->model->afterLoad($object);
        $this->assertTrue($object->hasData($attributeCode));
        $this->assertSame($expected, $object->getData($attributeCode));
    }

    /**
     * @return array
     */
    public function afterLoadDataProvider(): array
    {
        return [
            'attribute with specified value' => [
                self::DEFAULT_ATTRIBUTE_CODE,
                [self::DEFAULT_ATTRIBUTE_CODE => 'test_value'],
                'test_value'
            ],
            'attribute sort by empty' => [
                'available_sort_by',
                ['available_sort_by' => null],
                null
            ],
            'attribute sort by' => [
                'available_sort_by',
                ['available_sort_by' => 'test,value'],
                ['test', 'value']
            ]
        ];
    }

    /**
     * @param $attributeData
     * @param $data
     * @param $expected
     *
     * @return void
     * @dataProvider validateDataProvider
     */
    public function testValidate($attributeData, $data, $expected): void
    {
        $this->attribute->expects($this->any())->method('getName')->willReturn($attributeData['code']);
        $this->attribute->method('getIsRequired')
            ->willReturn($attributeData['isRequired']);
        $this->attribute
            ->expects($this->any())
            ->method('isValueEmpty')
            ->willReturn($attributeData['isValueEmpty']);
        $object = new DataObject($data);
        $this->assertSame($expected, $this->model->validate($object));
    }

    /**
     * @return array
     */
    public function validateDataProvider(): array
    {
        return [
            'is not required' => [
                ['code' => self::DEFAULT_ATTRIBUTE_CODE, 'isRequired' => false, 'isValueEmpty' => false],
                [],
                true
            ],
            'required, empty, not use config case 1' => [
                ['code' => self::DEFAULT_ATTRIBUTE_CODE, 'isRequired' => true, 'isValueEmpty' => true],
                [self::DEFAULT_ATTRIBUTE_CODE => [], 'use_post_data_config' => []],
                false
            ],
            'required, empty, not use config case 2' => [
                ['code' => self::DEFAULT_ATTRIBUTE_CODE, 'isRequired' => true, 'isValueEmpty' => true],
                [self::DEFAULT_ATTRIBUTE_CODE => [], 'use_post_data_config' => ['config']],
                false
            ],
            'required, empty, use config' => [
                ['code' => self::DEFAULT_ATTRIBUTE_CODE, 'isRequired' => true, 'isValueEmpty' => true],
                [self::DEFAULT_ATTRIBUTE_CODE => [], 'use_post_data_config' => [self::DEFAULT_ATTRIBUTE_CODE]],
                true
            ]
        ];
    }

    /**
     * @return void
     */
    public function testValidateUnique(): void
    {
        $this->attribute->expects($this->any())->method('getName')->willReturn('attribute_name');
        $this->attribute->method('getIsRequired');
        $this->attribute->method('getIsUnique')
            ->willReturn(true);

        $entityMock = $this->getMockForAbstractClass(
            AbstractEntity::class,
            [],
            '',
            false,
            true,
            true,
            ['checkAttributeUniqueValue']
        );
        $this->attribute->expects($this->any())->method('getEntity')->willReturn($entityMock);
        $entityMock->method('checkAttributeUniqueValue')
            ->willReturn(true);
        $this->assertTrue($this->model->validate(new DataObject()));
    }

    /**
     * @return void
     */
    public function testValidateUniqueException(): void
    {
        $this->expectException('Magento\Framework\Exception\LocalizedException');
        $this->attribute->expects($this->any())->method('getName')->willReturn('attribute_name');
        $this->attribute->method('getIsRequired');
        $this->attribute->method('getIsUnique')->willReturn(true);

        $entityMock = $this->getMockForAbstractClass(
            AbstractEntity::class,
            [],
            '',
            false,
            true,
            true,
            ['checkAttributeUniqueValue']
        );
        $frontMock = $this->getMockForAbstractClass(
            AbstractFrontend::class,
            [],
            '',
            false,
            true,
            true,
            ['getLabel']
        );
        $this->attribute->expects($this->any())->method('getEntity')->willReturn($entityMock);
        $this->attribute->expects($this->any())->method('getFrontend')->willReturn($frontMock);
        $entityMock->method('checkAttributeUniqueValue')->willReturn(false);
        $this->assertTrue($this->model->validate(new DataObject()));
    }

    /**
     * @param $attributeCode
     * @param $data
     *
     * @return void
     * @dataProvider validateDefaultSortDataProvider
     */
    public function testValidateDefaultSort($attributeCode, $data): void
    {
        $this->attribute->expects($this->any())->method('getName')->willReturn($attributeCode);
        $this->scopeConfig->expects($this->any())->method('getValue')->willReturn('value2');
        $object = new DataObject($data);
        $this->assertTrue($this->model->validate($object));
    }

    /**
     * @return array
     */
    public function validateDefaultSortDataProvider(): array
    {
        return [
            [
                'default_sort_by',
                [
                    'available_sort_by' => ['value1', 'value2'],
                    'default_sort_by' => 'value2',
                    'use_post_data_config' => []
                ]
            ],
            [
                'default_sort_by',
                [
                    'available_sort_by' => 'value1,value2',
                    'use_post_data_config' => ['default_sort_by']
                ]
            ],
            [
                'default_sort_by',
                [
                    'available_sort_by' => null,
                    'default_sort_by' => null,
                    'use_post_data_config' => ['available_sort_by', 'default_sort_by', 'filter_price_range']
                ]
            ]
        ];
    }

    /**
     * @param $attributeCode
     * @param $data
     *
     * @return void
     * @dataProvider validateDefaultSortException
     */
    public function testValidateDefaultSortException($attributeCode, $data): void
    {
        $this->expectException('Magento\Framework\Exception\LocalizedException');
        $this->attribute->expects($this->any())->method('getName')->willReturn($attributeCode);
        $this->scopeConfig->expects($this->any())->method('getValue')->willReturn('another value');
        $object = new DataObject($data);
        $this->model->validate($object);
    }

    /**
     * @return array
     */
    public function validateDefaultSortException(): array
    {
        return [
            [
                'default_sort_by',
                [
                    'available_sort_by' => null,
                    'use_post_data_config' => ['default_sort_by']
                ]
            ],
            [
                'default_sort_by',
                [
                    'available_sort_by' => null,
                    'use_post_data_config' => []
                ]
            ],
            [
                'default_sort_by',
                [
                    'available_sort_by' => ['value1', 'value2'],
                    'default_sort_by' => 'another value',
                    'use_post_data_config' => []
                ]
            ],
            [
                'default_sort_by',
                [
                    'available_sort_by' => 'value1',
                    'use_post_data_config' => []
                ]
            ]
        ];
    }
}

Function Calls

None

Variables

None

Stats

MD5 2153e4ead3f7bde8becc99a8de6ffd08
Eval Count 0
Decode Time 79 ms