nextcloud/apps/files_encryption/tests/proxy.php

118 lines
3.4 KiB
PHP
Raw Normal View History

<?php
/**
* Copyright (c) 2012 Robin Appelman <icewind@owncloud.com>
* This file is licensed under the Affero General Public License version 3 or
* later.
* See the COPYING-README file.
*/
class Test_CryptProxy extends UnitTestCase {
2012-06-16 01:11:33 +04:00
private $oldConfig;
private $oldKey;
2012-08-29 10:42:49 +04:00
2012-09-07 17:22:01 +04:00
public function setUp() {
$user=OC_User::getUser();
2012-11-04 14:10:46 +04:00
$this->oldConfig=OCP\Config::getAppValue('files_encryption','enable_encryption', 'true');
OCP\Config::setAppValue('files_encryption', 'enable_encryption', 'true');
$this->oldKey=isset($_SESSION['enckey'])?$_SESSION['enckey']:null;
2012-08-29 10:42:49 +04:00
//set testing key
$_SESSION['enckey']=md5(time());
2012-08-29 10:42:49 +04:00
//clear all proxies and hooks so we can do clean testing
OC_FileProxy::clearProxies();
OC_Hook::clear('OC_Filesystem');
//enable only the encryption hook
OC_FileProxy::register(new OC_FileProxy_Encryption());
//set up temporary storage
OC_Filesystem::clearMounts();
2012-11-04 14:10:46 +04:00
OC_Filesystem::mount('OC_Filestorage_Temporary', array(), '/');
OC_Filesystem::init('/'.$user.'/files');
//set up the users home folder in the temp storage
$rootView=new OC_FilesystemView('');
$rootView->mkdir('/'.$user);
$rootView->mkdir('/'.$user.'/files');
}
2012-09-07 17:22:01 +04:00
public function tearDown() {
2012-11-02 22:53:02 +04:00
OCP\Config::setAppValue('files_encryption', 'enable_encryption', $this->oldConfig);
if ( ! is_null($this->oldKey)) {
$_SESSION['enckey']=$this->oldKey;
}
2012-06-16 01:11:33 +04:00
}
2012-09-07 17:22:01 +04:00
public function testSimple() {
$file=OC::$SERVERROOT.'/3rdparty/MDB2.php';
$original=file_get_contents($file);
2012-11-02 22:53:02 +04:00
OC_Filesystem::file_put_contents('/file', $original);
2012-08-29 10:42:49 +04:00
OC_FileProxy::$enabled=false;
$stored=OC_Filesystem::file_get_contents('/file');
OC_FileProxy::$enabled=true;
2012-08-29 10:42:49 +04:00
$fromFile=OC_Filesystem::file_get_contents('/file');
2012-11-02 22:53:02 +04:00
$this->assertNotEqual($original, $stored);
2012-10-24 00:53:54 +04:00
$this->assertEqual(strlen($original), strlen($fromFile));
2012-11-02 22:53:02 +04:00
$this->assertEqual($original, $fromFile);
2012-06-09 19:33:57 +04:00
2012-06-16 01:11:33 +04:00
}
2012-09-07 17:22:01 +04:00
public function testView() {
2012-06-16 01:11:33 +04:00
$file=OC::$SERVERROOT.'/3rdparty/MDB2.php';
$original=file_get_contents($file);
2012-06-09 19:33:57 +04:00
$rootView=new OC_FilesystemView('');
$view=new OC_FilesystemView('/'.OC_User::getUser());
$userDir='/'.OC_User::getUser().'/files';
2012-11-02 22:53:02 +04:00
$rootView->file_put_contents($userDir.'/file', $original);
2012-06-16 01:11:33 +04:00
OC_FileProxy::$enabled=false;
$stored=$rootView->file_get_contents($userDir.'/file');
OC_FileProxy::$enabled=true;
2012-11-02 22:53:02 +04:00
$this->assertNotEqual($original, $stored);
2012-06-09 19:33:57 +04:00
$fromFile=$rootView->file_get_contents($userDir.'/file');
2012-11-02 22:53:02 +04:00
$this->assertEqual($original, $fromFile);
2012-06-09 19:33:57 +04:00
$fromFile=$view->file_get_contents('files/file');
2012-11-02 22:53:02 +04:00
$this->assertEqual($original, $fromFile);
2012-06-16 01:11:33 +04:00
}
2012-09-07 17:22:01 +04:00
public function testBinary() {
2012-06-16 01:11:33 +04:00
$file=__DIR__.'/binary';
$original=file_get_contents($file);
2012-11-02 22:53:02 +04:00
OC_Filesystem::file_put_contents('/file', $original);
2012-06-09 19:33:57 +04:00
2012-06-16 01:11:33 +04:00
OC_FileProxy::$enabled=false;
$stored=OC_Filesystem::file_get_contents('/file');
OC_FileProxy::$enabled=true;
$fromFile=OC_Filesystem::file_get_contents('/file');
2012-11-02 22:53:02 +04:00
$this->assertNotEqual($original, $stored);
2012-10-24 00:53:54 +04:00
$this->assertEqual(strlen($original), strlen($fromFile));
2012-11-02 22:53:02 +04:00
$this->assertEqual($original, $fromFile);
$file=__DIR__.'/zeros';
$original=file_get_contents($file);
2012-11-02 22:53:02 +04:00
OC_Filesystem::file_put_contents('/file', $original);
OC_FileProxy::$enabled=false;
$stored=OC_Filesystem::file_get_contents('/file');
OC_FileProxy::$enabled=true;
$fromFile=OC_Filesystem::file_get_contents('/file');
2012-11-02 22:53:02 +04:00
$this->assertNotEqual($original, $stored);
2012-10-24 00:53:54 +04:00
$this->assertEqual(strlen($original), strlen($fromFile));
}
}