Blame view

sources/apps/files_encryption/tests/crypt.php 18.6 KB
03e52840d   Kload   Init
1
2
3
4
5
6
7
8
  <?php
  /**
   * Copyright (c) 2012 Sam Tuke <samtuke@owncloud.com>, and
   * Robin Appelman <icewind@owncloud.com>
   * This file is licensed under the Affero General Public License version 3 or
   * later.
   * See the COPYING-README file.
   */
31b7f2792   Kload   Upgrade to ownclo...
9
10
11
12
13
14
15
16
17
18
  require_once __DIR__ . '/../3rdparty/Crypt_Blowfish/Blowfish.php';
  require_once __DIR__ . '/../../../lib/base.php';
  require_once __DIR__ . '/../lib/crypt.php';
  require_once __DIR__ . '/../lib/keymanager.php';
  require_once __DIR__ . '/../lib/proxy.php';
  require_once __DIR__ . '/../lib/stream.php';
  require_once __DIR__ . '/../lib/util.php';
  require_once __DIR__ . '/../lib/helper.php';
  require_once __DIR__ . '/../appinfo/app.php';
  require_once __DIR__ . '/util.php';
03e52840d   Kload   Init
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
62
63
64
65
66
67
68
  
  use OCA\Encryption;
  
  /**
   * Class Test_Encryption_Crypt
   */
  class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase {
  
  	const TEST_ENCRYPTION_CRYPT_USER1 = "test-crypt-user1";
  
  	public $userId;
  	public $pass;
  	public $stateFilesTrashbin;
  	public $dataLong;
  	public $dataUrl;
  	public $dataShort;
  	/**
  	 * @var OC_FilesystemView
  	 */
  	public $view;
  	public $legacyEncryptedData;
  	public $genPrivateKey;
  	public $genPublicKey;
  
  	public static function setUpBeforeClass() {
  		// reset backend
  		\OC_User::clearBackends();
  		\OC_User::useBackend('database');
  
  		// Filesystem related hooks
  		\OCA\Encryption\Helper::registerFilesystemHooks();
  
  		// Filesystem related hooks
  		\OCA\Encryption\Helper::registerUserHooks();
  
  		// clear and register hooks
  		\OC_FileProxy::clearProxies();
  		\OC_FileProxy::register(new OCA\Encryption\Proxy());
  
  		// create test user
  		\Test_Encryption_Util::loginHelper(\Test_Encryption_Crypt::TEST_ENCRYPTION_CRYPT_USER1, true);
  	}
  
  	function setUp() {
  		// set user id
  		\OC_User::setUserId(\Test_Encryption_Crypt::TEST_ENCRYPTION_CRYPT_USER1);
  		$this->userId = \Test_Encryption_Crypt::TEST_ENCRYPTION_CRYPT_USER1;
  		$this->pass = \Test_Encryption_Crypt::TEST_ENCRYPTION_CRYPT_USER1;
  
  		// set content for encrypting / decrypting in tests
31b7f2792   Kload   Upgrade to ownclo...
69
  		$this->dataLong = file_get_contents(__DIR__ . '/../lib/crypt.php');
03e52840d   Kload   Init
70
  		$this->dataShort = 'hats';
31b7f2792   Kload   Upgrade to ownclo...
71
72
73
74
  		$this->dataUrl = __DIR__ . '/../lib/crypt.php';
  		$this->legacyData = __DIR__ . '/legacy-text.txt';
  		$this->legacyEncryptedData = __DIR__ . '/legacy-encrypted-text.txt';
  		$this->legacyEncryptedDataKey = __DIR__ . '/encryption.key';
03e52840d   Kload   Init
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
  		$this->randomKey = Encryption\Crypt::generateKey();
  
  		$keypair = Encryption\Crypt::createKeypair();
  		$this->genPublicKey = $keypair['publicKey'];
  		$this->genPrivateKey = $keypair['privateKey'];
  
  		$this->view = new \OC_FilesystemView('/');
  
  		// 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');
  	}
  
  	function tearDown() {
  		// reset app files_trashbin
  		if ($this->stateFilesTrashbin) {
  			OC_App::enable('files_trashbin');
  		} else {
  			OC_App::disable('files_trashbin');
  		}
  	}
  
  	public static function tearDownAfterClass() {
  		// cleanup test user
  		\OC_User::deleteUser(\Test_Encryption_Crypt::TEST_ENCRYPTION_CRYPT_USER1);
  	}
31b7f2792   Kload   Upgrade to ownclo...
103
104
105
  	/**
  	 * @medium
  	 */
03e52840d   Kload   Init
106
107
108
109
110
111
112
113
114
  	function testGenerateKey() {
  
  		# TODO: use more accurate (larger) string length for test confirmation
  
  		$key = Encryption\Crypt::generateKey();
  
  		$this->assertTrue(strlen($key) > 16);
  
  	}
03e52840d   Kload   Init
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
  	function testDecryptPrivateKey() {
  
  		// test successful decrypt
  		$crypted = Encryption\Crypt::symmetricEncryptFileContent($this->genPrivateKey, 'hat');
  
  		$decrypted = Encryption\Crypt::decryptPrivateKey($crypted, 'hat');
  
  		$this->assertEquals($this->genPrivateKey, $decrypted);
  
  		//test private key decrypt with wrong password
  		$wrongPasswd = Encryption\Crypt::decryptPrivateKey($crypted, 'hat2');
  
  		$this->assertEquals(false, $wrongPasswd);
  
  	}
31b7f2792   Kload   Upgrade to ownclo...
130
131
132
133
  
  	/**
  	 * @medium
  	 */
03e52840d   Kload   Init
134
135
136
137
138
139
140
141
142
143
144
145
146
147
  	function testSymmetricEncryptFileContent() {
  
  		# TODO: search in keyfile for actual content as IV will ensure this test always passes
  
  		$crypted = Encryption\Crypt::symmetricEncryptFileContent($this->dataShort, 'hat');
  
  		$this->assertNotEquals($this->dataShort, $crypted);
  
  
  		$decrypt = Encryption\Crypt::symmetricDecryptFileContent($crypted, 'hat');
  
  		$this->assertEquals($this->dataShort, $decrypt);
  
  	}
31b7f2792   Kload   Upgrade to ownclo...
148
149
150
  	/**
  	 * @medium
  	 */
03e52840d   Kload   Init
151
  	function testSymmetricStreamEncryptShortFileContent() {
a293d369c   Kload   Update sources to...
152
  		$filename = 'tmp-' . uniqid() . '.test';
03e52840d   Kload   Init
153

31b7f2792   Kload   Upgrade to ownclo...
154
155
156
  		$util = new Encryption\Util(new \OC_FilesystemView(), $this->userId);
  
  		$cryptedFile = file_put_contents('crypt:///' . $this->userId . '/files/'. $filename, $this->dataShort);
03e52840d   Kload   Init
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
  
  		// Test that data was successfully written
  		$this->assertTrue(is_int($cryptedFile));
  
  		// Disable encryption proxy to prevent recursive calls
  		$proxyStatus = \OC_FileProxy::$enabled;
  		\OC_FileProxy::$enabled = false;
  
  		// Get file contents without using any wrapper to get it's actual contents on disk
  		$retreivedCryptedFile = $this->view->file_get_contents($this->userId . '/files/' . $filename);
  
  		// Re-enable proxy - our work is done
  		\OC_FileProxy::$enabled = $proxyStatus;
  
  		// Check that the file was encrypted before being written to disk
  		$this->assertNotEquals($this->dataShort, $retreivedCryptedFile);
  
  		// Get the encrypted keyfile
31b7f2792   Kload   Upgrade to ownclo...
175
  		$encKeyfile = Encryption\Keymanager::getFileKey($this->view, $util, $filename);
03e52840d   Kload   Init
176
177
  
  		// Attempt to fetch the user's shareKey
31b7f2792   Kload   Upgrade to ownclo...
178
  		$shareKey = Encryption\Keymanager::getShareKey($this->view, $this->userId, $util, $filename);
03e52840d   Kload   Init
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
  
  		// get session
  		$session = new \OCA\Encryption\Session($this->view);
  
  		// get private key
  		$privateKey = $session->getPrivateKey($this->userId);
  
  		// Decrypt keyfile with shareKey
  		$plainKeyfile = Encryption\Crypt::multiKeyDecrypt($encKeyfile, $shareKey, $privateKey);
  
  		// Manually decrypt
  		$manualDecrypt = Encryption\Crypt::symmetricDecryptFileContent($retreivedCryptedFile, $plainKeyfile);
  
  		// Check that decrypted data matches
  		$this->assertEquals($this->dataShort, $manualDecrypt);
  
  		// Teardown
  		$this->view->unlink($this->userId . '/files/' . $filename);
31b7f2792   Kload   Upgrade to ownclo...
197
  		Encryption\Keymanager::deleteFileKey($this->view, $filename);
03e52840d   Kload   Init
198
199
200
  	}
  
  	/**
31b7f2792   Kload   Upgrade to ownclo...
201
  	 * @medium
03e52840d   Kload   Init
202
203
204
205
206
207
208
209
  	 * @brief Test that data that is written by the crypto stream wrapper
  	 * @note Encrypted data is manually prepared and decrypted here to avoid dependency on success of stream_read
  	 * @note If this test fails with truncate content, check that enough array slices are being rejoined to form $e, as the crypt.php file may have gotten longer and broken the manual
  	 * reassembly of its data
  	 */
  	function testSymmetricStreamEncryptLongFileContent() {
  
  		// Generate a a random filename
a293d369c   Kload   Update sources to...
210
  		$filename = 'tmp-' . uniqid() . '.test';
03e52840d   Kload   Init
211

31b7f2792   Kload   Upgrade to ownclo...
212
  		$util = new Encryption\Util(new \OC_FilesystemView(), $this->userId);
03e52840d   Kload   Init
213
  		// Save long data as encrypted file using stream wrapper
31b7f2792   Kload   Upgrade to ownclo...
214
  		$cryptedFile = file_put_contents('crypt:///' . $this->userId . '/files/' . $filename, $this->dataLong . $this->dataLong);
03e52840d   Kload   Init
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
  
  		// Test that data was successfully written
  		$this->assertTrue(is_int($cryptedFile));
  
  		// Disable encryption proxy to prevent recursive calls
  		$proxyStatus = \OC_FileProxy::$enabled;
  		\OC_FileProxy::$enabled = false;
  
  		// Get file contents without using any wrapper to get it's actual contents on disk
  		$retreivedCryptedFile = $this->view->file_get_contents($this->userId . '/files/' . $filename);
  
  		// Re-enable proxy - our work is done
  		\OC_FileProxy::$enabled = $proxyStatus;
  
  
  		// Check that the file was encrypted before being written to disk
  		$this->assertNotEquals($this->dataLong . $this->dataLong, $retreivedCryptedFile);
  
  		// Manuallly split saved file into separate IVs and encrypted chunks
  		$r = preg_split('/(00iv00.{16,18})/', $retreivedCryptedFile, NULL, PREG_SPLIT_DELIM_CAPTURE);
  
  		//print_r($r);
  
  		// Join IVs and their respective data chunks
31b7f2792   Kload   Upgrade to ownclo...
239
240
241
242
243
244
  		$e = array();
  		$i = 0;
  		while ($i < count($r)-1) {
  			$e[] = $r[$i] . $r[$i+1];
  			$i = $i + 2;
  		}
03e52840d   Kload   Init
245
246
247
248
  
  		//print_r($e);
  
  		// Get the encrypted keyfile
31b7f2792   Kload   Upgrade to ownclo...
249
  		$encKeyfile = Encryption\Keymanager::getFileKey($this->view, $util, $filename);
03e52840d   Kload   Init
250
251
  
  		// Attempt to fetch the user's shareKey
31b7f2792   Kload   Upgrade to ownclo...
252
  		$shareKey = Encryption\Keymanager::getShareKey($this->view, $this->userId, $util, $filename);
03e52840d   Kload   Init
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
  
  		// get session
  		$session = new \OCA\Encryption\Session($this->view);
  
  		// get private key
  		$privateKey = $session->getPrivateKey($this->userId);
  
  		// Decrypt keyfile with shareKey
  		$plainKeyfile = Encryption\Crypt::multiKeyDecrypt($encKeyfile, $shareKey, $privateKey);
  
  		// Set var for reassembling decrypted content
  		$decrypt = '';
  
  		// Manually decrypt chunk
  		foreach ($e as $chunk) {
  
  			$chunkDecrypt = Encryption\Crypt::symmetricDecryptFileContent($chunk, $plainKeyfile);
  
  			// Assemble decrypted chunks
  			$decrypt .= $chunkDecrypt;
  
  		}
  
  		$this->assertEquals($this->dataLong . $this->dataLong, $decrypt);
  
  		// Teardown
  
  		$this->view->unlink($this->userId . '/files/' . $filename);
31b7f2792   Kload   Upgrade to ownclo...
281
  		Encryption\Keymanager::deleteFileKey($this->view, $filename);
03e52840d   Kload   Init
282
283
284
285
  
  	}
  
  	/**
31b7f2792   Kload   Upgrade to ownclo...
286
  	 * @medium
03e52840d   Kload   Init
287
288
289
  	 * @brief Test that data that is read by the crypto stream wrapper
  	 */
  	function testSymmetricStreamDecryptShortFileContent() {
a293d369c   Kload   Update sources to...
290
  		$filename = 'tmp-' . uniqid();
03e52840d   Kload   Init
291
292
  
  		// Save long data as encrypted file using stream wrapper
31b7f2792   Kload   Upgrade to ownclo...
293
  		$cryptedFile = file_put_contents('crypt:///'. $this->userId . '/files/' . $filename, $this->dataShort);
03e52840d   Kload   Init
294
295
296
297
298
299
300
301
302
303
304
305
306
  
  		// Test that data was successfully written
  		$this->assertTrue(is_int($cryptedFile));
  
  		// Disable encryption proxy to prevent recursive calls
  		$proxyStatus = \OC_FileProxy::$enabled;
  		\OC_FileProxy::$enabled = false;
  
  		$this->assertTrue(Encryption\Crypt::isEncryptedMeta($filename));
  
  		\OC_FileProxy::$enabled = $proxyStatus;
  
  		// Get file decrypted contents
31b7f2792   Kload   Upgrade to ownclo...
307
  		$decrypt = file_get_contents('crypt:///' . $this->userId . '/files/' . $filename);
03e52840d   Kload   Init
308
309
310
311
312
313
  
  		$this->assertEquals($this->dataShort, $decrypt);
  
  		// tear down
  		$this->view->unlink($this->userId . '/files/' . $filename);
  	}
31b7f2792   Kload   Upgrade to ownclo...
314
315
316
  	/**
  	 * @medium
  	 */
03e52840d   Kload   Init
317
  	function testSymmetricStreamDecryptLongFileContent() {
a293d369c   Kload   Update sources to...
318
  		$filename = 'tmp-' . uniqid();
03e52840d   Kload   Init
319
320
  
  		// Save long data as encrypted file using stream wrapper
31b7f2792   Kload   Upgrade to ownclo...
321
  		$cryptedFile = file_put_contents('crypt:///' . $this->userId . '/files/' . $filename, $this->dataLong);
03e52840d   Kload   Init
322
323
324
325
326
  
  		// Test that data was successfully written
  		$this->assertTrue(is_int($cryptedFile));
  
  		// Get file decrypted contents
31b7f2792   Kload   Upgrade to ownclo...
327
  		$decrypt = file_get_contents('crypt:///' . $this->userId . '/files/' . $filename);
03e52840d   Kload   Init
328
329
330
331
332
333
  
  		$this->assertEquals($this->dataLong, $decrypt);
  
  		// tear down
  		$this->view->unlink($this->userId . '/files/' . $filename);
  	}
31b7f2792   Kload   Upgrade to ownclo...
334
335
336
  	/**
  	 * @medium
  	 */
03e52840d   Kload   Init
337
338
339
340
341
342
343
344
345
346
347
  	function testIsEncryptedContent() {
  
  		$this->assertFalse(Encryption\Crypt::isCatfileContent($this->dataUrl));
  
  		$this->assertFalse(Encryption\Crypt::isCatfileContent($this->legacyEncryptedData));
  
  		$keyfileContent = Encryption\Crypt::symmetricEncryptFileContent($this->dataUrl, 'hat');
  
  		$this->assertTrue(Encryption\Crypt::isCatfileContent($keyfileContent));
  
  	}
31b7f2792   Kload   Upgrade to ownclo...
348
349
350
  	/**
  	 * @large
  	 */
03e52840d   Kload   Init
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
  	function testMultiKeyEncrypt() {
  
  		# TODO: search in keyfile for actual content as IV will ensure this test always passes
  
  		$pair1 = Encryption\Crypt::createKeypair();
  
  		$this->assertEquals(2, count($pair1));
  
  		$this->assertTrue(strlen($pair1['publicKey']) > 1);
  
  		$this->assertTrue(strlen($pair1['privateKey']) > 1);
  
  
  		$crypted = Encryption\Crypt::multiKeyEncrypt($this->dataShort, array($pair1['publicKey']));
  
  		$this->assertNotEquals($this->dataShort, $crypted['data']);
  
  
  		$decrypt = Encryption\Crypt::multiKeyDecrypt($crypted['data'], $crypted['keys'][0], $pair1['privateKey']);
  
  		$this->assertEquals($this->dataShort, $decrypt);
  
  	}
03e52840d   Kload   Init
374
  	/**
31b7f2792   Kload   Upgrade to ownclo...
375
  	 * @medium
03e52840d   Kload   Init
376
  	 * @brief test decryption using legacy blowfish method
03e52840d   Kload   Init
377
  	 */
31b7f2792   Kload   Upgrade to ownclo...
378
379
380
  	function testLegacyDecryptShort() {
  
  		$crypted = $this->legacyEncrypt($this->dataShort, $this->pass);
03e52840d   Kload   Init
381
382
383
384
385
386
387
388
  
  		$decrypted = Encryption\Crypt::legacyBlockDecrypt($crypted, $this->pass);
  
  		$this->assertEquals($this->dataShort, $decrypted);
  
  	}
  
  	/**
31b7f2792   Kload   Upgrade to ownclo...
389
  	 * @medium
03e52840d   Kload   Init
390
  	 * @brief test decryption using legacy blowfish method
03e52840d   Kload   Init
391
  	 */
31b7f2792   Kload   Upgrade to ownclo...
392
393
394
  	function testLegacyDecryptLong() {
  
  		$crypted = $this->legacyEncrypt($this->dataLong, $this->pass);
03e52840d   Kload   Init
395
396
397
398
  
  		$decrypted = Encryption\Crypt::legacyBlockDecrypt($crypted, $this->pass);
  
  		$this->assertEquals($this->dataLong, $decrypted);
03e52840d   Kload   Init
399
400
401
  	}
  
  	/**
31b7f2792   Kload   Upgrade to ownclo...
402
  	 * @medium
03e52840d   Kload   Init
403
  	 */
03e52840d   Kload   Init
404
  	function testRenameFile() {
a293d369c   Kload   Update sources to...
405
  		$filename = 'tmp-' . uniqid();
03e52840d   Kload   Init
406
407
  
  		// Save long data as encrypted file using stream wrapper
31b7f2792   Kload   Upgrade to ownclo...
408
  		$cryptedFile = file_put_contents('crypt:///' . $this->userId . '/files/' . $filename, $this->dataLong);
03e52840d   Kload   Init
409
410
411
412
413
  
  		// Test that data was successfully written
  		$this->assertTrue(is_int($cryptedFile));
  
  		// Get file decrypted contents
31b7f2792   Kload   Upgrade to ownclo...
414
  		$decrypt = file_get_contents('crypt:///' . $this->userId . '/files/' . $filename);
03e52840d   Kload   Init
415
416
  
  		$this->assertEquals($this->dataLong, $decrypt);
a293d369c   Kload   Update sources to...
417
  		$newFilename = 'tmp-new-' . uniqid();
03e52840d   Kload   Init
418
419
420
421
  		$view = new \OC\Files\View('/' . $this->userId . '/files');
  		$view->rename($filename, $newFilename);
  
  		// Get file decrypted contents
31b7f2792   Kload   Upgrade to ownclo...
422
  		$newDecrypt = file_get_contents('crypt:///'. $this->userId . '/files/' . $newFilename);
03e52840d   Kload   Init
423
424
425
426
427
428
  
  		$this->assertEquals($this->dataLong, $newDecrypt);
  
  		// tear down
  		$view->unlink($newFilename);
  	}
31b7f2792   Kload   Upgrade to ownclo...
429
430
431
  	/**
  	 * @medium
  	 */
03e52840d   Kload   Init
432
  	function testMoveFileIntoFolder() {
a293d369c   Kload   Update sources to...
433
  		$filename = 'tmp-' . uniqid();
03e52840d   Kload   Init
434
435
  
  		// Save long data as encrypted file using stream wrapper
31b7f2792   Kload   Upgrade to ownclo...
436
  		$cryptedFile = file_put_contents('crypt:///' . $this->userId . '/files/' . $filename, $this->dataLong);
03e52840d   Kload   Init
437
438
439
440
441
  
  		// Test that data was successfully written
  		$this->assertTrue(is_int($cryptedFile));
  
  		// Get file decrypted contents
31b7f2792   Kload   Upgrade to ownclo...
442
  		$decrypt = file_get_contents('crypt:///' . $this->userId . '/files/' . $filename);
03e52840d   Kload   Init
443
444
  
  		$this->assertEquals($this->dataLong, $decrypt);
a293d369c   Kload   Update sources to...
445
446
  		$newFolder = '/newfolder' . uniqid();
  		$newFilename = 'tmp-new-' . uniqid();
03e52840d   Kload   Init
447
448
449
450
451
  		$view = new \OC\Files\View('/' . $this->userId . '/files');
  		$view->mkdir($newFolder);
  		$view->rename($filename, $newFolder . '/' . $newFilename);
  
  		// Get file decrypted contents
31b7f2792   Kload   Upgrade to ownclo...
452
  		$newDecrypt = file_get_contents('crypt:///' . $this->userId . '/files/' . $newFolder . '/' . $newFilename);
03e52840d   Kload   Init
453
454
455
456
457
458
  
  		$this->assertEquals($this->dataLong, $newDecrypt);
  
  		// tear down
  		$view->unlink($newFolder);
  	}
31b7f2792   Kload   Upgrade to ownclo...
459
460
461
  	/**
  	 * @medium
  	 */
03e52840d   Kload   Init
462
463
464
  	function testMoveFolder() {
  
  		$view = new \OC\Files\View('/' . $this->userId . '/files');
a293d369c   Kload   Update sources to...
465
466
  		$filename = '/tmp-' . uniqid();
  		$folder = '/folder' . uniqid();
03e52840d   Kload   Init
467
468
469
470
  
  		$view->mkdir($folder);
  
  		// Save long data as encrypted file using stream wrapper
31b7f2792   Kload   Upgrade to ownclo...
471
  		$cryptedFile = file_put_contents('crypt:///' . $this->userId . '/files/' . $folder . $filename, $this->dataLong);
03e52840d   Kload   Init
472
473
474
475
476
  
  		// Test that data was successfully written
  		$this->assertTrue(is_int($cryptedFile));
  
  		// Get file decrypted contents
31b7f2792   Kload   Upgrade to ownclo...
477
  		$decrypt = file_get_contents('crypt:///' . $this->userId . '/files/' . $folder . $filename);
03e52840d   Kload   Init
478
479
  
  		$this->assertEquals($this->dataLong, $decrypt);
a293d369c   Kload   Update sources to...
480
  		$newFolder = '/newfolder/subfolder' . uniqid();
03e52840d   Kload   Init
481
482
483
484
485
  		$view->mkdir('/newfolder');
  
  		$view->rename($folder, $newFolder);
  
  		// Get file decrypted contents
31b7f2792   Kload   Upgrade to ownclo...
486
  		$newDecrypt = file_get_contents('crypt:///' . $this->userId . '/files/' . $newFolder . $filename);
03e52840d   Kload   Init
487
488
489
490
491
492
493
  
  		$this->assertEquals($this->dataLong, $newDecrypt);
  
  		// tear down
  		$view->unlink($newFolder);
  		$view->unlink('/newfolder');
  	}
31b7f2792   Kload   Upgrade to ownclo...
494
495
496
  	/**
  	 * @medium
  	 */
03e52840d   Kload   Init
497
  	function testChangePassphrase() {
a293d369c   Kload   Update sources to...
498
  		$filename = 'tmp-' . uniqid();
03e52840d   Kload   Init
499
500
  
  		// Save long data as encrypted file using stream wrapper
31b7f2792   Kload   Upgrade to ownclo...
501
  		$cryptedFile = file_put_contents('crypt:///' . $this->userId . '/files/' . $filename, $this->dataLong);
03e52840d   Kload   Init
502
503
504
505
506
  
  		// Test that data was successfully written
  		$this->assertTrue(is_int($cryptedFile));
  
  		// Get file decrypted contents
31b7f2792   Kload   Upgrade to ownclo...
507
  		$decrypt = file_get_contents('crypt:///' . $this->userId . '/files/' . $filename);
03e52840d   Kload   Init
508
509
510
511
512
513
514
515
516
517
518
519
  
  		$this->assertEquals($this->dataLong, $decrypt);
  
  		// change password
  		\OC_User::setPassword($this->userId, 'test', null);
  
  		// relogin
  		$params['uid'] = $this->userId;
  		$params['password'] = 'test';
  		OCA\Encryption\Hooks::login($params);
  
  		// Get file decrypted contents
31b7f2792   Kload   Upgrade to ownclo...
520
  		$newDecrypt = file_get_contents('crypt:///' . $this->userId . '/files/' . $filename);
03e52840d   Kload   Init
521
522
523
524
525
526
527
528
529
  
  		$this->assertEquals($this->dataLong, $newDecrypt);
  
  		// tear down
  		// change password back
  		\OC_User::setPassword($this->userId, $this->pass);
  		$view = new \OC\Files\View('/' . $this->userId . '/files');
  		$view->unlink($filename);
  	}
31b7f2792   Kload   Upgrade to ownclo...
530
531
532
  	/**
  	 * @medium
  	 */
03e52840d   Kload   Init
533
  	function testViewFilePutAndGetContents() {
a293d369c   Kload   Update sources to...
534
  		$filename = '/tmp-' . uniqid();
03e52840d   Kload   Init
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
  		$view = new \OC\Files\View('/' . $this->userId . '/files');
  
  		// Save short data as encrypted file using stream wrapper
  		$cryptedFile = $view->file_put_contents($filename, $this->dataShort);
  
  		// Test that data was successfully written
  		$this->assertTrue(is_int($cryptedFile));
  
  		// Get file decrypted contents
  		$decrypt = $view->file_get_contents($filename);
  
  		$this->assertEquals($this->dataShort, $decrypt);
  
  		// Save long data as encrypted file using stream wrapper
  		$cryptedFileLong = $view->file_put_contents($filename, $this->dataLong);
  
  		// Test that data was successfully written
  		$this->assertTrue(is_int($cryptedFileLong));
  
  		// Get file decrypted contents
  		$decryptLong = $view->file_get_contents($filename);
  
  		$this->assertEquals($this->dataLong, $decryptLong);
  
  		// tear down
  		$view->unlink($filename);
  	}
31b7f2792   Kload   Upgrade to ownclo...
562
563
564
  	/**
  	 * @large
  	 */
03e52840d   Kload   Init
565
  	function testTouchExistingFile() {
a293d369c   Kload   Update sources to...
566
  		$filename = '/tmp-' . uniqid();
03e52840d   Kload   Init
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
  		$view = new \OC\Files\View('/' . $this->userId . '/files');
  
  		// Save short data as encrypted file using stream wrapper
  		$cryptedFile = $view->file_put_contents($filename, $this->dataShort);
  
  		// Test that data was successfully written
  		$this->assertTrue(is_int($cryptedFile));
  
  		$view->touch($filename);
  
  		// Get file decrypted contents
  		$decrypt = $view->file_get_contents($filename);
  
  		$this->assertEquals($this->dataShort, $decrypt);
  
  		// tear down
  		$view->unlink($filename);
  	}
31b7f2792   Kload   Upgrade to ownclo...
585
586
587
  	/**
  	 * @medium
  	 */
03e52840d   Kload   Init
588
  	function testTouchFile() {
a293d369c   Kload   Update sources to...
589
  		$filename = '/tmp-' . uniqid();
03e52840d   Kload   Init
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
  		$view = new \OC\Files\View('/' . $this->userId . '/files');
  
  		$view->touch($filename);
  
  		// Save short data as encrypted file using stream wrapper
  		$cryptedFile = $view->file_put_contents($filename, $this->dataShort);
  
  		// Test that data was successfully written
  		$this->assertTrue(is_int($cryptedFile));
  
  		// Get file decrypted contents
  		$decrypt = $view->file_get_contents($filename);
  
  		$this->assertEquals($this->dataShort, $decrypt);
  
  		// tear down
  		$view->unlink($filename);
  	}
31b7f2792   Kload   Upgrade to ownclo...
608
609
610
  	/**
  	 * @medium
  	 */
03e52840d   Kload   Init
611
  	function testFopenFile() {
a293d369c   Kload   Update sources to...
612
  		$filename = '/tmp-' . uniqid();
03e52840d   Kload   Init
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
  		$view = new \OC\Files\View('/' . $this->userId . '/files');
  
  		// Save short data as encrypted file using stream wrapper
  		$cryptedFile = $view->file_put_contents($filename, $this->dataShort);
  
  		// Test that data was successfully written
  		$this->assertTrue(is_int($cryptedFile));
  
  		$handle = $view->fopen($filename, 'r');
  
  		// Get file decrypted contents
  		$decrypt = fgets($handle);
  
  		$this->assertEquals($this->dataShort, $decrypt);
  
  		// tear down
  		$view->unlink($filename);
  	}
31b7f2792   Kload   Upgrade to ownclo...
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
  
  
  	/**
  	 * @brief encryption using legacy blowfish method
  	 * @param $data string data to encrypt
  	 * @param $passwd string password
  	 * @return string
  	 */
  	function legacyEncrypt($data, $passwd) {
  
  		$bf = new \Crypt_Blowfish($passwd);
  		$crypted = $bf->encrypt($data);
  
  		return $crypted;
  	}
03e52840d   Kload   Init
646
  }