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

use Magento\Catalog\Model\Indexer\Category\Product\Plugin\TableResolver;
use Magento\Framework\App\ResourceConnection;
use Magento\Framework\Indexer\ScopeResolver\IndexScopeResolver;
use Magento\Store\Model\Store;
use Magento\Store\Model\StoreManagerInterface;
use PHPUnit\Framework\TestCase;

class TableResolverTest extends TestCase
{
    /**
     * Tests replacing catalog_category_product_index table name
     *
     * @param int $storeId
     * @param string $tableName
     * @param string $expected
     * @dataProvider afterGetTableNameDataProvider
     */
    public function testAfterGetTableName(int $storeId, string $tableName, string $expected): void
    {
        $storeManagerMock = $this->getMockForAbstractClass(StoreManagerInterface::class);

        $storeMock = $this->getMockBuilder(Store::class)
            ->onlyMethods(['getId'])
            ->disableOriginalConstructor()
            ->getMock();
        $storeMock->method('getId')
            ->willReturn($storeId);

        $storeManagerMock->method('getStore')->willReturn($storeMock);

        $tableResolverMock = $this->getMockBuilder(IndexScopeResolver::class)
            ->disableOriginalConstructor()
            ->getMock();
        $tableResolverMock->method('resolve')->willReturn('catalog_category_product_index_store1');

        $subjectMock = $this->getMockBuilder(ResourceConnection::class)
            ->disableOriginalConstructor()
            ->getMock();

        $model = new TableResolver($storeManagerMock, $tableResolverMock);

        $this->assertEquals(
            $expected,
            $model->afterGetTableName($subjectMock, $tableName, 'catalog_category_product_index')
        );
    }

    /**
     * Data provider for testAfterGetTableName
     *
     * @return array
     */
    public function afterGetTableNameDataProvider(): array
    {
        return [
            [
                'storeId' => 1,
                'tableName' => 'catalog_category_product_index',
                'expected' => 'catalog_category_product_index_store1'
            ],
            [
                'storeId' => 0,
                'tableName' => 'catalog_category_product_index',
                'expected' => 'catalog_category_product_index'
            ],
        ];
    }
}
 ?>

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

use Magento\Catalog\Model\Indexer\Category\Product\Plugin\TableResolver;
use Magento\Framework\App\ResourceConnection;
use Magento\Framework\Indexer\ScopeResolver\IndexScopeResolver;
use Magento\Store\Model\Store;
use Magento\Store\Model\StoreManagerInterface;
use PHPUnit\Framework\TestCase;

class TableResolverTest extends TestCase
{
    /**
     * Tests replacing catalog_category_product_index table name
     *
     * @param int $storeId
     * @param string $tableName
     * @param string $expected
     * @dataProvider afterGetTableNameDataProvider
     */
    public function testAfterGetTableName(int $storeId, string $tableName, string $expected): void
    {
        $storeManagerMock = $this->getMockForAbstractClass(StoreManagerInterface::class);

        $storeMock = $this->getMockBuilder(Store::class)
            ->onlyMethods(['getId'])
            ->disableOriginalConstructor()
            ->getMock();
        $storeMock->method('getId')
            ->willReturn($storeId);

        $storeManagerMock->method('getStore')->willReturn($storeMock);

        $tableResolverMock = $this->getMockBuilder(IndexScopeResolver::class)
            ->disableOriginalConstructor()
            ->getMock();
        $tableResolverMock->method('resolve')->willReturn('catalog_category_product_index_store1');

        $subjectMock = $this->getMockBuilder(ResourceConnection::class)
            ->disableOriginalConstructor()
            ->getMock();

        $model = new TableResolver($storeManagerMock, $tableResolverMock);

        $this->assertEquals(
            $expected,
            $model->afterGetTableName($subjectMock, $tableName, 'catalog_category_product_index')
        );
    }

    /**
     * Data provider for testAfterGetTableName
     *
     * @return array
     */
    public function afterGetTableNameDataProvider(): array
    {
        return [
            [
                'storeId' => 1,
                'tableName' => 'catalog_category_product_index',
                'expected' => 'catalog_category_product_index_store1'
            ],
            [
                'storeId' => 0,
                'tableName' => 'catalog_category_product_index',
                'expected' => 'catalog_category_product_index'
            ],
        ];
    }
}

Function Calls

None

Variables

None

Stats

MD5 e2be71242b35c78359d2ce491e6483cc
Eval Count 0
Decode Time 124 ms