123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Ui\Test\Unit\Component;
- use Magento\Ui\Component\MassAction;
- use Magento\Framework\TestFramework\Unit\Helper\ObjectManager;
- use Magento\Framework\View\Element\UiComponent\ContextInterface;
- /**
- * Class MassActionTest
- */
- class MassActionTest 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->getMockBuilder(\Magento\Framework\View\Element\UiComponent\ContextInterface::class)
- ->getMockForAbstractClass();
- }
- /**
- * Run test getComponentName method
- *
- * @return void
- */
- public function testGetComponentName()
- {
- $this->contextMock->expects($this->never())->method('getProcessor');
- /** @var MassAction $massAction */
- $massAction = $this->objectManager->getObject(
- \Magento\Ui\Component\MassAction::class,
- [
- 'context' => $this->contextMock,
- 'data' => []
- ]
- );
- $this->assertTrue($massAction->getComponentName() === MassAction::NAME);
- }
- /**
- * Run test prepare method
- *
- * @param string $componentName
- * @param array $componentData
- * @return void
- * @dataProvider getPrepareDataProvider
- */
- public function testPrepare($componentName, $componentData)
- {
- $processor = $this->getMockBuilder(\Magento\Framework\View\Element\UiComponent\Processor::class)
- ->disableOriginalConstructor()
- ->getMock();
- $this->contextMock->expects($this->atLeastOnce())->method('getProcessor')->willReturn($processor);
- /** @var \Magento\Ui\Component\Action $action */
- $action = $this->objectManager->getObject(
- \Magento\Ui\Component\MassAction::class,
- [
- 'context' => $this->contextMock,
- 'data' => [
- 'name' => $componentName,
- 'config' => $componentData,
- ]
- ]
- );
- /** @var MassAction $massAction */
- $massAction = $this->objectManager->getObject(
- \Magento\Ui\Component\MassAction::class,
- [
- 'context' => $this->contextMock,
- 'data' => []
- ]
- );
- $massAction->addComponent('action', $action);
- $massAction->prepare();
- $this->assertEquals(['actions' => [$action->getConfiguration()]], $massAction->getConfiguration());
- }
- /**
- * @return array
- */
- public function getPrepareDataProvider()
- {
- return [
- [
- 'test_component1',
- [
- 'type' => 'first_action',
- 'label' => 'First Action',
- 'url' => '/module/controller/firstAction'
- ],
- ],
- [
- 'test_component2',
- [
- 'type' => 'second_action',
- 'label' => 'Second Action',
- 'actions' => [
- [
- 'type' => 'second_sub_action1',
- 'label' => 'Second Sub Action 1',
- 'url' => '/module/controller/secondSubAction1'
- ],
- [
- 'type' => 'second_sub_action2',
- 'label' => 'Second Sub Action 2',
- 'url' => '/module/controller/secondSubAction2'
- ],
- ]
- ],
- ],
- ];
- }
- }
|