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\Indexer\Product\Price\Plugin;

use Magento\Catalog\Model\Indexer\Product\Price\DimensionModeConfiguration;
use Magento\Catalog\Model\Indexer\Product\Price\Plugin\CustomerGroup;
use Magento\Catalog\Model\Indexer\Product\Price\TableMaintainer;
use Magento\Customer\Api\GroupRepositoryInterface;
use Magento\Customer\Model\Data\Group;
use Magento\Customer\Model\Indexer\CustomerGroupDimensionProvider;
use Magento\Framework\Indexer\DimensionFactory;
use Magento\Framework\TestFramework\Unit\Helper\ObjectManager;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;

/**
 * Test for CustomerGroup plugin
 */
class CustomerGroupTest extends TestCase
{
    /**
     * @var ObjectManager
     */
    private $objectManager;

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

    /**
     * @var DimensionFactory|MockObject
     */
    private $dimensionFactory;

    /**
     * @var TableMaintainer|MockObject
     */
    private $tableMaintainerMock;

    /**
     * @var DimensionModeConfiguration|MockObject
     */
    private $dimensionModeConfiguration;

    /**
     * @var \Callable
     */
    private $proceedMock;

    protected function setUp(): void
    {
        $this->objectManager = new ObjectManager($this);

        $this->dimensionFactory = $this->createPartialMock(
            DimensionFactory::class,
            ['create']
        );

        $this->dimensionModeConfiguration = $this->createPartialMock(
            DimensionModeConfiguration::class,
            ['getDimensionConfiguration']
        );

        $this->tableMaintainerMock = $this->createPartialMock(
            TableMaintainer::class,
            ['createTablesForDimensions']
        );

        $this->model = $this->objectManager->getObject(
            CustomerGroup::class,
            [
                'dimensionFactory' => $this->dimensionFactory,
                'dimensionModeConfiguration' => $this->dimensionModeConfiguration,
                'tableMaintainer' => $this->tableMaintainerMock,
            ]
        );
    }

    /**
     * Check of call count createTablesForDimensions() method
     *
     * @param $customerGroupId
     * @param $callTimes
     *
     * @dataProvider aroundSaveDataProvider
     */
    public function testAroundSave($customerGroupId, $callTimes)
    {
        $subjectMock = $this->getMockForAbstractClass(GroupRepositoryInterface::class);
        $customerGroupMock = $this->createPartialMock(
            Group::class,
            ['getId']
        );
        $customerGroupMock->method('getId')->willReturn($customerGroupId);
        $this->tableMaintainerMock->expects(
            $this->exactly($callTimes)
        )->method('createTablesForDimensions');
        $this->proceedMock = function ($customerGroupMock) {
            return $customerGroupMock;
        };
        $this->dimensionModeConfiguration->method('getDimensionConfiguration')->willReturn(
            [CustomerGroupDimensionProvider::DIMENSION_NAME]
        );
        $this->model->aroundSave($subjectMock, $this->proceedMock, $customerGroupMock);
    }

    /**
     * Data provider for testAroundSave
     *
     * @return array
     */
    public function aroundSaveDataProvider()
    {
        return [
            'customer_group_id = 0' => [
                'customer_group_id' => '0',
                'create_tables_call_times' => 0
            ],
            'customer_group_id = 1' => [
                'customer_group_id' => '1',
                'create_tables_call_times' => 0
            ],
            'customer_group_id = null' => [
                'customer_group_id' => null,
                'create_tables_call_times' => 1
            ],
        ];
    }
}
 ?>

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\Indexer\Product\Price\Plugin;

use Magento\Catalog\Model\Indexer\Product\Price\DimensionModeConfiguration;
use Magento\Catalog\Model\Indexer\Product\Price\Plugin\CustomerGroup;
use Magento\Catalog\Model\Indexer\Product\Price\TableMaintainer;
use Magento\Customer\Api\GroupRepositoryInterface;
use Magento\Customer\Model\Data\Group;
use Magento\Customer\Model\Indexer\CustomerGroupDimensionProvider;
use Magento\Framework\Indexer\DimensionFactory;
use Magento\Framework\TestFramework\Unit\Helper\ObjectManager;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;

/**
 * Test for CustomerGroup plugin
 */
class CustomerGroupTest extends TestCase
{
    /**
     * @var ObjectManager
     */
    private $objectManager;

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

    /**
     * @var DimensionFactory|MockObject
     */
    private $dimensionFactory;

    /**
     * @var TableMaintainer|MockObject
     */
    private $tableMaintainerMock;

    /**
     * @var DimensionModeConfiguration|MockObject
     */
    private $dimensionModeConfiguration;

    /**
     * @var \Callable
     */
    private $proceedMock;

    protected function setUp(): void
    {
        $this->objectManager = new ObjectManager($this);

        $this->dimensionFactory = $this->createPartialMock(
            DimensionFactory::class,
            ['create']
        );

        $this->dimensionModeConfiguration = $this->createPartialMock(
            DimensionModeConfiguration::class,
            ['getDimensionConfiguration']
        );

        $this->tableMaintainerMock = $this->createPartialMock(
            TableMaintainer::class,
            ['createTablesForDimensions']
        );

        $this->model = $this->objectManager->getObject(
            CustomerGroup::class,
            [
                'dimensionFactory' => $this->dimensionFactory,
                'dimensionModeConfiguration' => $this->dimensionModeConfiguration,
                'tableMaintainer' => $this->tableMaintainerMock,
            ]
        );
    }

    /**
     * Check of call count createTablesForDimensions() method
     *
     * @param $customerGroupId
     * @param $callTimes
     *
     * @dataProvider aroundSaveDataProvider
     */
    public function testAroundSave($customerGroupId, $callTimes)
    {
        $subjectMock = $this->getMockForAbstractClass(GroupRepositoryInterface::class);
        $customerGroupMock = $this->createPartialMock(
            Group::class,
            ['getId']
        );
        $customerGroupMock->method('getId')->willReturn($customerGroupId);
        $this->tableMaintainerMock->expects(
            $this->exactly($callTimes)
        )->method('createTablesForDimensions');
        $this->proceedMock = function ($customerGroupMock) {
            return $customerGroupMock;
        };
        $this->dimensionModeConfiguration->method('getDimensionConfiguration')->willReturn(
            [CustomerGroupDimensionProvider::DIMENSION_NAME]
        );
        $this->model->aroundSave($subjectMock, $this->proceedMock, $customerGroupMock);
    }

    /**
     * Data provider for testAroundSave
     *
     * @return array
     */
    public function aroundSaveDataProvider()
    {
        return [
            'customer_group_id = 0' => [
                'customer_group_id' => '0',
                'create_tables_call_times' => 0
            ],
            'customer_group_id = 1' => [
                'customer_group_id' => '1',
                'create_tables_call_times' => 0
            ],
            'customer_group_id = null' => [
                'customer_group_id' => null,
                'create_tables_call_times' => 1
            ],
        ];
    }
}

Function Calls

None

Variables

None

Stats

MD5 d35191df196b62e0bdf14cab44858cc1
Eval Count 0
Decode Time 137 ms