![]() 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-checkout/Test/Unit/Block/Cart/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Magento\Checkout\Test\Unit\Block\Cart; use Magento\Checkout\Block\Cart\CartTotalsProcessor; use Magento\Framework\App\Config\ScopeConfigInterface; use PHPUnit\Framework\MockObject\MockObject; use PHPUnit\Framework\TestCase; class CartTotalsProcessorTest extends TestCase { /** * @var CartTotalsProcessor */ protected $model; /** * @var ScopeConfigInterface|MockObject */ protected $scopeConfig; protected function setUp(): void { $this->scopeConfig = $this->getMockForAbstractClass(ScopeConfigInterface::class); $this->model = new CartTotalsProcessor($this->scopeConfig); } public function testProcess() { $configData = [ 'total_1' => 'sort_1', 'total_2' => 'sort_2', 'total_3' => 'sort_3' ]; $jsLayout = [ 'components' => [ 'block-totals' => [ 'children' => [ 'total_1' => ['value' => 'value_1', 'sortOrder' => 0], 'total_2' => ['value' => 'value_1', 'sortOrder' => 1], 'total_3' => ['value' => 'value_1', 'sortOrder' => 2] ] ] ] ]; $expected = [ 'components' => [ 'block-totals' => [ 'children' => [ 'total_1' => ['value' => 'value_1', 'sortOrder' => 'sort_1'], 'total_2' => ['value' => 'value_1', 'sortOrder' => 'sort_2'], 'total_3' => ['value' => 'value_1', 'sortOrder' => 'sort_3'] ] ] ] ]; $this->scopeConfig->expects($this->once()) ->method('getValue') ->with('sales/totals_sort') ->willReturn($configData); $this->assertEquals($expected, $this->model->process($jsLayout)); } }