-
-
Notifications
You must be signed in to change notification settings - Fork 111
Expand file tree
/
Copy pathFooterHandlerTest.php
More file actions
452 lines (409 loc) · 15.7 KB
/
FooterHandlerTest.php
File metadata and controls
452 lines (409 loc) · 15.7 KB
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
378
379
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
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
<?php
declare(strict_types=1);
namespace OCA\Libresign\Tests\Unit\Handler;
/**
* SPDX-FileCopyrightText: 2020-2024 LibreCode coop and contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
use OCA\Libresign\AppInfo\Application;
use OCA\Libresign\Handler\FooterHandler;
use OCA\Libresign\Handler\TemplateVariables;
use OCA\Libresign\Service\File\Pdf\PdfMetadataExtractor;
use OCP\IAppConfig;
use OCP\IL10N;
use OCP\ITempManager;
use OCP\IURLGenerator;
use OCP\L10N\IFactory;
use PHPUnit\Framework\Attributes\DataProvider;
use PHPUnit\Framework\MockObject\MockObject;
final class FooterHandlerTest extends \OCA\Libresign\Tests\Unit\TestCase {
private IAppConfig $appConfig;
private PdfMetadataExtractor&MockObject $pdfMetadataExtractor;
private IURLGenerator&MockObject $urlGenerator;
private IL10N $l10n;
private IFactory $l10nFactory;
private ITempManager $tempManager;
private FooterHandler $footerHandler;
public function setUp(): void {
$this->appConfig = $this->getMockAppConfigWithReset();
$this->pdfMetadataExtractor = $this->createMock(PdfMetadataExtractor::class);
$this->urlGenerator = $this->createMock(IURLGenerator::class);
$this->tempManager = \OCP\Server::get(ITempManager::class);
$this->l10nFactory = \OCP\Server::get(IFactory::class);
}
private function getClass(): FooterHandler {
$templateVars = new TemplateVariables($this->l10n);
$this->footerHandler = new FooterHandler(
$this->appConfig,
$this->pdfMetadataExtractor,
$this->urlGenerator,
$this->l10n,
$this->l10nFactory,
$this->tempManager,
$templateVars,
);
return $this->footerHandler;
}
public function testGetFooterWithoutValidationSite(): void {
$this->appConfig->setValueBool(Application::APP_ID, 'add_footer', false);
$dimensions = [['w' => 595, 'h' => 842]];
$this->l10n = $this->l10nFactory->get(Application::APP_ID);
$actual = $this->getClass()
->setTemplateVar('uuid', 'test-uuid')
->getFooter($dimensions);
$this->assertEmpty($actual);
}
#[DataProvider('dataGetFooterWithSuccess')]
public function testGetFooterWithSuccess(string $language, array $settings, array $expected): void {
foreach ($settings as $key => $value) {
switch (gettype($value)) {
case 'boolean':
$this->appConfig->setValueBool(Application::APP_ID, $key, $value);
break;
case 'string':
$this->appConfig->setValueString(Application::APP_ID, $key, $value);
break;
}
}
$dimensions = [
[
'w' => 842,
'h' => 595,
],
];
$this->l10n = $this->l10nFactory->get(Application::APP_ID, $language);
$pdf = $this->getClass()
->setTemplateVar('uuid', 'uuid')
->getFooter($dimensions);
if ($settings['add_footer']) {
$actual = $this->extractPdfContent(
$pdf,
array_keys($expected),
$this->l10nFactory->getLanguageDirection($language)
);
if ($settings['write_qrcode_on_footer']) {
$this->assertNotEmpty($actual['qrcode'], 'Invalid qrcode content');
unset($actual['qrcode'], $expected['qrcode']);
}
$this->assertEquals($expected, $actual);
} else {
$this->assertEmpty($pdf);
}
}
public static function dataGetFooterWithSuccess(): array {
$data = [
'without_footer' => [
'en',
['add_footer' => false,], []
],
'en_with_more_fields' => [
'en',
[
'add_footer' => true,
'validation_site' => 'http://test.coop',
'write_qrcode_on_footer' => true,
'footer_link_to_site' => 'https://libresign.coop',
'footer_signed_by' => 'Digital signed by LibreSign.',
'footer_validate_in' => 'Validate in %s.',
'footer_template' => <<<'HTML'
<div style="font-size:8px;" dir="{{ direction }}">
qrcodeSize:{{ qrcodeSize }}<br />
signedBy:{{ signedBy|raw }}<br />
validateIn:{{ validateIn|raw }}<br />
qrcode:{{ qrcode }}
</div>
HTML,
],
[
'qrcode' => 'dummy value',
'qrcodeSize' => '108',
'signedBy' => 'Digital signed by LibreSign.',
'validateIn' => 'Validate in %s.',
]
],
'en' => [
'en',
[
'add_footer' => true,
'validation_site' => 'http://test.coop',
'write_qrcode_on_footer' => false,
'footer_link_to_site' => 'https://libresign.coop',
'footer_signed_by' => 'Digital signed by LibreSign.',
'footer_validate_in' => 'Validate in %s.',
'footer_template' => <<<'HTML'
<div style="font-size:8px;" dir="{{ direction }}">
signedBy:{{ signedBy|raw }}<br />
validateIn:{{ validateIn|raw }}<br />
</div>
HTML,
],
[
'signedBy' => 'Digital signed by LibreSign.',
'validateIn' => 'Validate in %s.',
]
],
'fr' => [
'fr',
[
'add_footer' => true,
'validation_site' => 'http://test.coop',
'write_qrcode_on_footer' => false,
'footer_link_to_site' => 'https://libresign.coop',
'footer_signed_by' => 'Signé numériquement avec LibreSign.',
'footer_validate_in' => 'Validate in %s',
'footer_template' => <<<'HTML'
<div style="font-size:8px;" dir="{{ direction }}">
signedBy:{{ signedBy|raw }}<br />
validateIn:{{ validateIn|raw }}<br />
</div>
HTML,
],
[
'signedBy' => 'Signé numériquement avec LibreSign.',
'validateIn' => 'Validate in %s',
]
],
'el' => [
'el',
[
'add_footer' => true,
'validation_site' => 'http://test.coop',
'write_qrcode_on_footer' => false,
'footer_link_to_site' => 'https://libresign.coop',
'footer_signed_by' => 'Το αρχείο υπάρχει',
'footer_validate_in' => 'Επικυρώστε στο %s.',
'footer_template' => <<<'HTML'
<div style="font-size:8px;" dir="{{ direction }}">
signedBy:{{ signedBy|raw }}<br />
validateIn:{{ validateIn|raw }}<br />
</div>
HTML,
],
[
'signedBy' => 'Το αρχείο υπάρχει',
'validateIn' => 'Επικυρώστε στο %s.',
]
],
'he' => [
'he',
[
'add_footer' => true,
'validation_site' => 'http://test.coop',
'write_qrcode_on_footer' => false,
'footer_link_to_site' => 'https://libresign.coop',
'footer_signed_by' => 'אין המלצות. נא להתחיל להקליד.',
'footer_validate_in' => 'אמת ב- %s.',
'footer_template' => <<<'HTML'
<div style="font-size:8px;" dir="{{ direction }}">
signedBy:{{ signedBy|raw }}<br />
validateIn:{{ validateIn|raw }}<br />
</div>
HTML,
],
[
'signedBy' => 'אין המלצות. נא להתחיל להקליד.',
'validateIn' => 'אמת ב- %s.',
]
],
];
// LTR langages was ignored at CI because the returned text is flipped by MPDF
return array_filter($data, fn ($key) => !in_array($key, ['he']), ARRAY_FILTER_USE_KEY);
}
private function extractPdfContent(string $content, array $keys, string $direction): array {
$this->assertNotEmpty($content, 'Empty PDF file');
$this->assertNotEmpty($keys, 'Is necessary to send a not empty array of fields to search at PDF file');
$parser = new \Smalot\PdfParser\Parser();
$pdf = $parser->parseContent($content);
$text = $pdf->getText();
$this->assertNotEmpty($text, 'PDF without text');
$content = explode("\n", $text);
$this->assertNotEmpty($content, 'PDF without any row');
$content = array_map(fn ($row) => str_getcsv($row, ':', '"', '\\'), $content);
// Necessary flip key/value when the language is LTR
$columnKey = $direction === 'rtl' ? 1 : 0;
$columnValue = $direction === 'rtl' ? 0 : 1;
$content = array_filter($content, fn ($row) => in_array($row[$columnKey], $keys));
$this->assertNotEmpty($content, 'Fields not found at PDF file');
return array_column($content, $columnValue, $columnKey);
}
public function testGetFooterWithoutUuid(): void {
$this->appConfig->setValueBool(Application::APP_ID, 'add_footer', true);
$this->appConfig->setValueBool(Application::APP_ID, 'write_qrcode_on_footer', true);
$this->appConfig->setValueString(Application::APP_ID, 'footer_template', '<div>{{ signedBy|raw }}</div>');
$dimensions = [['w' => 595, 'h' => 100]];
$this->l10n = $this->l10nFactory->get(Application::APP_ID, 'en');
$pdf = $this->getClass()->getFooter($dimensions);
$this->assertNotEmpty($pdf);
$parser = new \Smalot\PdfParser\Parser();
$pdfParsed = $parser->parseContent($pdf);
$text = $pdfParsed->getText();
$this->assertNotEmpty($text);
}
public function testCustomValidationSiteNotOverwritten(): void {
$this->appConfig->setValueBool(Application::APP_ID, 'add_footer', true);
$this->appConfig->setValueString(Application::APP_ID, 'validation_site', 'https://default.site');
$this->appConfig->setValueString(Application::APP_ID, 'footer_template', '<div>{{ validationSite }}</div>');
$dimensions = [['w' => 595, 'h' => 100]];
$this->l10n = $this->l10nFactory->get(Application::APP_ID, 'en');
$pdf = $this->getClass()
->setTemplateVar('validationSite', 'https://custom.validation.site')
->getFooter($dimensions);
$this->assertNotEmpty($pdf);
$parser = new \Smalot\PdfParser\Parser();
$pdfParsed = $parser->parseContent($pdf);
$text = $pdfParsed->getText();
$this->assertStringContainsString('https://custom.validation.site', $text);
$this->assertStringNotContainsString('https://default.site', $text);
}
public function testGetTemplateReturnsCustomTemplate(): void {
$customTemplate = '<div>Custom footer template {{ uuid }}</div>';
$this->appConfig->setValueString(Application::APP_ID, 'footer_template', $customTemplate);
$this->l10n = $this->l10nFactory->get(Application::APP_ID, 'en');
$template = $this->getClass()->getTemplate();
$this->assertSame($customTemplate, $template);
}
public function testGetTemplateReturnsDefaultWhenNotSet(): void {
$this->appConfig->deleteKey(Application::APP_ID, 'footer_template');
$this->l10n = $this->l10nFactory->get(Application::APP_ID, 'en');
$template = $this->getClass()->getTemplate();
$defaultTemplate = file_get_contents(__DIR__ . '/../../../../lib/Handler/Templates/footer.twig');
$this->assertNotEmpty($template);
$this->assertSame($defaultTemplate, $template);
}
public function testGetTemplateReturnsDefaultWhenEmpty(): void {
$this->appConfig->setValueString(Application::APP_ID, 'footer_template', '');
$this->l10n = $this->l10nFactory->get(Application::APP_ID, 'en');
$template = $this->getClass()->getTemplate();
$this->assertNotEmpty($template);
$defaultTemplate = file_get_contents(__DIR__ . '/../../../../lib/Handler/Templates/footer.twig');
$this->assertSame($defaultTemplate, $template);
}
public function testGetTemplateVariablesMetadata(): void {
$this->l10n = $this->l10nFactory->get(Application::APP_ID, 'en');
$metadata = $this->getClass()->getTemplateVariablesMetadata();
$this->assertIsArray($metadata);
$this->assertCount(9, $metadata);
$this->assertArrayHasKey('direction', $metadata);
$this->assertArrayHasKey('uuid', $metadata);
$this->assertArrayHasKey('signedBy', $metadata);
$this->assertSame('string', $metadata['direction']['type']);
$this->assertSame('string', $metadata['uuid']['type']);
$this->assertArrayHasKey('default', $metadata['signedBy']);
}
#[DataProvider('dataAccentedCharactersInFooter')]
public function testAccentedCharactersInFooterVariablesAreRenderedCorrectly(
string $testName,
string $signedByText,
array $expectedSubstrings,
array $forbiddenSubstrings,
): void {
$this->appConfig->setValueBool(Application::APP_ID, 'add_footer', true);
$this->appConfig->setValueBool(Application::APP_ID, 'write_qrcode_on_footer', false);
$this->appConfig->deleteKey(Application::APP_ID, 'footer_template');
$dimensions = [['w' => 595, 'h' => 100]];
$this->l10n = $this->l10nFactory->get(Application::APP_ID, 'en');
$pdf = $this->getClass()
->setTemplateVar('uuid', 'test-uuid')
->setTemplateVar('signedBy', $signedByText)
->setTemplateVar('linkToSite', 'https://libresign.coop')
->getFooter($dimensions);
$this->assertNotEmpty($pdf);
$parser = new \Smalot\PdfParser\Parser();
$pdfParsed = $parser->parseContent($pdf);
$text = $pdfParsed->getText();
foreach ($expectedSubstrings as $expected) {
$this->assertStringContainsString($expected, $text, "Expected to find '{$expected}' for test: {$testName}");
}
foreach ($forbiddenSubstrings as $forbidden) {
$this->assertStringNotContainsString($forbidden, $text, "Should not find '{$forbidden}' for test: {$testName}");
}
}
public static function dataAccentedCharactersInFooter(): array {
return [
'French accents' => [
'testName' => 'French accents',
'signedByText' => 'Signé numériquement par LibreSign',
'expectedSubstrings' => ['Signé', 'numériquement'],
'forbiddenSubstrings' => ['é', '&', 'é'],
],
'Portuguese accents and cedilla' => [
'testName' => 'Portuguese accents',
'signedByText' => 'Assinado digitalmente por João da Silva',
'expectedSubstrings' => ['João', 'Silva'],
'forbiddenSubstrings' => ['ã', '&', 'ã'],
],
'Spanish ñ and accents' => [
'testName' => 'Spanish characters',
'signedByText' => 'Firmado digitalmente por José Muñoz',
'expectedSubstrings' => ['José', 'Muñoz'],
'forbiddenSubstrings' => ['ñ', 'é', '&'],
],
'German umlauts' => [
'testName' => 'German umlauts',
'signedByText' => 'Digital signiert von Müller & Söhne',
'expectedSubstrings' => ['Müller', 'Söhne'],
'forbiddenSubstrings' => ['ü', 'ö', '&'],
],
'Multiple special characters' => [
'testName' => 'Multiple accents',
'signedByText' => 'Signé par Renée & José',
'expectedSubstrings' => ['Signé', 'Renée', 'José'],
'forbiddenSubstrings' => ['é', '&', '&#'],
],
'Greek characters' => [
'testName' => 'Greek characters',
'signedByText' => 'Υπογραφή από Αθήνα',
'expectedSubstrings' => ['Υπογραφή', 'Αθήνα'],
'forbiddenSubstrings' => ['&', '&#'],
],
'Cyrillic characters' => [
'testName' => 'Cyrillic characters',
'signedByText' => 'Подписано Москва',
'expectedSubstrings' => ['Подписано', 'Москва'],
'forbiddenSubstrings' => ['&', '&#'],
],
'Arabic characters (RTL)' => [
'testName' => 'Arabic (RTL)',
'signedByText' => 'توقيع رقمي من القاهرة',
'expectedSubstrings' => ['عيقوت', 'ةرهاقلا'], // RTL text appears reversed in extracted PDF
'forbiddenSubstrings' => ['&', '&#'],
],
'Hebrew characters (RTL)' => [
'testName' => 'Hebrew (RTL)',
'signedByText' => 'חתום דיגיטלית מירושלים',
'expectedSubstrings' => ['םותח', 'םילשורימ'], // RTL text appears reversed in extracted PDF
'forbiddenSubstrings' => ['&', '&#'],
],
'Chinese characters' => [
'testName' => 'Chinese (CJK)',
'signedByText' => '数字签名 北京',
'expectedSubstrings' => ['数字签名', '北京'],
'forbiddenSubstrings' => ['&', '&#'],
],
'Japanese characters' => [
'testName' => 'Japanese (CJK)',
'signedByText' => 'デジタル署名 東京',
'expectedSubstrings' => ['デジタル署名', '東京'],
'forbiddenSubstrings' => ['&', '&#'],
],
'Korean characters' => [
'testName' => 'Korean (CJK)',
'signedByText' => '디지털 서명 서울',
'expectedSubstrings' => ['디지털', '서울'],
'forbiddenSubstrings' => ['&', '&#'],
],
'Emoji characters' => [
'testName' => 'Emoji',
'signedByText' => 'Signed ✍️ by LibreSign 🔒',
'expectedSubstrings' => ['Signed', 'LibreSign'],
'forbiddenSubstrings' => ['&', '&#'],
],
'Mixed emoji and accents' => [
'testName' => 'Emoji with accents',
'signedByText' => 'Signé 📝 par José 👤',
'expectedSubstrings' => ['Signé', 'José'],
'forbiddenSubstrings' => ['é', '&', '&#'],
],
];
}
}