2015-04-15 15:21:23 +03:00
|
|
|
<?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/>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2016-05-19 12:17:01 +03:00
|
|
|
namespace Tests\Settings\Controller;
|
2015-04-15 15:21:23 +03:00
|
|
|
|
2016-05-19 12:17:01 +03:00
|
|
|
use OC\Settings\Controller\CertificateController;
|
2015-08-04 19:33:19 +03:00
|
|
|
use OCP\App\IAppManager;
|
2015-04-15 15:21:23 +03:00
|
|
|
use OCP\AppFramework\Http;
|
|
|
|
use OCP\AppFramework\Http\DataResponse;
|
|
|
|
use OCP\IRequest;
|
|
|
|
use OCP\IL10N;
|
|
|
|
use OCP\ICertificateManager;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class CertificateControllerTest
|
|
|
|
*
|
2016-05-19 12:17:01 +03:00
|
|
|
* @package Tests\Settings\Controller
|
2015-04-15 15:21:23 +03:00
|
|
|
*/
|
|
|
|
class CertificateControllerTest extends \Test\TestCase {
|
|
|
|
/** @var CertificateController */
|
|
|
|
private $certificateController;
|
|
|
|
/** @var IRequest */
|
|
|
|
private $request;
|
|
|
|
/** @var ICertificateManager */
|
|
|
|
private $certificateManager;
|
|
|
|
/** @var IL10N */
|
|
|
|
private $l10n;
|
2015-08-04 19:33:19 +03:00
|
|
|
/** @var IAppManager */
|
|
|
|
private $appManager;
|
2015-12-22 19:42:28 +03:00
|
|
|
/** @var ICertificateManager */
|
|
|
|
private $systemCertificateManager;
|
2015-04-15 15:21:23 +03:00
|
|
|
|
|
|
|
public function setUp() {
|
|
|
|
parent::setUp();
|
|
|
|
|
2016-08-16 21:51:43 +03:00
|
|
|
$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();
|
2015-04-15 15:21:23 +03:00
|
|
|
|
2015-08-04 19:33:19 +03:00
|
|
|
$this->certificateController = $this->getMockBuilder('OC\Settings\Controller\CertificateController')
|
|
|
|
->setConstructorArgs(
|
|
|
|
[
|
|
|
|
'settings',
|
|
|
|
$this->request,
|
|
|
|
$this->certificateManager,
|
2015-12-22 19:42:28 +03:00
|
|
|
$this->systemCertificateManager,
|
2015-08-04 19:33:19 +03:00
|
|
|
$this->l10n,
|
|
|
|
$this->appManager
|
|
|
|
]
|
|
|
|
)->setMethods(['isCertificateImportAllowed'])->getMock();
|
|
|
|
|
|
|
|
$this->certificateController->expects($this->any())
|
|
|
|
->method('isCertificateImportAllowed')->willReturn(true);
|
2015-04-15 15:21:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
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',
|
|
|
|
];
|
|
|
|
|
2016-08-16 21:51:43 +03:00
|
|
|
$certificate = $this->getMockBuilder('\OCP\ICertificate')->getMock();
|
2015-04-15 15:21:23 +03:00
|
|
|
$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());
|
|
|
|
}
|
|
|
|
|
2015-04-16 11:48:25 +03:00
|
|
|
public function testAddPersonalRootCertificateInvalidCertificate() {
|
2015-04-15 15:21:23 +03:00
|
|
|
$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')
|
2015-04-16 11:48:25 +03:00
|
|
|
->with(file_get_contents($uploadedFile['tmp_name'], 'badCertificate.crt'))
|
2015-04-15 15:21:23 +03:00
|
|
|
->will($this->throwException(new \Exception()));
|
|
|
|
|
2015-04-16 11:48:25 +03:00
|
|
|
$expected = new DataResponse('An error occurred.', Http::STATUS_UNPROCESSABLE_ENTITY);
|
2015-04-15 15:21:23 +03:00
|
|
|
$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'));
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|