123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Deploy\Test\Unit\Process;
- use Magento\Deploy\Process\Queue;
- use Magento\Deploy\Package\Package;
- use Magento\Deploy\Service\DeployPackage;
- use Magento\Framework\App\State as AppState;
- use Magento\Framework\Locale\ResolverInterface as LocaleResolver;
- use Magento\Framework\App\ResourceConnection;
- use Psr\Log\LoggerInterface;
- use PHPUnit_Framework_MockObject_MockObject as Mock;
- /**
- * Deployment Queue class unit tests
- *
- * @see Queue
- */
- class QueueTest extends \PHPUnit\Framework\TestCase
- {
- /**
- * @var Queue
- */
- private $queue;
- /**
- * @var AppState|Mock
- */
- private $appState;
- /**
- * @var LocaleResolver|Mock
- */
- private $localeResolver;
- /**
- * @var ResourceConnection|Mock
- */
- private $resourceConnection;
- /**
- * @var LoggerInterface|Mock
- */
- private $logger;
- /**
- * @var DeployPackage|Mock
- */
- private $deployPackageService;
- /**
- * @inheritdoc
- */
- protected function setUp()
- {
- $this->appState = $this->createMock(AppState::class);
- $this->localeResolver = $this->getMockForAbstractClass(
- LocaleResolver::class,
- ['setLocale'],
- '',
- false
- );
- $this->resourceConnection = $this->createMock(ResourceConnection::class);
- $this->logger = $this->getMockForAbstractClass(
- LoggerInterface::class,
- ['notice', 'info'],
- '',
- false
- );
- $this->deployPackageService = $this->createPartialMock(DeployPackage::class, ['deploy']);
- $this->queue = new Queue(
- $this->appState,
- $this->localeResolver,
- $this->resourceConnection,
- $this->logger,
- $this->deployPackageService,
- [],
- 1
- );
- }
- /**
- * @see Queue:add()
- */
- public function testAdd()
- {
- $package = $this->createMock(Package::class);
- $package->expects($this->once())->method('getPath')->willReturn('path');
- $this->assertEquals(true, $this->queue->add($package));
- $packages = $this->queue->getPackages();
- $this->assertEquals(
- $package,
- isset($packages['path']['package']) ? $packages['path']['package'] : null
- );
- }
- /**
- * @see Queue::process()
- */
- public function testProcess()
- {
- $package = $this->createMock(Package::class);
- $package->expects($this->any())->method('getState')->willReturn(0);
- $package->expects($this->exactly(2))->method('getParent')->willReturn(true);
- $package->expects($this->any())->method('getArea')->willReturn('area');
- $package->expects($this->any())->method('getPath')->willReturn('path');
- $package->expects($this->any())->method('getFiles')->willReturn([]);
- $this->appState->expects($this->once())->method('emulateAreaCode');
- $this->queue->add($package, []);
- $this->resourceConnection->expects(self::never())->method('closeConnection');
- $this->assertEquals(0, $this->queue->process());
- }
- }
|