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\ResourceModel\Product\Indexer\Eav;
use Magento\Catalog\Api\Data\ProductInterface;
use Magento\Catalog\Model\ResourceModel\Product\Indexer\Eav\Decimal;
use Magento\Catalog\Model\ResourceModel\Product\Indexer\Eav\DecimalRowSizeEstimator;
use Magento\Framework\DB\Adapter\AdapterInterface;
use Magento\Framework\DB\Select;
use Magento\Framework\EntityManager\EntityMetadataInterface;
use Magento\Framework\EntityManager\MetadataPool;
use Magento\Store\Api\StoreManagementInterface;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;
class DecimalRowSizeEstimatorTest extends TestCase
{
/**
* @var DecimalRowSizeEstimator
*/
private $model;
/**
* @var MockObject
*/
private $indexerResourceMock;
/**
* @var MockObject
*/
private $storeManagementMock;
/**
* @var MockObject
*/
private $metadataPoolMock;
/**
* @var MockObject
*/
private $connectionMock;
protected function setUp(): void
{
$this->connectionMock = $this->getMockForAbstractClass(AdapterInterface::class);
$this->indexerResourceMock = $this->createMock(Decimal::class);
$this->indexerResourceMock->expects($this->any())->method('getConnection')->willReturn($this->connectionMock);
$this->storeManagementMock = $this->getMockForAbstractClass(StoreManagementInterface::class);
$this->metadataPoolMock = $this->createMock(MetadataPool::class);
$this->model = new DecimalRowSizeEstimator(
$this->storeManagementMock,
$this->indexerResourceMock,
$this->metadataPoolMock
);
}
public function testEstimateRowSize()
{
$entityMetadataMock = $this->getMockForAbstractClass(EntityMetadataInterface::class);
$this->metadataPoolMock->expects($this->any())
->method('getMetadata')
->with(ProductInterface::class)
->willReturn($entityMetadataMock);
$selectMock = $this->createMock(Select::class);
$maxRowsPerStore = 100;
$storeCount = 10;
$this->connectionMock->expects($this->any())->method('select')->willReturn($selectMock);
$this->connectionMock->expects($this->once())->method('fetchOne')->willReturn($maxRowsPerStore);
$this->storeManagementMock->expects($this->any())->method('getCount')->willReturn($storeCount);
$this->assertEquals($maxRowsPerStore * $storeCount * 500, $this->model->estimateRowSize());
}
}
?>
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\ResourceModel\Product\Indexer\Eav;
use Magento\Catalog\Api\Data\ProductInterface;
use Magento\Catalog\Model\ResourceModel\Product\Indexer\Eav\Decimal;
use Magento\Catalog\Model\ResourceModel\Product\Indexer\Eav\DecimalRowSizeEstimator;
use Magento\Framework\DB\Adapter\AdapterInterface;
use Magento\Framework\DB\Select;
use Magento\Framework\EntityManager\EntityMetadataInterface;
use Magento\Framework\EntityManager\MetadataPool;
use Magento\Store\Api\StoreManagementInterface;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;
class DecimalRowSizeEstimatorTest extends TestCase
{
/**
* @var DecimalRowSizeEstimator
*/
private $model;
/**
* @var MockObject
*/
private $indexerResourceMock;
/**
* @var MockObject
*/
private $storeManagementMock;
/**
* @var MockObject
*/
private $metadataPoolMock;
/**
* @var MockObject
*/
private $connectionMock;
protected function setUp(): void
{
$this->connectionMock = $this->getMockForAbstractClass(AdapterInterface::class);
$this->indexerResourceMock = $this->createMock(Decimal::class);
$this->indexerResourceMock->expects($this->any())->method('getConnection')->willReturn($this->connectionMock);
$this->storeManagementMock = $this->getMockForAbstractClass(StoreManagementInterface::class);
$this->metadataPoolMock = $this->createMock(MetadataPool::class);
$this->model = new DecimalRowSizeEstimator(
$this->storeManagementMock,
$this->indexerResourceMock,
$this->metadataPoolMock
);
}
public function testEstimateRowSize()
{
$entityMetadataMock = $this->getMockForAbstractClass(EntityMetadataInterface::class);
$this->metadataPoolMock->expects($this->any())
->method('getMetadata')
->with(ProductInterface::class)
->willReturn($entityMetadataMock);
$selectMock = $this->createMock(Select::class);
$maxRowsPerStore = 100;
$storeCount = 10;
$this->connectionMock->expects($this->any())->method('select')->willReturn($selectMock);
$this->connectionMock->expects($this->once())->method('fetchOne')->willReturn($maxRowsPerStore);
$this->storeManagementMock->expects($this->any())->method('getCount')->willReturn($storeCount);
$this->assertEquals($maxRowsPerStore * $storeCount * 500, $this->model->estimateRowSize());
}
}
Function Calls
| None |
Stats
| MD5 | e577f7572eb4f0703fea0138921ecae6 |
| Eval Count | 0 |
| Decode Time | 114 ms |