123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- <?php
- /**
- * Copyright © 2013-2017 Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Update\Queue;
- class JobUpdateTest extends \PHPUnit_Framework_TestCase
- {
- /**
- * @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Update\Status
- */
- private $status;
- /**
- * @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Composer\MagentoComposerApplication
- */
- private $composerApp;
- /**
- * @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Update\Queue
- */
- private $queue;
- public function setUp()
- {
- $this->status = $this->getMock('Magento\Update\Status', [], [], '', false);
- $this->composerApp = $this->getMock('Magento\Composer\MagentoComposerApplication', [], [], '', false);
- $this->queue = $this->getMock('Magento\Update\Queue', [], [], '', false);
- }
- public function testExecute()
- {
- $jobUpdate = new \Magento\Update\Queue\JobUpdate(
- 'setup:upgrade',
- ['components' => [['name' => 'vendor/package', 'version' => '1.0']]],
- $this->queue,
- $this->composerApp,
- $this->status
- );
- $this->status->expects($this->atLeastOnce())->method('add');
- $this->composerApp->expects($this->at(0))
- ->method('runComposerCommand')
- ->with(['command' => 'require', 'packages' => ['vendor/package 1.0'], '--no-update' => true])
- ->willReturn('Success');
- $this->composerApp->expects($this->at(1))
- ->method('runComposerCommand')
- ->with(['command' => 'update'])
- ->willReturn('Success');
- $this->queue->expects($this->once())->method('addJobs')->with([['name' => 'setup:upgrade', 'params' => []]]);
- $jobUpdate->execute();
- }
- /**
- * @expectedException \RuntimeException
- * @expectedExceptionMessage Cannot find component to update
- */
- public function testExecuteNoRequire()
- {
- $jobUpdate = new \Magento\Update\Queue\JobUpdate(
- 'setup:upgrade',
- [],
- $this->queue,
- $this->composerApp,
- $this->status
- );
- $this->composerApp->expects($this->never())->method('runComposerCommand');
- $this->queue->expects($this->never())->method('addJobs');
- $jobUpdate->execute();
- }
- /**
- * @expectedException \RuntimeException
- * @expectedExceptionMessage Exception
- */
- public function testExecuteException()
- {
- $jobUpdate = new \Magento\Update\Queue\JobUpdate(
- 'setup:upgrade',
- ['components' => [['name' => 'vendor/package', 'version' => '1.0']]],
- $this->queue,
- $this->composerApp,
- $this->status
- );
- $this->status->expects($this->atLeastOnce())->method('add');
- $this->composerApp->expects($this->at(0))
- ->method('runComposerCommand')
- ->with(['command' => 'require', 'packages' => ['vendor/package 1.0'], '--no-update' => true])
- ->willReturn('Success');
- $this->composerApp->expects($this->at(1))
- ->method('runComposerCommand')
- ->with(['command' => 'update'])
- ->will($this->throwException(new \Exception('Exception')));
- $this->status->expects($this->once())->method('setUpdateError')->with(true);
- $jobUpdate->execute();
- }
- }
|