summaryrefslogtreecommitdiffstats
path: root/apps/files_encryption/tests/proxy.php
blob: f36b2193430b7a5a8a317bbda824143991df1c68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?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 {
	
	public function setUp(){
		//set testing key
		$_SESSION['enckey']=md5(time());
	
		//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();
		OC_Filesystem::mount('OC_Filestorage_Temporary',array(),'/');

		//set up the users home folder in the temp storage
		$rootView=new OC_FilesystemView('');
		$rootView->mkdir('/'.OC_User::getUser());
		$rootView->mkdir('/'.OC_User::getUser().'/files');
	}

	public function testSimple(){
		$oldConfig=OCP\Config::getAppValue('files_encryption','enable_encryption','true');
		OCP\Config::setAppValue('files_encryption','enable_encryption','true');
	
		$file=OC::$SERVERROOT.'/3rdparty/MDB2.php';
		$original=file_get_contents($file);

		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');
		$this->assertNotEqual($original,$stored);
		$this->assertEqual($original,$fromFile);

		$rootView=new OC_FilesystemView('');
		$view=new OC_FilesystemView('/'.OC_User::getUser());
		$userDir='/'.OC_User::getUser().'/files';

		$fromFile=$rootView->file_get_contents($userDir.'/file');
		$this->assertEqual($original,$fromFile);

		$fromFile=$view->file_get_contents('files/file');
		$this->assertEqual($original,$fromFile);

		OCP\Config::setAppValue('files_encryption','enable_encryption',$oldConfig);
	}
}