123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190 |
- <?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 Tests\Settings\Controller;
- use OC\Settings\Controller\CertificateController;
- use OCP\App\IAppManager;
- use OCP\AppFramework\Http;
- use OCP\AppFramework\Http\DataResponse;
- use OCP\IRequest;
- use OCP\IL10N;
- use OCP\ICertificateManager;
- /**
- * Class CertificateControllerTest
- *
- * @package Tests\Settings\Controller
- */
- class CertificateControllerTest extends \Test\TestCase {
- /** @var CertificateController */
- private $certificateController;
- /** @var IRequest */
- private $request;
- /** @var ICertificateManager */
- private $certificateManager;
- /** @var IL10N */
- private $l10n;
- /** @var IAppManager */
- private $appManager;
- /** @var ICertificateManager */
- private $systemCertificateManager;
- public function setUp() {
- parent::setUp();
- $this->request = $this->getMockBuilder('\OCP\IRequest')->getMock();
- $this->certificateManager = $this->getMockBuilder('\OCP\ICertificateManager')->getMock();
- $this->systemCertificateManager = $this->getMockBuilder('\OCP\ICertificateManager')->getMock();
- $this->l10n = $this->getMockBuilder('\OCP\IL10N')->getMock();
- $this->appManager = $this->getMockBuilder('OCP\App\IAppManager')->getMock();
- $this->certificateController = $this->getMockBuilder('OC\Settings\Controller\CertificateController')
- ->setConstructorArgs(
- [
- 'settings',
- $this->request,
- $this->certificateManager,
- $this->systemCertificateManager,
- $this->l10n,
- $this->appManager
- ]
- )->setMethods(['isCertificateImportAllowed'])->getMock();
- $this->certificateController->expects($this->any())
- ->method('isCertificateImportAllowed')->willReturn(true);
- }
- public function testAddPersonalRootCertificateWithEmptyFile() {
- $this->request
- ->expects($this->once())
- ->method('getUploadedFile')
- ->with('rootcert_import')
- ->will($this->returnValue(null));
- $expected = new DataResponse(['message' => 'No file uploaded'], Http::STATUS_UNPROCESSABLE_ENTITY);
- $this->assertEquals($expected, $this->certificateController->addPersonalRootCertificate());
- }
- public function testAddPersonalRootCertificateValidCertificate() {
- $uploadedFile = [
- 'tmp_name' => __DIR__ . '/../../data/certificates/goodCertificate.crt',
- 'name' => 'goodCertificate.crt',
- ];
- $certificate = $this->getMockBuilder('\OCP\ICertificate')->getMock();
- $certificate
- ->expects($this->once())
- ->method('getName')
- ->will($this->returnValue('Name'));
- $certificate
- ->expects($this->once())
- ->method('getCommonName')
- ->will($this->returnValue('CommonName'));
- $certificate
- ->expects($this->once())
- ->method('getOrganization')
- ->will($this->returnValue('Organization'));
- $certificate
- ->expects($this->exactly(2))
- ->method('getIssueDate')
- ->will($this->returnValue(new \DateTime('@1429099555')));
- $certificate
- ->expects($this->exactly(2))
- ->method('getExpireDate')
- ->will($this->returnValue(new \DateTime('@1529099555')));
- $certificate
- ->expects($this->once())
- ->method('getIssuerName')
- ->will($this->returnValue('Issuer'));
- $certificate
- ->expects($this->once())
- ->method('getIssuerOrganization')
- ->will($this->returnValue('IssuerOrganization'));
- $this->request
- ->expects($this->once())
- ->method('getUploadedFile')
- ->with('rootcert_import')
- ->will($this->returnValue($uploadedFile));
- $this->certificateManager
- ->expects($this->once())
- ->method('addCertificate')
- ->with(file_get_contents($uploadedFile['tmp_name'], 'goodCertificate.crt'))
- ->will($this->returnValue($certificate));
- $this->l10n
- ->expects($this->at(0))
- ->method('l')
- ->with('date', new \DateTime('@1429099555'))
- ->will($this->returnValue('Valid From as String'));
- $this->l10n
- ->expects($this->at(1))
- ->method('l')
- ->with('date', new \DateTime('@1529099555'))
- ->will($this->returnValue('Valid Till as String'));
- $expected = new DataResponse([
- 'name' => 'Name',
- 'commonName' => 'CommonName',
- 'organization' => 'Organization',
- 'validFrom' => 1429099555,
- 'validTill' => 1529099555,
- 'validFromString' => 'Valid From as String',
- 'validTillString' => 'Valid Till as String',
- 'issuer' => 'Issuer',
- 'issuerOrganization' => 'IssuerOrganization',
- ]);
- $this->assertEquals($expected, $this->certificateController->addPersonalRootCertificate());
- }
- public function testAddPersonalRootCertificateInvalidCertificate() {
- $uploadedFile = [
- 'tmp_name' => __DIR__ . '/../../data/certificates/badCertificate.crt',
- 'name' => 'badCertificate.crt',
- ];
- $this->request
- ->expects($this->once())
- ->method('getUploadedFile')
- ->with('rootcert_import')
- ->will($this->returnValue($uploadedFile));
- $this->certificateManager
- ->expects($this->once())
- ->method('addCertificate')
- ->with(file_get_contents($uploadedFile['tmp_name'], 'badCertificate.crt'))
- ->will($this->throwException(new \Exception()));
- $expected = new DataResponse('An error occurred.', Http::STATUS_UNPROCESSABLE_ENTITY);
- $this->assertEquals($expected, $this->certificateController->addPersonalRootCertificate());
- }
- public function testRemoveCertificate() {
- $this->certificateManager
- ->expects($this->once())
- ->method('removeCertificate')
- ->with('CertificateToRemove');
- $this->assertEquals(new DataResponse(), $this->certificateController->removePersonalRootCertificate('CertificateToRemove'));
- }
- }
|