1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\CurrencySymbol\Test\Unit\Block\Adminhtml\System;
- class CurrencyTest extends \PHPUnit\Framework\TestCase
- {
- /**
- * Object manager helper
- *
- * @var \Magento\Framework\TestFramework\Unit\Helper\ObjectManager
- */
- protected $objectManagerHelper;
- protected function setUp()
- {
- $this->objectManagerHelper = new \Magento\Framework\TestFramework\Unit\Helper\ObjectManager($this);
- }
- protected function tearDown()
- {
- unset($this->objectManagerHelper);
- }
- public function testPrepareLayout()
- {
- $childBlockMock = $this->createPartialMock(
- \Magento\Framework\View\Element\BlockInterface::class,
- ['addChild', 'toHtml']
- );
- $blockMock = $this->createMock(\Magento\Framework\View\Element\BlockInterface::class);
- /** @var $layoutMock \Magento\Framework\View\LayoutInterface|\PHPUnit_Framework_MockObject_MockObject */
- $layoutMock = $this->getMockForAbstractClass(
- \Magento\Framework\View\LayoutInterface::class,
- [],
- '',
- false,
- false,
- true,
- ['getBlock', 'createBlock']
- );
- $layoutMock->expects($this->any())->method('getBlock')->willReturn($childBlockMock);
- $layoutMock->expects($this->any())->method('createBlock')->willReturn($blockMock);
- $childBlockMock->expects($this->at(0))
- ->method('addChild')
- ->with(
- 'save_button',
- \Magento\Backend\Block\Widget\Button::class,
- [
- 'label' => __('Save Currency Rates'),
- 'class' => 'save primary save-currency-rates',
- 'data_attribute' => [
- 'mage-init' => ['button' => ['event' => 'save', 'target' => '#rate-form']],
- ]
- ]
- );
- $childBlockMock->expects($this->at(1))
- ->method('addChild')
- ->with(
- 'options_button',
- \Magento\Backend\Block\Widget\Button::class,
- ['label' => __('Options'), 'onclick' => 'setLocation(\'\')']
- );
- $childBlockMock->expects($this->at(2))
- ->method('addChild')
- ->with(
- 'reset_button',
- \Magento\Backend\Block\Widget\Button::class,
- ['label' => __('Reset'), 'onclick' => 'document.location.reload()', 'class' => 'reset']
- );
- /** @var $block \Magento\CurrencySymbol\Block\Adminhtml\System\Currency */
- $block = $this->objectManagerHelper->getObject(
- \Magento\CurrencySymbol\Block\Adminhtml\System\Currency::class,
- [
- 'layout' => $layoutMock
- ]
- );
- $block->setLayout($layoutMock);
- }
- }
|