123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\AsynchronousOperations\Test\Unit\Ui\Component\Operation;
- use Magento\AsynchronousOperations\Ui\Component\Operation\DataProvider;
- use Magento\Framework\TestFramework\Unit\Helper\ObjectManager;
- class DataProviderTest extends \PHPUnit\Framework\TestCase
- {
- /**
- * @var DataProvider
- */
- private $dataProvider;
- /**
- * @var \PHPUnit_Framework_MockObject_MockObject
- */
- private $bulkCollectionFactoryMock;
- /**
- * @var \PHPUnit_Framework_MockObject_MockObject
- */
- private $bulkCollectionMock;
- /**
- * @var \PHPUnit_Framework_MockObject_MockObject
- */
- private $operationDetailsMock;
- /**
- * @var \PHPUnit_Framework_MockObject_MockObject
- */
- private $requestMock;
- /**
- * @var \PHPUnit_Framework_MockObject_MockObject
- */
- private $bulkMock;
- /**
- * Set up
- *
- * @return void
- */
- protected function setUp()
- {
- $helper = new ObjectManager($this);
- $this->bulkCollectionFactoryMock = $this->createPartialMock(
- \Magento\AsynchronousOperations\Model\ResourceModel\Bulk\CollectionFactory::class,
- ['create']
- );
- $this->bulkCollectionMock = $this->createMock(
- \Magento\AsynchronousOperations\Model\ResourceModel\Bulk\Collection::class
- );
- $this->operationDetailsMock = $this->createMock(\Magento\AsynchronousOperations\Model\Operation\Details::class);
- $this->bulkMock = $this->createMock(\Magento\AsynchronousOperations\Model\BulkSummary::class);
- $this->requestMock = $this->createMock(\Magento\Framework\App\RequestInterface::class);
- $this->bulkCollectionFactoryMock
- ->expects($this->once())
- ->method('create')
- ->willReturn($this->bulkCollectionMock);
- $this->dataProvider = $helper->getObject(
- \Magento\AsynchronousOperations\Ui\Component\Operation\DataProvider::class,
- [
- 'name' => 'test-name',
- 'bulkCollectionFactory' => $this->bulkCollectionFactoryMock,
- 'operationDetails' => $this->operationDetailsMock,
- 'request' => $this->requestMock
- ]
- );
- }
- public function testGetData()
- {
- $testData = [
- 'id' => '1',
- 'uuid' => 'bulk-uuid1',
- 'user_id' => '2',
- 'description' => 'Description'
- ];
- $testOperationData = [
- 'operations_total' => 2,
- 'operations_successful' => 1,
- 'operations_failed' => 2
- ];
- $testSummaryData = [
- 'summary' => '2 items selected for mass update, 1 successfully updated, 2 failed to update'
- ];
- $resultData[$testData['id']] = array_merge($testData, $testOperationData, $testSummaryData);
- $this->bulkCollectionMock
- ->expects($this->once())
- ->method('getItems')
- ->willReturn([$this->bulkMock]);
- $this->bulkMock
- ->expects($this->once())
- ->method('getData')
- ->willReturn($testData);
- $this->operationDetailsMock
- ->expects($this->once())
- ->method('getDetails')
- ->with($testData['uuid'])
- ->willReturn($testOperationData);
- $this->bulkMock
- ->expects($this->once())
- ->method('getBulkId')
- ->willReturn($testData['id']);
- $expectedResult = $this->dataProvider->getData();
- $this->assertEquals($resultData, $expectedResult);
- }
- public function testPrepareMeta()
- {
- $resultData['retriable_operations']['arguments']['data']['disabled'] = true;
- $resultData['failed_operations']['arguments']['data']['disabled'] = true;
- $testData = [
- 'uuid' => 'bulk-uuid1',
- 'failed_retriable' => 0,
- 'failed_not_retriable' => 0
- ];
- $this->requestMock
- ->expects($this->once())
- ->method('getParam')
- ->willReturn($testData['uuid']);
- $this->operationDetailsMock
- ->expects($this->once())
- ->method('getDetails')
- ->with($testData['uuid'])
- ->willReturn($testData);
- $expectedResult = $this->dataProvider->prepareMeta([]);
- $this->assertEquals($resultData, $expectedResult);
- }
- }
|