aboutsummaryrefslogtreecommitdiffstats
path: root/tests/lib/Files/FilenameValidatorTest.php
blob: 45f681bd45302d59109511e4a3fa84015c79a590 (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
73
74
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
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
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
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
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
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
366
367
368
369
370
371
372
373
374
375
376
377
<?php

declare(strict_types=1);

/*!
 * SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
 * SPDX-License-Identifier: AGPL-3.0-or-later
 */

namespace Test\Files;

use OC\Files\FilenameValidator;
use OCP\Files\EmptyFileNameException;
use OCP\Files\FileNameTooLongException;
use OCP\Files\InvalidCharacterInPathException;
use OCP\Files\InvalidDirectoryException;
use OCP\Files\InvalidPathException;
use OCP\Files\ReservedWordException;
use OCP\IConfig;
use OCP\IDBConnection;
use OCP\IL10N;
use OCP\L10N\IFactory;
use PHPUnit\Framework\MockObject\MockObject;
use Psr\Log\LoggerInterface;
use Test\TestCase;

class FilenameValidatorTest extends TestCase {

	protected IFactory&MockObject $l10n;
	protected IConfig&MockObject $config;
	protected IDBConnection&MockObject $database;
	protected LoggerInterface&MockObject $logger;

	protected function setUp(): void {
		parent::setUp();
		$l10n = $this->createMock(IL10N::class);
		$l10n->method('t')
			->willReturnCallback(fn ($string, $params) => sprintf($string, ...$params));
		$this->l10n = $this->createMock(IFactory::class);
		$this->l10n
			->method('get')
			->with('core')
			->willReturn($l10n);

		$this->config = $this->createMock(IConfig::class);
		$this->logger = $this->createMock(LoggerInterface::class);
		$this->database = $this->createMock(IDBConnection::class);
		$this->database->method('supports4ByteText')->willReturn(true);
	}

	/**
	 * @dataProvider dataValidateFilename
	 */
	public function testValidateFilename(
		string $filename,
		array $forbiddenNames,
		array $forbiddenBasenames,
		array $forbiddenExtensions,
		array $forbiddenCharacters,
		?string $exception,
	): void {
		/** @var FilenameValidator&MockObject */
		$validator = $this->getMockBuilder(FilenameValidator::class)
			->onlyMethods([
				'getForbiddenBasenames',
				'getForbiddenCharacters',
				'getForbiddenExtensions',
				'getForbiddenFilenames',
			])
			->setConstructorArgs([$this->l10n, $this->database, $this->config, $this->logger])
			->getMock();

		$validator->method('getForbiddenBasenames')
			->willReturn($forbiddenBasenames);
		$validator->method('getForbiddenCharacters')
			->willReturn($forbiddenCharacters);
		$validator->method('getForbiddenExtensions')
			->willReturn($forbiddenExtensions);
		$validator->method('getForbiddenFilenames')
			->willReturn($forbiddenNames);

		if ($exception !== null) {
			$this->expectException($exception);
		} else {
			$this->expectNotToPerformAssertions();
		}
		$validator->validateFilename($filename);
	}

	/**
	 * @dataProvider dataValidateFilename
	 */
	public function testIsFilenameValid(
		string $filename,
		array $forbiddenNames,
		array $forbiddenBasenames,
		array $forbiddenExtensions,
		array $forbiddenCharacters,
		?string $exception,
	): void {
		/** @var FilenameValidator&MockObject */
		$validator = $this->getMockBuilder(FilenameValidator::class)
			->onlyMethods([
				'getForbiddenBasenames',
				'getForbiddenExtensions',
				'getForbiddenFilenames',
				'getForbiddenCharacters',
			])
			->setConstructorArgs([$this->l10n, $this->database, $this->config, $this->logger])
			->getMock();

		$validator->method('getForbiddenBasenames')
			->willReturn($forbiddenBasenames);
		$validator->method('getForbiddenCharacters')
			->willReturn($forbiddenCharacters);
		$validator->method('getForbiddenExtensions')
			->willReturn($forbiddenExtensions);
		$validator->method('getForbiddenFilenames')
			->willReturn($forbiddenNames);


		$this->assertEquals($exception === null, $validator->isFilenameValid($filename));
	}

	public function dataValidateFilename(): array {
		return [
			'valid name' => [
				'a: b.txt', ['.htaccess'], [], [], [], null
			],
			'forbidden name in the middle is ok' => [
				'a.htaccess.txt', ['.htaccess'], [], [], [], null
			],
			'valid name with some more parameters' => [
				'a: b.txt', ['.htaccess'], [], ['exe'], ['~'], null
			],
			'valid name checks only the full name' => [
				'.htaccess.sample', ['.htaccess'], [], [], [], null
			],
			'forbidden name' => [
				'.htaccess', ['.htaccess'], [], [], [], ReservedWordException::class
			],
			'forbidden name - name is case insensitive' => [
				'COM1', ['.htaccess', 'com1'], [], [], [], ReservedWordException::class
			],
			'forbidden basename' => [
				// needed for Windows namespaces
				'com1.suffix', ['.htaccess'], ['com1'], [], [], ReservedWordException::class
			],
			'forbidden basename case insensitive' => [
				// needed for Windows namespaces
				'COM1.suffix', ['.htaccess'], ['com1'], [], [], ReservedWordException::class
			],
			'forbidden basename for hidden files' => [
				// needed for Windows namespaces
				'.thumbs.db', ['.htaccess'], ['.thumbs'], [], [], ReservedWordException::class
			],
			'invalid character' => [
				'a: b.txt', ['.htaccess'], [], [], [':'], InvalidCharacterInPathException::class
			],
			'invalid path' => [
				'../../foo.bar', ['.htaccess'], [], [], ['/', '\\'], InvalidCharacterInPathException::class,
			],
			'invalid extension' => [
				'a: b.txt', ['.htaccess'], [], ['.txt'], [], InvalidPathException::class
			],
			'invalid extension case insensitive' => [
				'a: b.TXT', ['.htaccess'], [], ['.txt'], [], InvalidPathException::class
			],
			'empty filename' => [
				'', [], [], [], [], EmptyFileNameException::class
			],
			'reserved unix name "."' => [
				'.', [], [], [], [], InvalidDirectoryException::class
			],
			'reserved unix name ".."' => [
				'..', [], [], [], [], InvalidDirectoryException::class
			],
			'weird but valid tripple dot name' => [
				'...', [], [], [], [], null // is valid
			],
			'too long filename "."' => [
				str_repeat('a', 251), [], [], [], [], FileNameTooLongException::class
			],
			// make sure to not split the list entries as they migh contain Unicode sequences
			// in this example the "face in clouds" emoji contains the clouds emoji so only having clouds is ok
			['🌫️.txt', ['.htaccess'], [], [], ['πŸ˜Άβ€πŸŒ«οΈ'], null],
			// This is the reverse: clouds are forbidden -> so is also the face in the clouds emoji
			['πŸ˜Άβ€πŸŒ«οΈ.txt', ['.htaccess'], [], [], ['🌫️'], InvalidCharacterInPathException::class],
		];
	}

	/**
	 * @dataProvider data4ByteUnicode
	 */
	public function testDatabaseDoesNotSupport4ByteText($filename): void {
		$database = $this->createMock(IDBConnection::class);
		$database->expects($this->once())
			->method('supports4ByteText')
			->willReturn(false);
		$this->expectException(InvalidCharacterInPathException::class);
		$validator = new FilenameValidator($this->l10n, $database, $this->config, $this->logger);
		$validator->validateFilename($filename);
	}

	public function data4ByteUnicode(): array {
		return [
			['plane 1 πͺ…'],
			['emoji πŸ˜Άβ€πŸŒ«οΈ'],
		];
	}

	/**
	 * @dataProvider dataInvalidAsciiCharacters
	 */
	public function testInvalidAsciiCharactersAreAlwaysForbidden(string $filename): void {
		$this->expectException(InvalidPathException::class);
		$validator = new FilenameValidator($this->l10n, $this->database, $this->config, $this->logger);
		$validator->validateFilename($filename);
	}

	public function dataInvalidAsciiCharacters(): array {
		return [
			[\chr(0)],
			[\chr(1)],
			[\chr(2)],
			[\chr(3)],
			[\chr(4)],
			[\chr(5)],
			[\chr(6)],
			[\chr(7)],
			[\chr(8)],
			[\chr(9)],
			[\chr(10)],
			[\chr(11)],
			[\chr(12)],
			[\chr(13)],
			[\chr(14)],
			[\chr(15)],
			[\chr(16)],
			[\chr(17)],
			[\chr(18)],
			[\chr(19)],
			[\chr(20)],
			[\chr(21)],
			[\chr(22)],
			[\chr(23)],
			[\chr(24)],
			[\chr(25)],
			[\chr(26)],
			[\chr(27)],
			[\chr(28)],
			[\chr(29)],
			[\chr(30)],
			[\chr(31)],
		];
	}

	/**
	 * @dataProvider dataIsForbidden
	 */
	public function testIsForbidden(string $filename, array $forbiddenNames, bool $expected): void {
		/** @var FilenameValidator&MockObject */
		$validator = $this->getMockBuilder(FilenameValidator::class)
			->onlyMethods(['getForbiddenFilenames'])
			->setConstructorArgs([$this->l10n, $this->database, $this->config, $this->logger])
			->getMock();

		$validator->method('getForbiddenFilenames')
			->willReturn($forbiddenNames);

		$this->assertEquals($expected, $validator->isForbidden($filename));
	}

	public function dataIsForbidden(): array {
		return [
			'valid name' => [
				'a: b.txt', ['.htaccess'], false
			],
			'valid name with some more parameters' => [
				'a: b.txt', ['.htaccess'], false
			],
			'valid name as only full forbidden should be matched' => [
				'.htaccess.sample', ['.htaccess'], false,
			],
			'forbidden name' => [
				'.htaccess', ['.htaccess'], true
			],
			'forbidden name - name is case insensitive' => [
				'COM1', ['.htaccess', 'com1'], true,
			],
		];
	}

	/**
	 * @dataProvider dataGetForbiddenExtensions
	 */
	public function testGetForbiddenExtensions(array $configValue, array $expectedValue): void {
		$validator = new FilenameValidator($this->l10n, $this->database, $this->config, $this->logger);
		$this->config
			// only once - then cached
			->expects(self::once())
			->method('getSystemValue')
			->with('forbidden_filename_extensions', ['.filepart'])
			->willReturn($configValue);

		self::assertEqualsCanonicalizing($expectedValue, $validator->getForbiddenExtensions());
	}

	public static function dataGetForbiddenExtensions(): array {
		return [
			// default
			[['.filepart'], ['.filepart', '.part']],
			// always include .part
			[[], ['.part']],
			// handle case insensitivity
			[['.TXT'], ['.txt', '.part']],
		];
	}

	/**
	 * @dataProvider dataGetForbiddenFilenames
	 */
	public function testGetForbiddenFilenames(array $configValue, array $legacyValue, array $expectedValue): void {
		$validator = new FilenameValidator($this->l10n, $this->database, $this->config, $this->logger);
		$this->config
			// only once - then cached
			->expects(self::exactly(2))
			->method('getSystemValue')
			->willReturnMap([
				['forbidden_filenames', ['.htaccess'], $configValue],
				['blacklisted_files', [], $legacyValue],
			]);

		$this->logger
			->expects(empty($legacyValue) ? self::never() : self::once())
			->method('warning');

		self::assertEqualsCanonicalizing($expectedValue, $validator->getForbiddenFilenames());
	}

	public static function dataGetForbiddenFilenames(): array {
		return [
			// default
			[['.htaccess'], [], ['.htaccess']],
			// with legacy values
			[['.htaccess'], ['legacy'], ['.htaccess', 'legacy']],
			// handle case insensitivity
			[['FileName', '.htaccess'], ['LegAcy'], ['.htaccess', 'filename', 'legacy']],
		];
	}

	/**
	 * @dataProvider dataGetForbiddenBasenames
	 */
	public function testGetForbiddenBasenames(array $configValue, array $expectedValue): void {
		$validator = new FilenameValidator($this->l10n, $this->database, $this->config, $this->logger);
		$this->config
			// only once - then cached
			->expects(self::once())
			->method('getSystemValue')
			->with('forbidden_filename_basenames', [])
			->willReturn($configValue);

		self::assertEqualsCanonicalizing($expectedValue, $validator->getForbiddenBasenames());
	}

	public static function dataGetForbiddenBasenames(): array {
		return [
			// default
			[[], []],
			// with values
			[['aux', 'com0'], ['aux', 'com0']],
			// handle case insensitivity
			[['AuX', 'COM1'], ['aux', 'com1']],
		];
	}
}