123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- <?php
- /**
- * Copyright © 2013-2017 Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Update\Queue;
- class JobComponentUninstallTest extends \PHPUnit_Framework_TestCase
- {
- /**
- * @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Update\Status
- */
- private $status;
- /**
- * @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Composer\MagentoComposerApplication
- */
- private $composerApp;
- public function setUp()
- {
- $this->status = $this->getMock('Magento\Update\Status', [], [], '', false);
- $this->composerApp = $this->getMock('Magento\Composer\MagentoComposerApplication', [], [], '', false);
- }
- public function testExecute()
- {
- $jobComponentUninstall = new \Magento\Update\Queue\JobComponentUninstall(
- 'component:uninstall',
- ['components' => [['name' => 'vendor/package']]],
- $this->composerApp,
- $this->status
- );
- $this->status->expects($this->atLeastOnce())->method('add');
- $this->composerApp->expects($this->at(0))
- ->method('runComposerCommand')
- ->with(['command' => 'remove', 'packages' => ['vendor/package'], '--no-update' => true])
- ->willReturn('Success');
- $this->composerApp->expects($this->at(1))
- ->method('runComposerCommand')
- ->with(['command' => 'update'])
- ->willReturn('Success');
- $jobComponentUninstall->execute();
- }
- /**
- * @expectedException \RuntimeException
- * @expectedExceptionMessage Cannot find component to uninstall
- */
- public function testExecuteNoComponent()
- {
- $jobComponentUninstall = new \Magento\Update\Queue\JobComponentUninstall(
- 'component:uninstall',
- [],
- $this->composerApp,
- $this->status
- );
- $this->composerApp->expects($this->never())->method('runComposerCommand');
- $jobComponentUninstall->execute();
- }
- /**
- * @expectedException \RuntimeException
- * @expectedExceptionMessage Exception
- */
- public function testExecuteException()
- {
- $jobComponentUninstall = new \Magento\Update\Queue\JobComponentUninstall(
- 'component:uninstall',
- ['components' => [['name' => 'vendor/package']]],
- $this->composerApp,
- $this->status
- );
- $this->status->expects($this->atLeastOnce())->method('add');
- $this->composerApp->expects($this->at(0))
- ->method('runComposerCommand')
- ->with(['command' => 'remove', 'packages' => ['vendor/package'], '--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);
- $jobComponentUninstall->execute();
- }
- }
|