2015-04-02 16:29:10 +03:00
|
|
|
<?php
|
|
|
|
/**
|
2015-04-07 18:02:49 +03:00
|
|
|
* @author Björn Schießle <schiessle@owncloud.com>
|
2015-06-25 12:43:55 +03:00
|
|
|
* @author Joas Schilling <nickvergessen@owncloud.com>
|
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
2015-04-02 16:29:10 +03:00
|
|
|
*
|
2015-04-07 18:02:49 +03:00
|
|
|
* @copyright Copyright (c) 2015, ownCloud, Inc.
|
|
|
|
* @license AGPL-3.0
|
2015-04-02 16:29:10 +03:00
|
|
|
*
|
2015-04-07 18:02:49 +03:00
|
|
|
* 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.
|
2015-04-02 16:29:10 +03:00
|
|
|
*
|
2015-04-07 18:02:49 +03:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
2015-04-02 16:29:10 +03:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-04-07 18:02:49 +03:00
|
|
|
* 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/>
|
2015-04-02 16:29:10 +03:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2015-04-27 16:23:14 +03:00
|
|
|
namespace OCA\Encryption\Tests\lib\Crypto;
|
2015-04-02 16:29:10 +03:00
|
|
|
|
2015-04-13 16:56:36 +03:00
|
|
|
use OCA\Encryption\Exceptions\PublicKeyMissingException;
|
2015-04-02 16:29:10 +03:00
|
|
|
use Test\TestCase;
|
|
|
|
use OCA\Encryption\Crypto\Encryption;
|
|
|
|
|
|
|
|
class EncryptionTest extends TestCase {
|
|
|
|
|
|
|
|
/** @var Encryption */
|
|
|
|
private $instance;
|
|
|
|
|
|
|
|
/** @var \PHPUnit_Framework_MockObject_MockObject */
|
|
|
|
private $keyManagerMock;
|
|
|
|
|
|
|
|
/** @var \PHPUnit_Framework_MockObject_MockObject */
|
|
|
|
private $cryptMock;
|
|
|
|
|
|
|
|
/** @var \PHPUnit_Framework_MockObject_MockObject */
|
|
|
|
private $utilMock;
|
|
|
|
|
2015-04-28 18:29:10 +03:00
|
|
|
/** @var \PHPUnit_Framework_MockObject_MockObject */
|
|
|
|
private $loggerMock;
|
|
|
|
|
2015-05-18 14:09:36 +03:00
|
|
|
/** @var \PHPUnit_Framework_MockObject_MockObject */
|
|
|
|
private $l10nMock;
|
|
|
|
|
2015-04-02 16:29:10 +03:00
|
|
|
public function setUp() {
|
|
|
|
parent::setUp();
|
|
|
|
|
|
|
|
$this->cryptMock = $this->getMockBuilder('OCA\Encryption\Crypto\Crypt')
|
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
|
|
|
$this->utilMock = $this->getMockBuilder('OCA\Encryption\Util')
|
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
|
|
|
$this->keyManagerMock = $this->getMockBuilder('OCA\Encryption\KeyManager')
|
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
2015-04-28 18:29:10 +03:00
|
|
|
$this->loggerMock = $this->getMockBuilder('OCP\ILogger')
|
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
2015-05-18 14:09:36 +03:00
|
|
|
$this->l10nMock = $this->getMockBuilder('OCP\IL10N')
|
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
2015-05-18 14:40:08 +03:00
|
|
|
$this->l10nMock->expects($this->any())
|
|
|
|
->method('t')
|
|
|
|
->with($this->anything())
|
|
|
|
->willReturnArgument(0);
|
2015-04-02 16:29:10 +03:00
|
|
|
|
2015-04-28 18:29:10 +03:00
|
|
|
$this->instance = new Encryption(
|
|
|
|
$this->cryptMock,
|
|
|
|
$this->keyManagerMock,
|
|
|
|
$this->utilMock,
|
2015-05-18 14:09:36 +03:00
|
|
|
$this->loggerMock,
|
|
|
|
$this->l10nMock
|
2015-04-28 18:29:10 +03:00
|
|
|
);
|
2015-04-13 16:56:36 +03:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* test if public key from one of the recipients is missing
|
|
|
|
*/
|
|
|
|
public function testEndUser1() {
|
|
|
|
$this->instance->begin('/foo/bar', 'user1', 'r', array(), array('users' => array('user1', 'user2', 'user3')));
|
|
|
|
$this->endTest();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* test if public key from owner is missing
|
|
|
|
*
|
|
|
|
* @expectedException \OCA\Encryption\Exceptions\PublicKeyMissingException
|
|
|
|
*/
|
|
|
|
public function testEndUser2() {
|
|
|
|
$this->instance->begin('/foo/bar', 'user2', 'r', array(), array('users' => array('user1', 'user2', 'user3')));
|
|
|
|
$this->endTest();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* common part of testEndUser1 and testEndUser2
|
|
|
|
*
|
|
|
|
* @throws PublicKeyMissingException
|
|
|
|
*/
|
|
|
|
public function endTest() {
|
|
|
|
// prepare internal variables
|
2015-06-03 13:03:02 +03:00
|
|
|
self::invokePrivate($this->instance, 'isWriteOperation', [true]);
|
|
|
|
self::invokePrivate($this->instance, 'writeCache', ['']);
|
2015-04-13 16:56:36 +03:00
|
|
|
|
|
|
|
$this->keyManagerMock->expects($this->any())
|
|
|
|
->method('getPublicKey')
|
|
|
|
->will($this->returnCallback([$this, 'getPublicKeyCallback']));
|
|
|
|
$this->keyManagerMock->expects($this->any())
|
|
|
|
->method('addSystemKeys')
|
|
|
|
->will($this->returnCallback([$this, 'addSystemKeysCallback']));
|
|
|
|
$this->cryptMock->expects($this->any())
|
|
|
|
->method('multiKeyEncrypt')
|
|
|
|
->willReturn(true);
|
|
|
|
$this->cryptMock->expects($this->any())
|
|
|
|
->method('setAllFileKeys')
|
|
|
|
->willReturn(true);
|
|
|
|
|
|
|
|
$this->instance->end('/foo/bar');
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public function getPublicKeyCallback($uid) {
|
|
|
|
if ($uid === 'user2') {
|
|
|
|
throw new PublicKeyMissingException($uid);
|
|
|
|
}
|
|
|
|
return $uid;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function addSystemKeysCallback($accessList, $publicKeys) {
|
|
|
|
$this->assertSame(2, count($publicKeys));
|
|
|
|
$this->assertArrayHasKey('user1', $publicKeys);
|
|
|
|
$this->assertArrayHasKey('user3', $publicKeys);
|
|
|
|
return $publicKeys;
|
2015-04-02 16:29:10 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider dataProviderForTestGetPathToRealFile
|
|
|
|
*/
|
|
|
|
public function testGetPathToRealFile($path, $expected) {
|
|
|
|
$this->assertSame($expected,
|
2015-06-03 13:03:02 +03:00
|
|
|
self::invokePrivate($this->instance, 'getPathToRealFile', array($path))
|
2015-04-02 16:29:10 +03:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function dataProviderForTestGetPathToRealFile() {
|
|
|
|
return array(
|
|
|
|
array('/user/files/foo/bar.txt', '/user/files/foo/bar.txt'),
|
|
|
|
array('/user/files/foo.txt', '/user/files/foo.txt'),
|
|
|
|
array('/user/files_versions/foo.txt.v543534', '/user/files/foo.txt'),
|
|
|
|
array('/user/files_versions/foo/bar.txt.v5454', '/user/files/foo/bar.txt'),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2015-04-24 14:02:06 +03:00
|
|
|
/**
|
|
|
|
* @dataProvider dataTestBegin
|
|
|
|
*/
|
2015-04-28 18:31:03 +03:00
|
|
|
public function testBegin($mode, $header, $legacyCipher, $defaultCipher, $fileKey, $expected) {
|
2015-04-24 14:02:06 +03:00
|
|
|
|
|
|
|
$this->cryptMock->expects($this->any())
|
|
|
|
->method('getCipher')
|
|
|
|
->willReturn($defaultCipher);
|
|
|
|
$this->cryptMock->expects($this->any())
|
|
|
|
->method('getLegacyCipher')
|
|
|
|
->willReturn($legacyCipher);
|
2015-04-28 18:31:03 +03:00
|
|
|
if (empty($fileKey)) {
|
|
|
|
$this->cryptMock->expects($this->once())
|
|
|
|
->method('generateFileKey')
|
|
|
|
->willReturn('fileKey');
|
|
|
|
} else {
|
|
|
|
$this->cryptMock->expects($this->never())
|
|
|
|
->method('generateFileKey');
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->keyManagerMock->expects($this->once())
|
|
|
|
->method('getFileKey')
|
|
|
|
->willReturn($fileKey);
|
2015-04-24 14:02:06 +03:00
|
|
|
|
|
|
|
$result = $this->instance->begin('/user/files/foo.txt', 'user', $mode, $header, []);
|
|
|
|
|
|
|
|
$this->assertArrayHasKey('cipher', $result);
|
|
|
|
$this->assertSame($expected, $result['cipher']);
|
2015-04-28 18:31:03 +03:00
|
|
|
if ($mode === 'w') {
|
2015-06-03 13:03:02 +03:00
|
|
|
$this->assertTrue(self::invokePrivate($this->instance, 'isWriteOperation'));
|
2015-04-28 18:31:03 +03:00
|
|
|
} else {
|
2015-06-03 13:03:02 +03:00
|
|
|
$this->assertFalse(self::invokePrivate($this->instance, 'isWriteOperation'));
|
2015-04-28 18:31:03 +03:00
|
|
|
}
|
2015-04-24 14:02:06 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
public function dataTestBegin() {
|
|
|
|
return array(
|
2015-04-28 18:31:03 +03:00
|
|
|
array('w', ['cipher' => 'myCipher'], 'legacyCipher', 'defaultCipher', 'fileKey', 'myCipher'),
|
|
|
|
array('r', ['cipher' => 'myCipher'], 'legacyCipher', 'defaultCipher', 'fileKey', 'myCipher'),
|
|
|
|
array('w', [], 'legacyCipher', 'defaultCipher', '', 'defaultCipher'),
|
|
|
|
array('r', [], 'legacyCipher', 'defaultCipher', 'file_key', 'legacyCipher'),
|
2015-04-24 14:02:06 +03:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2015-04-28 18:29:10 +03:00
|
|
|
/**
|
|
|
|
* @dataProvider dataTestUpdate
|
|
|
|
*
|
|
|
|
* @param string $fileKey
|
|
|
|
* @param boolean $expected
|
|
|
|
*/
|
|
|
|
public function testUpdate($fileKey, $expected) {
|
|
|
|
$this->keyManagerMock->expects($this->once())
|
|
|
|
->method('getFileKey')->willReturn($fileKey);
|
|
|
|
|
|
|
|
$this->keyManagerMock->expects($this->any())
|
|
|
|
->method('getPublicKey')->willReturn('publicKey');
|
|
|
|
|
|
|
|
$this->keyManagerMock->expects($this->any())
|
|
|
|
->method('addSystemKeys')
|
|
|
|
->willReturnCallback(function($accessList, $publicKeys) {
|
|
|
|
return $publicKeys;
|
|
|
|
});
|
|
|
|
|
|
|
|
$this->assertSame($expected,
|
|
|
|
$this->instance->update('path', 'user1', ['users' => ['user1']])
|
|
|
|
);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public function dataTestUpdate() {
|
|
|
|
return array(
|
|
|
|
array('', false),
|
|
|
|
array('fileKey', true)
|
|
|
|
);
|
|
|
|
}
|
2015-04-02 16:29:10 +03:00
|
|
|
|
2015-05-18 14:40:23 +03:00
|
|
|
/**
|
2015-05-18 13:51:47 +03:00
|
|
|
* by default the encryption module should encrypt regular files, files in
|
|
|
|
* files_versions and files in files_trashbin
|
|
|
|
*
|
|
|
|
* @dataProvider dataTestShouldEncrypt
|
|
|
|
*/
|
|
|
|
public function testShouldEncrypt($path, $expected) {
|
|
|
|
$this->assertSame($expected,
|
|
|
|
$this->instance->shouldEncrypt($path)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function dataTestShouldEncrypt() {
|
|
|
|
return array(
|
|
|
|
array('/user1/files/foo.txt', true),
|
|
|
|
array('/user1/files_versions/foo.txt', true),
|
|
|
|
array('/user1/files_trashbin/foo.txt', true),
|
|
|
|
array('/user1/some_folder/foo.txt', false),
|
|
|
|
array('/user1/foo.txt', false),
|
|
|
|
array('/user1/files', false),
|
|
|
|
array('/user1/files_trashbin', false),
|
|
|
|
array('/user1/files_versions', false),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2015-05-18 14:40:08 +03:00
|
|
|
/**
|
|
|
|
* @expectedException \OC\Encryption\Exceptions\DecryptionFailedException
|
|
|
|
* @expectedExceptionMessage Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.
|
|
|
|
*/
|
|
|
|
public function testDecrypt() {
|
|
|
|
$this->instance->decrypt('abc');
|
|
|
|
}
|
2015-04-28 18:29:10 +03:00
|
|
|
}
|