adding user setup test and adding 4 tests to keymanager
This commit is contained in:
parent
28c8017928
commit
d637bffac6
|
@ -206,7 +206,8 @@ class KeyManagerTest extends TestCase {
|
|||
|
||||
|
||||
$this->assertTrue(
|
||||
$this->instance->setRecoveryKey('pass', array('publicKey' => 'publicKey', 'privateKey' => 'privateKey'))
|
||||
$this->instance->setRecoveryKey('pass',
|
||||
array('publicKey' => 'publicKey', 'privateKey' => 'privateKey'))
|
||||
);
|
||||
}
|
||||
|
||||
|
@ -233,4 +234,53 @@ class KeyManagerTest extends TestCase {
|
|||
$this->instance->getSystemPrivateKey('keyId')
|
||||
);
|
||||
}
|
||||
|
||||
public function testGetEncryptedFileKey() {
|
||||
$this->keyStorageMock->expects($this->once())
|
||||
->method('getFileKey')
|
||||
->with('/', 'fileKey')
|
||||
->willReturn(true);
|
||||
|
||||
$this->assertTrue($this->instance->getEncryptedFileKey('/'));
|
||||
}
|
||||
|
||||
public function testGetFileKey() {
|
||||
$this->keyStorageMock->expects($this->exactly(4))
|
||||
->method('getFileKey')
|
||||
->willReturn(true);
|
||||
|
||||
$this->keyStorageMock->expects($this->once())
|
||||
->method('getSystemUserKey')
|
||||
->willReturn(true);
|
||||
|
||||
$this->cryptMock->expects($this->once())
|
||||
->method('symmetricDecryptFileContent')
|
||||
->willReturn(true);
|
||||
|
||||
$this->cryptMock->expects($this->once())
|
||||
->method('multiKeyDecrypt')
|
||||
->willReturn(true);
|
||||
|
||||
$this->assertTrue($this->instance->getFileKey('/', null));
|
||||
$this->assertEmpty($this->instance->getFileKey('/', $this->userId));
|
||||
}
|
||||
|
||||
public function testDeletePrivateKey() {
|
||||
$this->keyStorageMock->expects($this->once())
|
||||
->method('deleteUserKey')
|
||||
->with('user1', 'privateKey')
|
||||
->willReturn(true);
|
||||
|
||||
$this->assertTrue(\Test_Helper::invokePrivate($this->instance,
|
||||
'deletePrivateKey',
|
||||
[$this->userId]));
|
||||
}
|
||||
|
||||
public function testDeleteAllFileKeys() {
|
||||
$this->keyStorageMock->expects($this->once())
|
||||
->method('deleteAllFileKeys')
|
||||
->willReturn(true);
|
||||
|
||||
$this->assertTrue($this->instance->deleteAllFileKeys('/'));
|
||||
}
|
||||
}
|
||||
|
|
|
@ -0,0 +1,81 @@
|
|||
<?php
|
||||
/**
|
||||
* @author Clark Tomlinson <clark@owncloud.com>
|
||||
* @since 4/6/15, 11:50 AM
|
||||
* @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 OCA\Encryption\Tests\Users;
|
||||
|
||||
|
||||
use OCA\Encryption\Users\Setup;
|
||||
use Test\TestCase;
|
||||
|
||||
class SetupTest extends TestCase {
|
||||
/**
|
||||
* @var \PHPUnit_Framework_MockObject_MockObject
|
||||
*/
|
||||
private $keyManagerMock;
|
||||
/**
|
||||
* @var \PHPUnit_Framework_MockObject_MockObject
|
||||
*/
|
||||
private $cryptMock;
|
||||
/**
|
||||
* @var Setup
|
||||
*/
|
||||
private $instance;
|
||||
|
||||
public function testSetupServerSide() {
|
||||
$this->keyManagerMock->expects($this->exactly(2))
|
||||
->method('userHasKeys')
|
||||
->with('admin')
|
||||
->willReturnOnConsecutiveCalls(true, false);
|
||||
|
||||
$this->assertTrue($this->instance->setupServerSide('admin',
|
||||
'password'));
|
||||
|
||||
$this->keyManagerMock->expects($this->once())
|
||||
->method('storeKeyPair')
|
||||
->with('admin', 'password')
|
||||
->willReturn(false);
|
||||
|
||||
$this->assertFalse($this->instance->setupServerSide('admin',
|
||||
'password'));
|
||||
}
|
||||
|
||||
protected function setUp() {
|
||||
parent::setUp();
|
||||
$logMock = $this->getMock('OCP\ILogger');
|
||||
$userSessionMock = $this->getMockBuilder('OCP\IUserSession')
|
||||
->disableOriginalConstructor()
|
||||
->getMock();
|
||||
$this->cryptMock = $this->getMockBuilder('OCA\Encryption\Crypto\Crypt')
|
||||
->disableOriginalConstructor()
|
||||
->getMock();
|
||||
|
||||
$this->keyManagerMock = $this->getMockBuilder('OCA\Encryption\KeyManager')
|
||||
->disableOriginalConstructor()
|
||||
->getMock();
|
||||
|
||||
$this->instance = new Setup($logMock,
|
||||
$userSessionMock,
|
||||
$this->cryptMock,
|
||||
$this->keyManagerMock);
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue