2012-08-15 17:01:43 +04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Copyright (c) 2012 Sam Tuke <samtuke@owncloud.com>
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
2013-05-18 23:37:00 +04:00
|
|
|
|
2012-08-15 17:01:43 +04:00
|
|
|
require_once realpath( dirname(__FILE__).'/../../../lib/base.php' );
|
2012-12-12 21:39:43 +04:00
|
|
|
require_once realpath( dirname(__FILE__).'/../lib/crypt.php' );
|
|
|
|
require_once realpath( dirname(__FILE__).'/../lib/keymanager.php' );
|
|
|
|
require_once realpath( dirname(__FILE__).'/../lib/proxy.php' );
|
|
|
|
require_once realpath( dirname(__FILE__).'/../lib/stream.php' );
|
|
|
|
require_once realpath( dirname(__FILE__).'/../lib/util.php' );
|
2013-05-10 01:22:22 +04:00
|
|
|
require_once realpath( dirname(__FILE__).'/../lib/helper.php' );
|
2012-12-12 21:39:43 +04:00
|
|
|
require_once realpath( dirname(__FILE__).'/../appinfo/app.php' );
|
2012-08-15 17:01:43 +04:00
|
|
|
|
2012-11-16 22:31:37 +04:00
|
|
|
use OCA\Encryption;
|
|
|
|
|
2013-05-18 23:37:00 +04:00
|
|
|
class Test_Encryption_Keymanager extends \PHPUnit_Framework_TestCase {
|
2012-08-15 17:01:43 +04:00
|
|
|
|
|
|
|
function setUp() {
|
2013-04-30 01:41:49 +04:00
|
|
|
// reset backend
|
2013-05-15 04:38:08 +04:00
|
|
|
\OC_User::clearBackends();
|
2013-04-30 01:41:49 +04:00
|
|
|
\OC_User::useBackend('database');
|
|
|
|
|
2012-08-15 17:01:43 +04:00
|
|
|
\OC_FileProxy::$enabled = false;
|
2013-01-05 21:12:23 +04:00
|
|
|
|
2013-01-06 22:38:35 +04:00
|
|
|
// set content for encrypting / decrypting in tests
|
|
|
|
$this->dataLong = file_get_contents( realpath( dirname(__FILE__).'/../lib/crypt.php' ) );
|
|
|
|
$this->dataShort = 'hats';
|
|
|
|
$this->dataUrl = realpath( dirname(__FILE__).'/../lib/crypt.php' );
|
|
|
|
$this->legacyData = realpath( dirname(__FILE__).'/legacy-text.txt' );
|
|
|
|
$this->legacyEncryptedData = realpath( dirname(__FILE__).'/legacy-encrypted-text.txt' );
|
|
|
|
$this->randomKey = Encryption\Crypt::generateKey();
|
|
|
|
|
|
|
|
$keypair = Encryption\Crypt::createKeypair();
|
|
|
|
$this->genPublicKey = $keypair['publicKey'];
|
|
|
|
$this->genPrivateKey = $keypair['privateKey'];
|
2013-05-15 04:38:08 +04:00
|
|
|
|
|
|
|
$this->view = new \OC_FilesystemView( '/' );
|
|
|
|
|
|
|
|
\OC_User::setUserId( 'admin' );
|
|
|
|
$this->userId = 'admin';
|
|
|
|
$this->pass = 'admin';
|
2013-04-30 01:41:49 +04:00
|
|
|
|
|
|
|
$userHome = \OC_User::getHome($this->userId);
|
|
|
|
$this->dataDir = str_replace('/'.$this->userId, '', $userHome);
|
|
|
|
|
2013-05-15 04:38:08 +04:00
|
|
|
// Filesystem related hooks
|
|
|
|
\OCA\Encryption\Helper::registerFilesystemHooks();
|
|
|
|
|
|
|
|
\OC_FileProxy::register(new OCA\Encryption\Proxy());
|
|
|
|
|
2013-05-17 03:07:26 +04:00
|
|
|
// remember files_trashbin state
|
|
|
|
$this->stateFilesTrashbin = OC_App::isEnabled('files_trashbin');
|
|
|
|
|
|
|
|
// we don't want to tests with app files_trashbin enabled
|
|
|
|
\OC_App::disable('files_trashbin');
|
|
|
|
|
2013-05-15 04:38:08 +04:00
|
|
|
\OC_Util::tearDownFS();
|
|
|
|
\OC_User::setUserId('');
|
2013-05-15 12:21:56 +04:00
|
|
|
\OC\Files\Filesystem::tearDown();
|
2013-05-15 04:38:08 +04:00
|
|
|
\OC_Util::setupFS($this->userId);
|
|
|
|
\OC_User::setUserId($this->userId);
|
2013-05-01 03:43:56 +04:00
|
|
|
|
|
|
|
$params['uid'] = $this->userId;
|
|
|
|
$params['password'] = $this->pass;
|
|
|
|
OCA\Encryption\Hooks::login($params);
|
2012-08-15 17:01:43 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
function tearDown(){
|
|
|
|
|
2012-08-15 17:13:03 +04:00
|
|
|
\OC_FileProxy::$enabled = true;
|
2013-05-16 02:36:40 +04:00
|
|
|
\OC_FileProxy::clearProxies();
|
2013-05-17 03:07:26 +04:00
|
|
|
|
|
|
|
// reset app files_trashbin
|
|
|
|
if ($this->stateFilesTrashbin) {
|
|
|
|
OC_App::enable('files_trashbin');
|
|
|
|
} else {
|
|
|
|
OC_App::disable('files_trashbin');
|
|
|
|
}
|
2012-08-15 17:01:43 +04:00
|
|
|
}
|
|
|
|
|
2013-01-05 21:12:23 +04:00
|
|
|
function testGetPrivateKey() {
|
2012-08-15 17:01:43 +04:00
|
|
|
|
2013-01-06 22:38:35 +04:00
|
|
|
$key = Encryption\Keymanager::getPrivateKey( $this->view, $this->userId );
|
2013-04-30 03:54:19 +04:00
|
|
|
|
|
|
|
$privateKey = Encryption\Crypt::symmetricDecryptFileContent( $key, $this->pass);
|
|
|
|
|
2013-05-19 00:00:35 +04:00
|
|
|
$res = openssl_pkey_get_private($privateKey);
|
2013-04-30 03:54:19 +04:00
|
|
|
|
2013-05-19 00:00:35 +04:00
|
|
|
$this->assertTrue(is_resource($res));
|
|
|
|
|
|
|
|
$sslInfo = openssl_pkey_get_details($res);
|
|
|
|
|
|
|
|
$this->assertArrayHasKey('key', $sslInfo);
|
2012-08-15 17:13:03 +04:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-01-05 21:12:23 +04:00
|
|
|
function testGetPublicKey() {
|
|
|
|
|
2013-05-19 00:00:35 +04:00
|
|
|
$publiceKey = Encryption\Keymanager::getPublicKey( $this->view, $this->userId );
|
|
|
|
|
|
|
|
$res = openssl_pkey_get_public($publiceKey);
|
|
|
|
|
|
|
|
$this->assertTrue(is_resource($res));
|
|
|
|
|
|
|
|
$sslInfo = openssl_pkey_get_details($res);
|
|
|
|
|
|
|
|
$this->assertArrayHasKey('key', $sslInfo);
|
2013-01-05 21:12:23 +04:00
|
|
|
}
|
|
|
|
|
2012-08-23 19:43:10 +04:00
|
|
|
function testSetFileKey() {
|
|
|
|
|
2013-01-05 21:12:23 +04:00
|
|
|
# NOTE: This cannot be tested until we are able to break out
|
|
|
|
# of the FileSystemView data directory root
|
2012-08-23 19:43:10 +04:00
|
|
|
|
2013-01-14 23:07:28 +04:00
|
|
|
$key = Encryption\Crypt::symmetricEncryptFileContentKeyfile( $this->randomKey, 'hat' );
|
|
|
|
|
2013-04-30 01:41:49 +04:00
|
|
|
$file = 'unittest-'.time().'.txt';
|
|
|
|
|
|
|
|
// Disable encryption proxy to prevent recursive calls
|
|
|
|
$proxyStatus = \OC_FileProxy::$enabled;
|
|
|
|
\OC_FileProxy::$enabled = false;
|
|
|
|
|
|
|
|
$this->view->file_put_contents($this->userId . '/files/' . $file, $key['encrypted']);
|
|
|
|
|
|
|
|
// Re-enable proxy - our work is done
|
|
|
|
\OC_FileProxy::$enabled = $proxyStatus;
|
|
|
|
|
2013-01-14 23:07:28 +04:00
|
|
|
//$view = new \OC_FilesystemView( '/' . $this->userId . '/files_encryption/keyfiles' );
|
2013-04-30 01:41:49 +04:00
|
|
|
Encryption\Keymanager::setFileKey( $this->view, $file, $this->userId, $key['key'] );
|
2013-05-17 03:07:26 +04:00
|
|
|
|
|
|
|
// Disable encryption proxy to prevent recursive calls
|
|
|
|
$proxyStatus = \OC_FileProxy::$enabled;
|
|
|
|
\OC_FileProxy::$enabled = true;
|
|
|
|
|
|
|
|
// cleanup
|
|
|
|
$this->view->unlink('/'.$this->userId . '/files/' . $file);
|
|
|
|
|
|
|
|
// Re-enable proxy - our work is done
|
|
|
|
\OC_FileProxy::$enabled = $proxyStatus;
|
2012-08-23 19:43:10 +04:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-01-06 22:38:35 +04:00
|
|
|
// /**
|
|
|
|
// * @depends testGetPrivateKey
|
|
|
|
// */
|
|
|
|
// function testGetPrivateKey_decrypt() {
|
|
|
|
//
|
|
|
|
// $key = Encryption\Keymanager::getPrivateKey( $this->view, $this->userId );
|
|
|
|
//
|
|
|
|
// # TODO: replace call to Crypt with a mock object?
|
|
|
|
// $decrypted = Encryption\Crypt::symmetricDecryptFileContent( $key, $this->passphrase );
|
|
|
|
//
|
|
|
|
// $this->assertEquals( 1704, strlen( $decrypted ) );
|
|
|
|
//
|
|
|
|
// $this->assertEquals( '-----BEGIN PRIVATE KEY-----', substr( $decrypted, 0, 27 ) );
|
|
|
|
//
|
|
|
|
// }
|
2012-08-15 17:01:43 +04:00
|
|
|
|
2013-01-05 21:12:23 +04:00
|
|
|
function testGetUserKeys() {
|
|
|
|
|
2013-01-06 22:38:35 +04:00
|
|
|
$keys = Encryption\Keymanager::getUserKeys( $this->view, $this->userId );
|
2013-04-30 03:54:19 +04:00
|
|
|
|
2013-05-19 00:25:47 +04:00
|
|
|
$resPublic = openssl_pkey_get_public($keys['publicKey']);
|
2013-04-30 03:54:19 +04:00
|
|
|
|
2013-05-19 00:25:47 +04:00
|
|
|
$this->assertTrue(is_resource($resPublic));
|
2013-04-30 03:54:19 +04:00
|
|
|
|
2013-05-19 00:25:47 +04:00
|
|
|
$sslInfoPublic = openssl_pkey_get_details($resPublic);
|
2013-04-30 03:54:19 +04:00
|
|
|
|
2013-05-19 00:25:47 +04:00
|
|
|
$this->assertArrayHasKey('key', $sslInfoPublic);
|
|
|
|
|
|
|
|
$privateKey = Encryption\Crypt::symmetricDecryptFileContent( $keys['privateKey'], $this->pass);
|
|
|
|
|
|
|
|
$resPrivate = openssl_pkey_get_private($privateKey);
|
|
|
|
|
|
|
|
$this->assertTrue(is_resource($resPrivate));
|
|
|
|
|
|
|
|
$sslInfoPrivate = openssl_pkey_get_details($resPrivate);
|
|
|
|
|
|
|
|
$this->assertArrayHasKey('key', $sslInfoPrivate);
|
2013-01-05 21:12:23 +04:00
|
|
|
}
|
2012-08-15 17:01:43 +04:00
|
|
|
}
|