Spamworldpro Mini Shell
Spamworldpro


Server : Apache
System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64
User : corals ( 1002)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
Directory :  /home/corals/old/vendor/magento/module-catalog/Test/Unit/Model/ResourceModel/Product/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //home/corals/old/vendor/magento/module-catalog/Test/Unit/Model/ResourceModel/Product/LinkTest.php
<?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;

use Magento\Catalog\Model\ResourceModel\Product\Link;
use Magento\Framework\App\ResourceConnection;
use Magento\Framework\DB\Adapter\AdapterInterface;
use Magento\Framework\DB\Select;
use Magento\Framework\TestFramework\Unit\Helper\ObjectManager;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;

class LinkTest extends TestCase
{
    /**
     * @var Link
     */
    protected $model;

    /**
     * @var MockObject
     */
    protected $resource;

    /**
     * @var MockObject
     */
    protected $connection;

    /**
     * @var MockObject
     */
    protected $dbSelect;

    /**
     * @inheritDoc
     */
    protected function setUp(): void
    {
        $objectManager = new ObjectManager($this);
        $this->resource = $this->createMock(ResourceConnection::class);
        $this->connection =
            $this->getMockForAbstractClass(AdapterInterface::class);

        $this->model = $objectManager->getObject(
            Link::class,
            ['resource' => $this->resource]
        );
    }

    /**
     * @return void
     */
    protected function prepareAdapter(): void
    {
        $this->dbSelect = $this->createMock(Select::class);

        // method flow
        $this->resource
            ->method('getConnection')
            ->willReturn($this->connection);

        $this->connection->expects($this->once())->method('select')->willReturn($this->dbSelect);
    }

    /**
     * @return void
     */
    public function testGetAttributesByType(): void
    {
        $typeId = 4;
        $result = [100, 200, 300, 400];

        $this->prepareAdapter();
        $this->dbSelect->expects($this->once())->method('from')->willReturn($this->dbSelect);
        $this->dbSelect->expects(
            $this->atLeastOnce()
        )->method(
            'where'
        )->with(
            'link_type_id = ?',
            $typeId
        )->willReturn(
            $this->dbSelect
        );
        $this->connection->expects($this->once())->method('fetchAll')->willReturn($result);
        $this->assertEquals($result, $this->model->getAttributesByType($typeId));
    }

    /**
     * @return void
     */
    public function testGetAttributeTypeTable(): void
    {
        $inputTable = 'megatable';
        $resultTable = 'advancedTable';

        $this->resource->expects(
            $this->once()
        )->method(
            'getTableName'
        )->with(
            'catalog_product_link_attribute_' . $inputTable
        )->willReturn(
            $resultTable
        );
        $this->assertEquals($resultTable, $this->model->getAttributeTypeTable($inputTable));
    }

    /**
     * @return void
     */
    public function testGetChildrenIds(): void
    {
        //prepare mocks and data
        $parentId = 100;
        $typeId = 4;
        $bind = [':product_id' => $parentId, ':link_type_id' => $typeId];

        $fetchedData = [['linked_product_id' => 100], ['linked_product_id' => 500]];

        $result = [$typeId => [100 => 100, 500 => 500]];

        // method flow
        $this->prepareAdapter();
        $this->dbSelect->expects($this->once())->method('from')->willReturn($this->dbSelect);
        $this->dbSelect->expects($this->atLeastOnce())->method('where')->willReturn($this->dbSelect);
        $this->connection->expects(
            $this->once()
        )->method(
            'fetchAll'
        )->with(
            $this->dbSelect,
            $bind
        )->willReturn(
            $fetchedData
        );

        $this->assertEquals($result, $this->model->getChildrenIds($parentId, $typeId));
    }

    /**
     * @return void
     */
    public function testGetParentIdsByChild(): void
    {
        $childId = 234;
        $typeId = 4;
        $fetchedData = [['product_id' => 55], ['product_id' => 66]];
        $result = [55, 66];

        // method flow
        $this->prepareAdapter();
        $this->dbSelect->expects($this->once())->method('from')->willReturn($this->dbSelect);
        $this->dbSelect->expects($this->any())->method('where')->willReturn($this->dbSelect);

        $this->connection->expects(
            $this->once()
        )->method(
            'fetchAll'
        )->with(
            $this->dbSelect
        )->willReturn(
            $fetchedData
        );

        $this->assertEquals($result, $this->model->getParentIdsByChild($childId, $typeId));
    }
}

Spamworldpro Mini