123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294 |
- <?php
- /**
- * @author Lukas Reschke <lukas@owncloud.com>
- *
- * @copyright Copyright (c) 2015, ownCloud, Inc.
- * @license AGPL-3.0
- *
- * This code is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License, version 3,
- * as published by the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License, version 3,
- * along with this program. If not, see <http://www.gnu.org/licenses/>
- *
- */
- namespace Test\Command\Integrity;
- use OC\Core\Command\Integrity\SignApp;
- use OC\IntegrityCheck\Checker;
- use OC\IntegrityCheck\Helpers\FileAccessHelper;
- use OCP\IURLGenerator;
- use Symfony\Component\Console\Input\InputInterface;
- use Symfony\Component\Console\Output\OutputInterface;
- use Test\TestCase;
- class SignAppTest extends TestCase {
- /** @var Checker|\PHPUnit\Framework\MockObject\MockObject */
- private $checker;
- /** @var SignApp */
- private $signApp;
- /** @var FileAccessHelper|\PHPUnit\Framework\MockObject\MockObject */
- private $fileAccessHelper;
- /** @var IURLGenerator|\PHPUnit\Framework\MockObject\MockObject */
- private $urlGenerator;
- protected function setUp(): void {
- parent::setUp();
- $this->checker = $this->createMock(Checker::class);
- $this->fileAccessHelper = $this->createMock(FileAccessHelper::class);
- $this->urlGenerator = $this->createMock(IURLGenerator::class);
- $this->signApp = new SignApp(
- $this->checker,
- $this->fileAccessHelper,
- $this->urlGenerator
- );
- }
- public function testExecuteWithMissingPath() {
- $inputInterface = $this->createMock(InputInterface::class);
- $outputInterface = $this->createMock(OutputInterface::class);
- $inputInterface
- ->expects($this->exactly(3))
- ->method('getOption')
- ->withConsecutive(
- ['path'],
- ['privateKey'],
- ['certificate'],
- )->willReturnOnConsecutiveCalls(
- null,
- 'PrivateKey',
- 'Certificate',
- );
- $outputInterface
- ->expects($this->any())
- ->method('writeln')
- ->withConsecutive(
- ['This command requires the --path, --privateKey and --certificate.']
- );
- $this->assertSame(1, self::invokePrivate($this->signApp, 'execute', [$inputInterface, $outputInterface]));
- }
- public function testExecuteWithMissingPrivateKey() {
- $inputInterface = $this->createMock(InputInterface::class);
- $outputInterface = $this->createMock(OutputInterface::class);
- $inputInterface
- ->expects($this->exactly(3))
- ->method('getOption')
- ->withConsecutive(
- ['path'],
- ['privateKey'],
- ['certificate'],
- )->willReturnOnConsecutiveCalls(
- 'AppId',
- null,
- 'Certificate',
- );
- $outputInterface
- ->expects($this->any())
- ->method('writeln')
- ->withConsecutive(
- ['This command requires the --path, --privateKey and --certificate.']
- );
- $this->assertSame(1, self::invokePrivate($this->signApp, 'execute', [$inputInterface, $outputInterface]));
- }
- public function testExecuteWithMissingCertificate() {
- $inputInterface = $this->createMock(InputInterface::class);
- $outputInterface = $this->createMock(OutputInterface::class);
- $inputInterface
- ->expects($this->exactly(3))
- ->method('getOption')
- ->withConsecutive(
- ['path'],
- ['privateKey'],
- ['certificate'],
- )->willReturnOnConsecutiveCalls(
- 'AppId',
- 'privateKey',
- null,
- );
- $outputInterface
- ->expects($this->any())
- ->method('writeln')
- ->withConsecutive(
- ['This command requires the --path, --privateKey and --certificate.']
- );
- $this->assertSame(1, self::invokePrivate($this->signApp, 'execute', [$inputInterface, $outputInterface]));
- }
- public function testExecuteWithNotExistingPrivateKey() {
- $inputInterface = $this->createMock(InputInterface::class);
- $outputInterface = $this->createMock(OutputInterface::class);
- $inputInterface
- ->expects($this->exactly(3))
- ->method('getOption')
- ->withConsecutive(
- ['path'],
- ['privateKey'],
- ['certificate'],
- )->willReturnOnConsecutiveCalls(
- 'AppId',
- 'privateKey',
- 'certificate',
- );
- $this->fileAccessHelper
- ->expects($this->any())
- ->method('file_get_contents')
- ->withConsecutive(['privateKey'])
- ->willReturnOnConsecutiveCalls(false);
- $outputInterface
- ->expects($this->any())
- ->method('writeln')
- ->withConsecutive(
- ['Private key "privateKey" does not exists.']
- );
- $this->assertSame(1, self::invokePrivate($this->signApp, 'execute', [$inputInterface, $outputInterface]));
- }
- public function testExecuteWithNotExistingCertificate() {
- $inputInterface = $this->createMock(InputInterface::class);
- $outputInterface = $this->createMock(OutputInterface::class);
- $inputInterface
- ->expects($this->exactly(3))
- ->method('getOption')
- ->withConsecutive(
- ['path'],
- ['privateKey'],
- ['certificate'],
- )->willReturnOnConsecutiveCalls(
- 'AppId',
- 'privateKey',
- 'certificate',
- );
- $this->fileAccessHelper
- ->expects($this->any())
- ->method('file_get_contents')
- ->withConsecutive(
- ['privateKey'],
- ['certificate'],
- )
- ->willReturnOnConsecutiveCalls(
- \OC::$SERVERROOT . '/tests/data/integritycheck/core.key',
- false
- );
- $outputInterface
- ->expects($this->any())
- ->method('writeln')
- ->withConsecutive(
- ['Certificate "certificate" does not exists.']
- );
- $this->assertSame(1, self::invokePrivate($this->signApp, 'execute', [$inputInterface, $outputInterface]));
- }
- public function testExecuteWithException() {
- $inputInterface = $this->createMock(InputInterface::class);
- $outputInterface = $this->createMock(OutputInterface::class);
- $inputInterface
- ->expects($this->exactly(3))
- ->method('getOption')
- ->withConsecutive(
- ['path'],
- ['privateKey'],
- ['certificate'],
- )->willReturnOnConsecutiveCalls(
- 'AppId',
- 'privateKey',
- 'certificate',
- );
- $this->fileAccessHelper
- ->expects($this->any())
- ->method('file_get_contents')
- ->withConsecutive(
- ['privateKey'],
- ['certificate'],
- )
- ->willReturnOnConsecutiveCalls(
- file_get_contents(\OC::$SERVERROOT . '/tests/data/integritycheck/core.key'),
- file_get_contents(\OC::$SERVERROOT . '/tests/data/integritycheck/core.crt'),
- );
- $this->checker
- ->expects($this->once())
- ->method('writeAppSignature')
- ->willThrowException(new \Exception('My error message'));
- $outputInterface
- ->expects($this->any())
- ->method('writeln')
- ->withConsecutive(
- ['Error: My error message']
- );
- $this->assertSame(1, self::invokePrivate($this->signApp, 'execute', [$inputInterface, $outputInterface]));
- }
- public function testExecute() {
- $inputInterface = $this->createMock(InputInterface::class);
- $outputInterface = $this->createMock(OutputInterface::class);
- $inputInterface
- ->expects($this->exactly(3))
- ->method('getOption')
- ->withConsecutive(
- ['path'],
- ['privateKey'],
- ['certificate'],
- )->willReturnOnConsecutiveCalls(
- 'AppId',
- 'privateKey',
- 'certificate',
- );
- $this->fileAccessHelper
- ->expects($this->any())
- ->method('file_get_contents')
- ->withConsecutive(
- ['privateKey'],
- ['certificate'],
- )
- ->willReturnOnConsecutiveCalls(
- file_get_contents(\OC::$SERVERROOT . '/tests/data/integritycheck/core.key'),
- file_get_contents(\OC::$SERVERROOT . '/tests/data/integritycheck/core.crt'),
- );
- $this->checker
- ->expects($this->once())
- ->method('writeAppSignature');
- $outputInterface
- ->expects($this->any())
- ->method('writeln')
- ->withConsecutive(
- ['Successfully signed "AppId"']
- );
- $this->assertSame(0, self::invokePrivate($this->signApp, 'execute', [$inputInterface, $outputInterface]));
- }
- }
|