123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Ui\Test\Unit\Component;
- use Magento\Ui\Component\Listing;
- use Magento\Ui\Component\Listing\Columns;
- use Magento\Framework\TestFramework\Unit\Helper\ObjectManager;
- use Magento\Framework\View\Element\UiComponent\ContextInterface;
- /**
- * Class ListingTest
- */
- class ListingTest extends \PHPUnit\Framework\TestCase
- {
- /**
- * @var ContextInterface|\PHPUnit_Framework_MockObject_MockObject
- */
- protected $contextMock;
- /**
- * @var ObjectManager
- */
- protected $objectManager;
- /**
- * Set up
- */
- protected function setUp()
- {
- $this->objectManager = new ObjectManager($this);
- $this->contextMock = $this->getMockForAbstractClass(
- \Magento\Framework\View\Element\UiComponent\ContextInterface::class,
- [],
- '',
- false
- );
- }
- /**
- * Run test getComponentName method
- *
- * @return void
- */
- public function testGetComponentName()
- {
- $this->contextMock->expects($this->never())->method('getProcessor');
- /** @var Listing $listing */
- $listing = $this->objectManager->getObject(
- \Magento\Ui\Component\Listing::class,
- [
- 'context' => $this->contextMock,
- 'data' => []
- ]
- );
- $this->assertTrue($listing->getComponentName() === Listing::NAME);
- }
- /**
- * Run test prepare method
- *
- * @return void
- */
- public function testPrepare()
- {
- $processor = $this->getMockBuilder(\Magento\Framework\View\Element\UiComponent\Processor::class)
- ->disableOriginalConstructor()
- ->getMock();
- $this->contextMock->expects($this->atLeastOnce())->method('getProcessor')->willReturn($processor);
- $buttons = [
- 'button1' => 'button1',
- 'button2' => 'button2'
- ];
- /** @var Listing $listing */
- $listing = $this->objectManager->getObject(
- \Magento\Ui\Component\Listing::class,
- [
- 'context' => $this->contextMock,
- 'data' => [
- 'js_config' => [
- 'extends' => 'test_config_extends',
- 'testData' => 'testValue',
- ],
- 'buttons' => $buttons
- ]
- ]
- );
- $this->contextMock->expects($this->at(0))
- ->method('getNamespace')
- ->willReturn(Listing::NAME);
- $this->contextMock->expects($this->once())
- ->method('addComponentDefinition')
- ->with($listing->getComponentName(), ['extends' => 'test_config_extends', 'testData' => 'testValue']);
- $this->contextMock->expects($this->once())
- ->method('addButtons')
- ->with($buttons, $listing);
- $listing->prepare();
- }
- }
|