Blame view

sources/apps/files_encryption/tests/hooks.php 18 KB
a293d369c   Kload   Update sources to...
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
  <?php
  /**
   * ownCloud
   *
   * @author Bjoern Schiessle
   * @copyright 2014 Bjoern Schiessle <schiessle@owncloud.com>
   *
   * This library is free software; you can redistribute it and/or
   * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
   * License as published by the Free Software Foundation; either
   * version 3 of the License, or any later version.
   *
   * This library is distributed in the hope that it will be useful,
   * but WITHOUT ANY WARRANTY; without even the implied warranty of
   * 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 along with this library.  If not, see <http://www.gnu.org/licenses/>.
   *
   */
  
  require_once __DIR__ . '/../../../lib/base.php';
  require_once __DIR__ . '/../lib/crypt.php';
  require_once __DIR__ . '/../lib/keymanager.php';
  require_once __DIR__ . '/../lib/stream.php';
  require_once __DIR__ . '/../lib/util.php';
  require_once __DIR__ . '/../appinfo/app.php';
  require_once __DIR__ . '/util.php';
  
  use OCA\Encryption;
  
  /**
   * Class Test_Encryption_Hooks
6d9380f96   Cédric Dupont   Update sources OC...
35
   * this class provide basic hook app tests
a293d369c   Kload   Update sources to...
36
37
38
39
40
41
42
   */
  class Test_Encryption_Hooks extends \PHPUnit_Framework_TestCase {
  
  	const TEST_ENCRYPTION_HOOKS_USER1 = "test-encryption-hooks-user1";
  	const TEST_ENCRYPTION_HOOKS_USER2 = "test-encryption-hooks-user2";
  
  	/**
6d9380f96   Cédric Dupont   Update sources OC...
43
  	 * @var \OC\Files\View
a293d369c   Kload   Update sources to...
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
  	 */
  	public $user1View;     // view on /data/user1/files
  	public $user2View;     // view on /data/user2/files
  	public $rootView; // view on /data/user
  	public $data;
  	public $filename;
  	public $folder;
  
  	public static function setUpBeforeClass() {
  		// reset backend
  		\OC_User::clearBackends();
  		\OC_User::useBackend('database');
  
  		\OC_Hook::clear('OC_Filesystem');
  		\OC_Hook::clear('OC_User');
  
  		// clear share hooks
  		\OC_Hook::clear('OCP\\Share');
  		\OC::registerShareHooks();
  		\OCP\Util::connectHook('OC_Filesystem', 'setup', '\OC\Files\Storage\Shared', 'setup');
  
  		// Filesystem related hooks
  		\OCA\Encryption\Helper::registerFilesystemHooks();
  
  		// Sharing related hooks
  		\OCA\Encryption\Helper::registerShareHooks();
  
  		// clear and register proxies
  		\OC_FileProxy::clearProxies();
  		\OC_FileProxy::register(new OCA\Encryption\Proxy());
  
  		// create test user
  		\Test_Encryption_Util::loginHelper(\Test_Encryption_Hooks::TEST_ENCRYPTION_HOOKS_USER1, true);
  		\Test_Encryption_Util::loginHelper(\Test_Encryption_Hooks::TEST_ENCRYPTION_HOOKS_USER2, true);
  	}
  
  	function setUp() {
  		// set user id
  		\Test_Encryption_Util::loginHelper(\Test_Encryption_Hooks::TEST_ENCRYPTION_HOOKS_USER1);
  		\OC_User::setUserId(\Test_Encryption_Hooks::TEST_ENCRYPTION_HOOKS_USER1);
  
  		// init filesystem view
6d9380f96   Cédric Dupont   Update sources OC...
86
87
88
  		$this->user1View = new \OC\Files\View('/'. \Test_Encryption_Hooks::TEST_ENCRYPTION_HOOKS_USER1 . '/files');
  		$this->user2View = new \OC\Files\View('/'. \Test_Encryption_Hooks::TEST_ENCRYPTION_HOOKS_USER2 . '/files');
  		$this->rootView = new \OC\Files\View('/');
a293d369c   Kload   Update sources to...
89
90
91
92
93
94
95
96
97
98
99
100
101
  
  		// init short data
  		$this->data = 'hats';
  		$this->filename = 'enc_hooks_tests-' . uniqid() . '.txt';
  		$this->folder = 'enc_hooks_tests_folder-' . uniqid();
  
  	}
  
  	public static function tearDownAfterClass() {
  		// cleanup test user
  		\OC_User::deleteUser(\Test_Encryption_Hooks::TEST_ENCRYPTION_HOOKS_USER1);
  		\OC_User::deleteUser(\Test_Encryption_Hooks::TEST_ENCRYPTION_HOOKS_USER2);
  	}
6d9380f96   Cédric Dupont   Update sources OC...
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
  	function testDisableHook() {
  		// encryption is enabled and running so we should have some user specific
  		// settings in oc_preferences
  		$query = \OC_DB::prepare('SELECT * FROM `*PREFIX*preferences` WHERE `appid` = ?');
  		$result = $query->execute(array('files_encryption'));
  		$row = $result->fetchRow();
  		$this->assertTrue(is_array($row));
  
  		// disabling the app should delete all user specific settings
  		\OCA\Encryption\Hooks::preDisable(array('app' => 'files_encryption'));
  
  		// check if user specific settings for the encryption app are really gone
  		$query = \OC_DB::prepare('SELECT * FROM `*PREFIX*preferences` WHERE `appid` = ?');
  		$result = $query->execute(array('files_encryption'));
  		$row = $result->fetchRow();
  		$this->assertFalse($row);
  
  		// relogin user to initialize the encryption again
  		$user =  \OCP\User::getUser();
  		\Test_Encryption_Util::loginHelper($user);
  
  	}
a293d369c   Kload   Update sources to...
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
  	function testDeleteHooks() {
  
  		// remember files_trashbin state
  		$stateFilesTrashbin = OC_App::isEnabled('files_trashbin');
  
  		// we want to tests with app files_trashbin disabled
  		\OC_App::disable('files_trashbin');
  
  		// make sure that the trash bin is disabled
  		$this->assertFalse(\OC_APP::isEnabled('files_trashbin'));
  
  		$this->user1View->file_put_contents($this->filename, $this->data);
  
  		// check if all keys are generated
  		$this->assertTrue($this->rootView->file_exists(
  			self::TEST_ENCRYPTION_HOOKS_USER1 . '/files_encryption/share-keys/'
  			. $this->filename . '.' . \Test_Encryption_Hooks::TEST_ENCRYPTION_HOOKS_USER1 . '.shareKey'));
  		$this->assertTrue($this->rootView->file_exists(
  			self::TEST_ENCRYPTION_HOOKS_USER1 . '/files_encryption/keyfiles/' . $this->filename . '.key'));
  
  
  		\Test_Encryption_Util::logoutHelper();
  		\Test_Encryption_Util::loginHelper(\Test_Encryption_Hooks::TEST_ENCRYPTION_HOOKS_USER2);
  		\OC_User::setUserId(\Test_Encryption_Hooks::TEST_ENCRYPTION_HOOKS_USER2);
  
  
  		$this->user2View->file_put_contents($this->filename, $this->data);
  
  		// check if all keys are generated
  		$this->assertTrue($this->rootView->file_exists(
  			self::TEST_ENCRYPTION_HOOKS_USER2 . '/files_encryption/share-keys/'
  			. $this->filename . '.' . \Test_Encryption_Hooks::TEST_ENCRYPTION_HOOKS_USER2 . '.shareKey'));
  		$this->assertTrue($this->rootView->file_exists(
  			self::TEST_ENCRYPTION_HOOKS_USER2 . '/files_encryption/keyfiles/' . $this->filename . '.key'));
  
  
  		// create a dummy file that we can delete something outside of data/user/files
  		// in this case no share or file keys should be deleted
  		$this->rootView->file_put_contents(self::TEST_ENCRYPTION_HOOKS_USER2 . "/" . $this->filename, $this->data);
  
  		// delete dummy file outside of data/user/files
  		$this->rootView->unlink(self::TEST_ENCRYPTION_HOOKS_USER2 . "/" . $this->filename);
  
  		// all keys should still exist
  		$this->assertTrue($this->rootView->file_exists(
  			self::TEST_ENCRYPTION_HOOKS_USER2 . '/files_encryption/share-keys/'
  			. $this->filename . '.' . \Test_Encryption_Hooks::TEST_ENCRYPTION_HOOKS_USER2 . '.shareKey'));
  		$this->assertTrue($this->rootView->file_exists(
  			self::TEST_ENCRYPTION_HOOKS_USER2 . '/files_encryption/keyfiles/' . $this->filename . '.key'));
  
  
  		// delete the file in data/user/files
  		// now the correspondig share and file keys from user2 should be deleted
  		$this->user2View->unlink($this->filename);
  
  		// check if keys from user2 are really deleted
  		$this->assertFalse($this->rootView->file_exists(
  			self::TEST_ENCRYPTION_HOOKS_USER2 . '/files_encryption/share-keys/'
  			. $this->filename . '.' . \Test_Encryption_Hooks::TEST_ENCRYPTION_HOOKS_USER2 . '.shareKey'));
  		$this->assertFalse($this->rootView->file_exists(
  			self::TEST_ENCRYPTION_HOOKS_USER2 . '/files_encryption/keyfiles/' . $this->filename . '.key'));
  
  		// but user1 keys should still exist
  		$this->assertTrue($this->rootView->file_exists(
  				self::TEST_ENCRYPTION_HOOKS_USER1 . '/files_encryption/share-keys/'
  				. $this->filename . '.' . \Test_Encryption_Hooks::TEST_ENCRYPTION_HOOKS_USER1 . '.shareKey'));
  		$this->assertTrue($this->rootView->file_exists(
  				self::TEST_ENCRYPTION_HOOKS_USER1 . '/files_encryption/keyfiles/' . $this->filename . '.key'));
  
  		if ($stateFilesTrashbin) {
  			OC_App::enable('files_trashbin');
  		}
  		else {
  			OC_App::disable('files_trashbin');
  		}
  	}
  
  	function testDeleteHooksForSharedFiles() {
  
  		\Test_Encryption_Util::logoutHelper();
  		\Test_Encryption_Util::loginHelper(\Test_Encryption_Hooks::TEST_ENCRYPTION_HOOKS_USER1);
  		\OC_User::setUserId(\Test_Encryption_Hooks::TEST_ENCRYPTION_HOOKS_USER1);
  
  		// remember files_trashbin state
  		$stateFilesTrashbin = OC_App::isEnabled('files_trashbin');
  
  		// we want to tests with app files_trashbin disabled
  		\OC_App::disable('files_trashbin');
  
  		// make sure that the trash bin is disabled
  		$this->assertFalse(\OC_APP::isEnabled('files_trashbin'));
  
  		$this->user1View->file_put_contents($this->filename, $this->data);
  
  		// check if all keys are generated
  		$this->assertTrue($this->rootView->file_exists(
  			self::TEST_ENCRYPTION_HOOKS_USER1 . '/files_encryption/share-keys/'
  			. $this->filename . '.' . \Test_Encryption_Hooks::TEST_ENCRYPTION_HOOKS_USER1 . '.shareKey'));
  		$this->assertTrue($this->rootView->file_exists(
  			self::TEST_ENCRYPTION_HOOKS_USER1 . '/files_encryption/keyfiles/' . $this->filename . '.key'));
  
  		// get the file info from previous created file
  		$fileInfo = $this->user1View->getFileInfo($this->filename);
  
  		// check if we have a valid file info
6d9380f96   Cédric Dupont   Update sources OC...
229
  		$this->assertTrue($fileInfo instanceof \OC\Files\FileInfo);
a293d369c   Kload   Update sources to...
230
231
232
233
234
235
236
237
238
239
240
241
  
  		// share the file with user2
  		\OCP\Share::shareItem('file', $fileInfo['fileid'], \OCP\Share::SHARE_TYPE_USER, self::TEST_ENCRYPTION_HOOKS_USER2, OCP\PERMISSION_ALL);
  
  		// check if new share key exists
  		$this->assertTrue($this->rootView->file_exists(
  			self::TEST_ENCRYPTION_HOOKS_USER1 . '/files_encryption/share-keys/'
  			. $this->filename . '.' . \Test_Encryption_Hooks::TEST_ENCRYPTION_HOOKS_USER2 . '.shareKey'));
  
  		\Test_Encryption_Util::logoutHelper();
  		\Test_Encryption_Util::loginHelper(\Test_Encryption_Hooks::TEST_ENCRYPTION_HOOKS_USER2);
  		\OC_User::setUserId(\Test_Encryption_Hooks::TEST_ENCRYPTION_HOOKS_USER2);
6d9380f96   Cédric Dupont   Update sources OC...
242
  		// user2 update the shared file
a293d369c   Kload   Update sources to...
243
  		$this->user2View->file_put_contents($this->filename, $this->data);
6d9380f96   Cédric Dupont   Update sources OC...
244
245
  		// keys should be stored at user1s dir, not in user2s
  		$this->assertFalse($this->rootView->file_exists(
a293d369c   Kload   Update sources to...
246
247
  			self::TEST_ENCRYPTION_HOOKS_USER2 . '/files_encryption/share-keys/'
  			. $this->filename . '.' . \Test_Encryption_Hooks::TEST_ENCRYPTION_HOOKS_USER2 . '.shareKey'));
6d9380f96   Cédric Dupont   Update sources OC...
248
  		$this->assertFalse($this->rootView->file_exists(
a293d369c   Kload   Update sources to...
249
250
251
  			self::TEST_ENCRYPTION_HOOKS_USER2 . '/files_encryption/keyfiles/' . $this->filename . '.key'));
  
  		// delete the Shared file from user1 in data/user2/files/Shared
6d9380f96   Cédric Dupont   Update sources OC...
252
  		$result = $this->user2View->unlink($this->filename);
a293d369c   Kload   Update sources to...
253

6d9380f96   Cédric Dupont   Update sources OC...
254
255
256
257
  		$this->assertTrue($result);
  
  		// share key for user2 from user1s home should be gone, all other keys should still exists
  		$this->assertTrue($this->rootView->file_exists(
a293d369c   Kload   Update sources to...
258
259
260
261
262
  			self::TEST_ENCRYPTION_HOOKS_USER1 . '/files_encryption/share-keys/'
  			. $this->filename . '.' . \Test_Encryption_Hooks::TEST_ENCRYPTION_HOOKS_USER1 . '.shareKey'));
  		$this->assertFalse($this->rootView->file_exists(
  				self::TEST_ENCRYPTION_HOOKS_USER1 . '/files_encryption/share-keys/'
  				. $this->filename . '.' . \Test_Encryption_Hooks::TEST_ENCRYPTION_HOOKS_USER2 . '.shareKey'));
a293d369c   Kload   Update sources to...
263
  		$this->assertTrue($this->rootView->file_exists(
6d9380f96   Cédric Dupont   Update sources OC...
264
  			self::TEST_ENCRYPTION_HOOKS_USER1 . '/files_encryption/keyfiles/' . $this->filename . '.key'));
a293d369c   Kload   Update sources to...
265
266
  
  		// cleanup
a293d369c   Kload   Update sources to...
267
268
269
  		\Test_Encryption_Util::logoutHelper();
  		\Test_Encryption_Util::loginHelper(\Test_Encryption_Hooks::TEST_ENCRYPTION_HOOKS_USER1);
  		\OC_User::setUserId(\Test_Encryption_Hooks::TEST_ENCRYPTION_HOOKS_USER1);
a293d369c   Kload   Update sources to...
270
271
272
273
274
275
276
277
278
  		if ($stateFilesTrashbin) {
  			OC_App::enable('files_trashbin');
  		}
  		else {
  			OC_App::disable('files_trashbin');
  		}
  	}
  
  	/**
6d9380f96   Cédric Dupont   Update sources OC...
279
  	 * test rename operation
a293d369c   Kload   Update sources to...
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
  	 */
  	function testRenameHook() {
  
  		// save file with content
  		$cryptedFile = file_put_contents('crypt:///' . self::TEST_ENCRYPTION_HOOKS_USER1 . '/files/' . $this->filename, $this->data);
  
  		// test that data was successfully written
  		$this->assertTrue(is_int($cryptedFile));
  
  		// check if keys exists
  		$this->assertTrue($this->rootView->file_exists(
  			'/' . self::TEST_ENCRYPTION_HOOKS_USER1 . '/files_encryption/share-keys/'
  			. $this->filename . '.' . self::TEST_ENCRYPTION_HOOKS_USER1 . '.shareKey'));
  
  		$this->assertTrue($this->rootView->file_exists(
  			'/' . self::TEST_ENCRYPTION_HOOKS_USER1 . '/files_encryption/keyfiles/'
  			. $this->filename . '.key'));
6d9380f96   Cédric Dupont   Update sources OC...
297
  		// make subfolder and sub-subfolder
a293d369c   Kload   Update sources to...
298
  		$this->rootView->mkdir('/' . self::TEST_ENCRYPTION_HOOKS_USER1 . '/files/' . $this->folder);
6d9380f96   Cédric Dupont   Update sources OC...
299
  		$this->rootView->mkdir('/' . self::TEST_ENCRYPTION_HOOKS_USER1 . '/files/' . $this->folder . '/' . $this->folder);
a293d369c   Kload   Update sources to...
300

6d9380f96   Cédric Dupont   Update sources OC...
301
  		$this->assertTrue($this->rootView->is_dir('/' . self::TEST_ENCRYPTION_HOOKS_USER1 . '/files/' . $this->folder . '/' . $this->folder));
a293d369c   Kload   Update sources to...
302

6d9380f96   Cédric Dupont   Update sources OC...
303
  		// move the file to the sub-subfolder
a293d369c   Kload   Update sources to...
304
305
  		$root = $this->rootView->getRoot();
  		$this->rootView->chroot('/' . self::TEST_ENCRYPTION_HOOKS_USER1 . '/files/');
6d9380f96   Cédric Dupont   Update sources OC...
306
  		$this->rootView->rename($this->filename, '/' . $this->folder . '/' . $this->folder . '/' . $this->filename);
a293d369c   Kload   Update sources to...
307
308
309
  		$this->rootView->chroot($root);
  
  		$this->assertFalse($this->rootView->file_exists('/' . self::TEST_ENCRYPTION_HOOKS_USER1 . '/files/' . $this->filename));
6d9380f96   Cédric Dupont   Update sources OC...
310
  		$this->assertTrue($this->rootView->file_exists('/' . self::TEST_ENCRYPTION_HOOKS_USER1 . '/files/' . $this->folder . '/' . $this->folder . '/' . $this->filename));
a293d369c   Kload   Update sources to...
311
312
313
314
315
316
317
318
319
320
  
  		// keys should be renamed too
  		$this->assertFalse($this->rootView->file_exists(
  			'/' . self::TEST_ENCRYPTION_HOOKS_USER1 . '/files_encryption/share-keys/'
  			. $this->filename . '.' . self::TEST_ENCRYPTION_HOOKS_USER1 . '.shareKey'));
  		$this->assertFalse($this->rootView->file_exists(
  			'/' . self::TEST_ENCRYPTION_HOOKS_USER1 . '/files_encryption/keyfiles/'
  			. $this->filename . '.key'));
  
  		$this->assertTrue($this->rootView->file_exists(
6d9380f96   Cédric Dupont   Update sources OC...
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
  			'/' . self::TEST_ENCRYPTION_HOOKS_USER1 . '/files_encryption/share-keys/' . $this->folder . '/' . $this->folder . '/'
  			. $this->filename . '.' . self::TEST_ENCRYPTION_HOOKS_USER1 . '.shareKey'));
  		$this->assertTrue($this->rootView->file_exists(
  			'/' . self::TEST_ENCRYPTION_HOOKS_USER1 . '/files_encryption/keyfiles/' . $this->folder . '/' . $this->folder . '/'
  			. $this->filename . '.key'));
  
  		// cleanup
  		$this->rootView->unlink('/' . self::TEST_ENCRYPTION_HOOKS_USER1 . '/files/' . $this->folder);
  	}
  
  	/**
  	 * test rename operation
  	 */
  	function testCopyHook() {
  
  		// save file with content
  		$cryptedFile = file_put_contents('crypt:///' . self::TEST_ENCRYPTION_HOOKS_USER1 . '/files/' . $this->filename, $this->data);
  
  		// test that data was successfully written
  		$this->assertTrue(is_int($cryptedFile));
  
  		// check if keys exists
  		$this->assertTrue($this->rootView->file_exists(
  			'/' . self::TEST_ENCRYPTION_HOOKS_USER1 . '/files_encryption/share-keys/'
  			. $this->filename . '.' . self::TEST_ENCRYPTION_HOOKS_USER1 . '.shareKey'));
  
  		$this->assertTrue($this->rootView->file_exists(
  			'/' . self::TEST_ENCRYPTION_HOOKS_USER1 . '/files_encryption/keyfiles/'
  			. $this->filename . '.key'));
  
  		// make subfolder and sub-subfolder
  		$this->rootView->mkdir('/' . self::TEST_ENCRYPTION_HOOKS_USER1 . '/files/' . $this->folder);
  		$this->rootView->mkdir('/' . self::TEST_ENCRYPTION_HOOKS_USER1 . '/files/' . $this->folder . '/' . $this->folder);
  
  		$this->assertTrue($this->rootView->is_dir('/' . self::TEST_ENCRYPTION_HOOKS_USER1 . '/files/' . $this->folder . '/' . $this->folder));
  
  		// copy the file to the sub-subfolder
  		\OC\Files\Filesystem::copy($this->filename, '/' . $this->folder . '/' . $this->folder . '/' . $this->filename);
  
  		$this->assertTrue($this->rootView->file_exists('/' . self::TEST_ENCRYPTION_HOOKS_USER1 . '/files/' . $this->filename));
  		$this->assertTrue($this->rootView->file_exists('/' . self::TEST_ENCRYPTION_HOOKS_USER1 . '/files/' . $this->folder . '/' . $this->folder . '/' . $this->filename));
  
  		// keys should be copied too
  		$this->assertTrue($this->rootView->file_exists(
  			'/' . self::TEST_ENCRYPTION_HOOKS_USER1 . '/files_encryption/share-keys/'
a293d369c   Kload   Update sources to...
366
367
  			. $this->filename . '.' . self::TEST_ENCRYPTION_HOOKS_USER1 . '.shareKey'));
  		$this->assertTrue($this->rootView->file_exists(
6d9380f96   Cédric Dupont   Update sources OC...
368
369
370
371
372
373
374
375
  			'/' . self::TEST_ENCRYPTION_HOOKS_USER1 . '/files_encryption/keyfiles/'
  			. $this->filename . '.key'));
  
  		$this->assertTrue($this->rootView->file_exists(
  			'/' . self::TEST_ENCRYPTION_HOOKS_USER1 . '/files_encryption/share-keys/' . $this->folder . '/' . $this->folder . '/'
  			. $this->filename . '.' . self::TEST_ENCRYPTION_HOOKS_USER1 . '.shareKey'));
  		$this->assertTrue($this->rootView->file_exists(
  			'/' . self::TEST_ENCRYPTION_HOOKS_USER1 . '/files_encryption/keyfiles/' . $this->folder . '/' . $this->folder . '/'
a293d369c   Kload   Update sources to...
376
377
378
379
  			. $this->filename . '.key'));
  
  		// cleanup
  		$this->rootView->unlink('/' . self::TEST_ENCRYPTION_HOOKS_USER1 . '/files/' . $this->folder);
6d9380f96   Cédric Dupont   Update sources OC...
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
  		$this->rootView->unlink('/' . self::TEST_ENCRYPTION_HOOKS_USER1 . '/files/' . $this->filename);
  	}
  
  	/**
  	 * @brief replacing encryption keys during password change should be allowed
  	 *        until the user logged in for the first time
  	 */
  	public function testSetPassphrase() {
  
  		$view = new \OC\Files\View();
  
  		// set user password for the first time
  		\OCA\Encryption\Hooks::postCreateUser(array('uid' => 'newUser', 'password' => 'newUserPassword'));
  
  		$this->assertTrue($view->file_exists('public-keys/newUser.public.key'));
  		$this->assertTrue($view->file_exists('newUser/files_encryption/newUser.private.key'));
  
  		// check if we are able to decrypt the private key
  		$encryptedKey = \OCA\Encryption\Keymanager::getPrivateKey($view, 'newUser');
  		$privateKey = \OCA\Encryption\Crypt::decryptPrivateKey($encryptedKey, 'newUserPassword');
  		$this->assertTrue(is_string($privateKey));
  
  		// change the password before the user logged-in for the first time,
  		// we can replace the encryption keys
  		\OCA\Encryption\Hooks::setPassphrase(array('uid' => 'newUser', 'password' => 'passwordChanged'));
  
  		$encryptedKey = \OCA\Encryption\Keymanager::getPrivateKey($view, 'newUser');
  		$privateKey = \OCA\Encryption\Crypt::decryptPrivateKey($encryptedKey, 'passwordChanged');
  		$this->assertTrue(is_string($privateKey));
  
  		// now create a files folder to simulate a already used account
  		$view->mkdir('/newUser/files');
  
  		// change the password after the user logged in, now the password should not change
  		\OCA\Encryption\Hooks::setPassphrase(array('uid' => 'newUser', 'password' => 'passwordChanged2'));
  
  		$encryptedKey = \OCA\Encryption\Keymanager::getPrivateKey($view, 'newUser');
  		$privateKey = \OCA\Encryption\Crypt::decryptPrivateKey($encryptedKey, 'passwordChanged2');
  		$this->assertFalse($privateKey);
  
  		$privateKey = \OCA\Encryption\Crypt::decryptPrivateKey($encryptedKey, 'passwordChanged');
  		$this->assertTrue(is_string($privateKey));
a293d369c   Kload   Update sources to...
422
423
424
  	}
  
  }