setDescription('Insert missing calendarchanges rows for existing events'); $this->addArgument( 'user', InputArgument::OPTIONAL, 'User to fix calendar sync tokens for, if omitted all users will be fixed', null, ); } public function execute(InputInterface $input, OutputInterface $output): int { $userArg = $input->getArgument('user'); if ($userArg !== null) { $user = $this->userManager->get($userArg); if ($user === null) { $output->writeln("User $userArg does not exist"); return self::FAILURE; } $this->fixUserCalendars($user); } else { $progress = new ProgressBar($output); $this->userManager->callForSeenUsers(function (IUser $user) use ($progress): void { $this->fixUserCalendars($user, $progress); }); $progress->finish(); } $output->writeln(''); return self::SUCCESS; } private function fixUserCalendars(IUser $user, ?ProgressBar $progress = null): void { $calendars = $this->calDavBackend->getCalendarsForUser('principals/users/' . $user->getUID()); foreach ($calendars as $calendar) { $this->calDavBackend->restoreChanges($calendar['id']); } if ($progress !== null) { $progress->advance(); } } } rome-Herbinet-better-new-wording-better-than-delete-and-unshare Nextcloud server, a safe home for all your data: https://github.com/nextcloud/serverwww-data
aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_encryption/tests/encryption.php
blob: 89397f6ef2c066f2856470cc6a20fd048e17a8b0 (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
62
63
64
65
66
67
68
69
70
71
72
<?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_Encryption extends UnitTestCase {
	function testEncryption() {
		$key=uniqid();
		$file=OC::$SERVERROOT.'/3rdparty/MDB2.php';
		$source=file_get_contents($file); //nice large text file
		$encrypted=OC_Crypt::encrypt($source,$key);
		$decrypted=OC_Crypt::decrypt($encrypted,$key);
		$decrypted=rtrim($decrypted, "\0");
		$this->assertNotEqual($encrypted,$source);
		$this->assertEqual($decrypted,$source);

		$chunk=substr($source,0,8192);
		$encrypted=OC_Crypt::encrypt($chunk,$key);
		$this->assertEqual(strlen($chunk),strlen($encrypted));
		$decrypted=OC_Crypt::decrypt($encrypted,$key);
		$decrypted=rtrim($decrypted, "\0");
		$this->assertEqual($decrypted,$chunk);

		$encrypted=OC_Crypt::blockEncrypt($source,$key);
		$decrypted=OC_Crypt::blockDecrypt($encrypted,$key);
		$this->assertNotEqual($encrypted,$source);
		$this->assertEqual($decrypted,$source);

		$tmpFileEncrypted=OCP\Files::tmpFile();
		OC_Crypt::encryptfile($file,$tmpFileEncrypted,$key);
		$encrypted=file_get_contents($tmpFileEncrypted);
		$decrypted=OC_Crypt::blockDecrypt($encrypted,$key);
		$this->assertNotEqual($encrypted,$source);
		$this->assertEqual($decrypted,$source);

		$tmpFileDecrypted=OCP\Files::tmpFile();
		OC_Crypt::decryptfile($tmpFileEncrypted,$tmpFileDecrypted,$key);
		$decrypted=file_get_contents($tmpFileDecrypted);
		$this->assertEqual($decrypted,$source);

		$file=OC::$SERVERROOT.'/core/img/weather-clear.png';
		$source=file_get_contents($file); //binary file
		$encrypted=OC_Crypt::encrypt($source,$key);
		$decrypted=OC_Crypt::decrypt($encrypted,$key);
		$decrypted=rtrim($decrypted, "\0");
		$this->assertEqual($decrypted,$source);

		$encrypted=OC_Crypt::blockEncrypt($source,$key);
		$decrypted=OC_Crypt::blockDecrypt($encrypted,$key);
		$this->assertEqual($decrypted,$source);

	}

	function testBinary() {
		$key=uniqid();

		$file=__DIR__.'/binary';
		$source=file_get_contents($file); //binary file
		$encrypted=OC_Crypt::encrypt($source,$key);
		$decrypted=OC_Crypt::decrypt($encrypted,$key);

		$decrypted=rtrim($decrypted, "\0");
		$this->assertEqual($decrypted,$source);

		$encrypted=OC_Crypt::blockEncrypt($source,$key);
		$decrypted=OC_Crypt::blockDecrypt($encrypted,$key,strlen($source));
		$this->assertEqual($decrypted,$source);
	}
}