2016-08-15 17:24:56 +03:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @copyright Copyright (c) 2016 Lukas Reschke <lukas@statuscode.ch>
|
|
|
|
*
|
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Test\Settings\Admin;
|
|
|
|
|
2019-01-10 18:04:13 +03:00
|
|
|
use OC\Authentication\TwoFactorAuth\MandatoryTwoFactor;
|
2016-08-15 17:24:56 +03:00
|
|
|
use OC\Encryption\Manager;
|
2018-10-08 11:22:27 +03:00
|
|
|
use OC\Settings\Admin\Security;
|
2016-08-15 17:24:56 +03:00
|
|
|
use OCP\AppFramework\Http\TemplateResponse;
|
2019-01-10 18:04:13 +03:00
|
|
|
use OCP\IInitialStateService;
|
2016-08-15 17:24:56 +03:00
|
|
|
use OCP\IUserManager;
|
2019-01-10 18:04:13 +03:00
|
|
|
use PHPUnit\Framework\MockObject\MockObject;
|
2016-08-15 17:24:56 +03:00
|
|
|
use Test\TestCase;
|
|
|
|
|
2018-10-08 11:22:27 +03:00
|
|
|
class SecurityTest extends TestCase {
|
|
|
|
/** @var Security */
|
2016-08-15 17:24:56 +03:00
|
|
|
private $admin;
|
|
|
|
/** @var Manager */
|
|
|
|
private $manager;
|
|
|
|
/** @var IUserManager */
|
|
|
|
private $userManager;
|
2019-01-10 18:04:13 +03:00
|
|
|
/** @var MandatoryTwoFactor|MockObject */
|
|
|
|
private $mandatoryTwoFactor;
|
|
|
|
/** @var IInitialStateService|MockObject */
|
|
|
|
private $initialState;
|
2016-08-15 17:24:56 +03:00
|
|
|
|
|
|
|
public function setUp() {
|
|
|
|
parent::setUp();
|
2016-08-15 17:43:22 +03:00
|
|
|
$this->manager = $this->getMockBuilder('\OC\Encryption\Manager')->disableOriginalConstructor()->getMock();
|
2017-10-24 16:26:53 +03:00
|
|
|
$this->userManager = $this->getMockBuilder(IUserManager::class)->getMock();
|
2019-01-10 18:04:13 +03:00
|
|
|
$this->mandatoryTwoFactor = $this->createMock(MandatoryTwoFactor::class);
|
|
|
|
$this->initialState = $this->createMock(IInitialStateService::class);
|
2016-08-15 17:24:56 +03:00
|
|
|
|
2018-10-08 11:22:27 +03:00
|
|
|
$this->admin = new Security(
|
2016-08-15 17:24:56 +03:00
|
|
|
$this->manager,
|
2019-01-10 18:04:13 +03:00
|
|
|
$this->userManager,
|
|
|
|
$this->mandatoryTwoFactor,
|
|
|
|
$this->initialState
|
2016-08-15 17:24:56 +03:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function encryptionSettingsProvider() {
|
|
|
|
return [
|
|
|
|
[true],
|
|
|
|
[false],
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider encryptionSettingsProvider
|
|
|
|
* @param bool $enabled
|
|
|
|
*/
|
|
|
|
public function testGetFormWithOnlyOneBackend($enabled) {
|
|
|
|
$this->manager
|
|
|
|
->expects($this->once())
|
|
|
|
->method('isEnabled')
|
|
|
|
->willReturn($enabled);
|
|
|
|
$this->manager
|
|
|
|
->expects($this->once())
|
|
|
|
->method('isReady')
|
|
|
|
->willReturn($enabled);
|
2016-08-16 19:59:45 +03:00
|
|
|
$this->manager
|
|
|
|
->expects($this->once())
|
|
|
|
->method('getEncryptionModules')
|
|
|
|
->willReturn([]);
|
2016-08-15 17:24:56 +03:00
|
|
|
$this->userManager
|
|
|
|
->expects($this->once())
|
|
|
|
->method('getBackends')
|
|
|
|
->willReturn(['entry']);
|
|
|
|
$expected = new TemplateResponse(
|
|
|
|
'settings',
|
2018-10-08 12:27:22 +03:00
|
|
|
'settings/admin/security',
|
2016-08-15 17:24:56 +03:00
|
|
|
[
|
|
|
|
'encryptionEnabled' => $enabled,
|
|
|
|
'encryptionReady' => $enabled,
|
|
|
|
'externalBackendsEnabled' => false,
|
2016-08-16 19:59:45 +03:00
|
|
|
'encryptionModules' => []
|
2016-08-15 17:24:56 +03:00
|
|
|
],
|
|
|
|
''
|
|
|
|
);
|
|
|
|
$this->assertEquals($expected, $this->admin->getForm());
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider encryptionSettingsProvider
|
|
|
|
* @param bool $enabled
|
|
|
|
*/
|
|
|
|
public function testGetFormWithMultipleBackends($enabled) {
|
|
|
|
$this->manager
|
|
|
|
->expects($this->once())
|
|
|
|
->method('isEnabled')
|
|
|
|
->willReturn($enabled);
|
|
|
|
$this->manager
|
|
|
|
->expects($this->once())
|
|
|
|
->method('isReady')
|
|
|
|
->willReturn($enabled);
|
2016-08-16 19:59:45 +03:00
|
|
|
$this->manager
|
|
|
|
->expects($this->once())
|
|
|
|
->method('getEncryptionModules')
|
|
|
|
->willReturn([]);
|
2016-08-15 17:24:56 +03:00
|
|
|
$this->userManager
|
|
|
|
->expects($this->once())
|
|
|
|
->method('getBackends')
|
|
|
|
->willReturn(['entry', 'entry']);
|
|
|
|
$expected = new TemplateResponse(
|
|
|
|
'settings',
|
2018-10-08 12:27:22 +03:00
|
|
|
'settings/admin/security',
|
2016-08-15 17:24:56 +03:00
|
|
|
[
|
|
|
|
'encryptionEnabled' => $enabled,
|
|
|
|
'encryptionReady' => $enabled,
|
|
|
|
'externalBackendsEnabled' => true,
|
2016-08-16 19:59:45 +03:00
|
|
|
'encryptionModules' => []
|
2016-08-15 17:24:56 +03:00
|
|
|
],
|
|
|
|
''
|
|
|
|
);
|
|
|
|
$this->assertEquals($expected, $this->admin->getForm());
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testGetSection() {
|
2018-08-02 11:26:09 +03:00
|
|
|
$this->assertSame('security', $this->admin->getSection());
|
2016-08-15 17:24:56 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testGetPriority() {
|
2018-08-02 11:26:09 +03:00
|
|
|
$this->assertSame(10, $this->admin->getPriority());
|
2016-08-15 17:24:56 +03:00
|
|
|
}
|
|
|
|
}
|