-
Notifications
You must be signed in to change notification settings - Fork 608
Expand file tree
/
Copy pathtest_custom.py
More file actions
424 lines (339 loc) · 14 KB
/
Copy pathtest_custom.py
File metadata and controls
424 lines (339 loc) · 14 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
from unittest.mock import MagicMock
from pontoon.checks.libraries.custom import run_custom_checks
def mock_entity(
format: str,
*,
string: str = "",
allows_empty_translations: bool = False,
):
match format:
case "android" | "xcode":
ext = "xml"
case "fluent":
ext = "ftl"
case "gettext":
ext = "po"
case "webext":
ext = "json"
case _:
ext = format
entity = MagicMock()
entity.string = string
entity.resource.format = format
entity.resource.path = f"test.{ext}"
entity.resource.allows_empty_translations = allows_empty_translations
return entity
empty_error = ["Empty translations are not allowed"]
plural_error = ["Plural translation requires plural source"]
def test_ending_newline():
"""
Original and translation in a PO file must either both end
in a newline, or none of them should.
"""
po_entity = mock_entity("gettext", string="Original")
assert run_custom_checks(po_entity, "Translation\n") == {
"pErrors": ["Ending newline mismatch"]
}
assert run_custom_checks(po_entity, "Translation") == {}
po_entity.string = "Original\n"
assert run_custom_checks(po_entity, "Translation") == {
"pErrors": ["Ending newline mismatch"]
}
assert run_custom_checks(po_entity, "Translation\n") == {}
def test_empty_translations_allowed():
"""
Empty translations should be allowed but noted for some extensions.
"""
assert run_custom_checks(
mock_entity("properties", allows_empty_translations=True), ""
) == {"pndbWarnings": ["Empty translation"]}
def test_empty_translations_not_allowed():
"""
Empty translations shouldn't be allowed for some extensions.
"""
po_entity = mock_entity("gettext")
assert run_custom_checks(po_entity, "") == {"pErrors": empty_error}
assert run_custom_checks(po_entity, "{{}}") == {"pErrors": empty_error}
assert run_custom_checks(po_entity, ".input {$n :number} .match $n * {{}}") == {
"pErrors": empty_error + plural_error
}
assert run_custom_checks(
po_entity, ".input {$n :number} .match $n 1 {{}} * {{other}}"
) == {"pErrors": empty_error + plural_error}
assert run_custom_checks(po_entity, "{{{||}}}") == {}
assert run_custom_checks(
mock_entity("fluent", string="key = value"), 'key = { "" }'
) == {"pndbWarnings": ["Empty translation"]}
assert (
run_custom_checks(mock_entity("fluent", string="key = value"), 'key = { "x" }')
== {}
)
assert run_custom_checks(
mock_entity("fluent", string="key =\n .attr = value"),
"""key =
{ $var ->
[a] { "" }
*[b] { "" }
}
.attr = { "" }
""",
) == {"pndbWarnings": ["Empty translation"]}
assert run_custom_checks(
mock_entity("fluent", string="key =\n .attr = value"),
"""key =
{ $var ->
[a] { "x" }
*[b] { "y" }
}
.attr = { "" }
""",
) == {"pndbWarnings": ["Empty translation"]}
assert run_custom_checks(
mock_entity("fluent", string="key =\n .attr = value"),
"""key =
{ $var ->
[a] { "x" }
*[b] { "" }
}
.attr = { "y" }
""",
) == {"pndbWarnings": ["Empty translation"]}
assert (
run_custom_checks(
mock_entity("fluent", string="key =\n .attr = value"),
"""key =
{ $var ->
[a] { "x" }
*[b] { "y" }
}
.attr = { "z" }
""",
)
== {}
)
def test_android_simple():
assert run_custom_checks(mock_entity("android", string="source"), "target") == {}
def test_android_plural():
assert (
run_custom_checks(
mock_entity(
"android", string=".input {$n :number} .match $n one {{s1}} * {{s*}}"
),
".input {$n :number} .match $n one {{t1}} * {{t*}}",
)
== {}
)
assert run_custom_checks(
mock_entity("android", string="source"),
".input {$n :number} .match $n one {{t1}} * {{t*}}",
) == {"pErrors": plural_error}
def test_po_newlines():
assert run_custom_checks(mock_entity("gettext"), "aaa\nbbb") == {}
def test_ftl_parse_error():
"""Invalid FTL strings are not allowed"""
ftl_entity = mock_entity("fluent", string="key = value")
assert run_custom_checks(ftl_entity, "key =") == {
"pErrors": ['Expected message "key" to have a value or attributes']
}
assert run_custom_checks(ftl_entity, "key = translation") == {}
def test_ftl_non_localizable_entries():
"""Non-localizable entries are not allowed"""
assert run_custom_checks(
mock_entity("fluent", string="key = value"), "[[foo]]"
) == {"pErrors": ["Expected an entry start"]}
def test_ftl_id_missmatch():
"""ID of the source string and translation must be the same"""
assert run_custom_checks(
mock_entity("fluent", string="key = value"), "key1 = translation"
) == {"pErrors": ["Translation key needs to match source string key"]}
def test_android_apostrophes():
original = "Source string"
translation = "Translation with a straight '"
entity = mock_entity("android", string=original)
assert run_custom_checks(entity, translation) == {}
def test_android_percent_signs_same():
original = "Source string 100%"
translation = "Translation string 100%"
entity = mock_entity("android", string=original)
assert run_custom_checks(entity, translation) == {}
def test_android_percent_signs_more():
original = "Source string 100%"
translation = "Translation 100%! string 100%"
entity = mock_entity("android", string=original)
assert run_custom_checks(entity, translation) == {}
def test_android_literal_newline():
original = "Source string"
translation = r"Translation with an escaped \\n newline"
entity = mock_entity("android", string=original)
assert run_custom_checks(entity, translation) == {}
def test_android_same_placeholder():
original = "Source string with a {$arg1 :string @source=|%1$s|}"
translation = "Translation with a {$arg1 :string @source=|%1$s|}"
entity = mock_entity("android", string=original)
assert run_custom_checks(entity, translation) == {}
def test_android_plural_placeholders():
original = """
.input {$n :number}
.match $n
one {{One item}}
* {{{$arg1 :number @source=|%1$d|} items}}
"""
translation = """
.input {$n :number}
.match $n
one {{{$arg1 :number @source=|%1$d|} item}}
many {{{$arg1 :number @source=|%1$d|} items}}
* {{{$arg1 :number @source=|%1$d|} items}}
"""
entity = mock_entity("android", string=original)
assert run_custom_checks(entity, translation) == {}
def test_android_missing_placeholder():
original = "Source string with a {$arg1 :string @source=|%1$s|}"
translation = "Translation"
entity = mock_entity("android", string=original)
assert run_custom_checks(entity, translation) == {
"pWarnings": ["Placeholder %1$s not found in translation"]
}
def test_android_mistyped_placeholder():
original = "Source string with a {$arg1 :string @source=|%1$s|}"
translation = "Translation %1"
entity = mock_entity("android", string=original)
assert run_custom_checks(entity, translation) == {
"pErrors": ["Placeholder %1 not found in reference"],
"pWarnings": ["Placeholder %1$s not found in translation"],
}
def test_android_extra_placeholder():
original = "Source string"
translation = "Translation with a {$arg1 :string @source=|%1$s|}"
entity = mock_entity("android", string=original)
assert run_custom_checks(entity, translation) == {
"pErrors": ["Placeholder %1$s not found in reference"]
}
def test_android_extra_placeholder_as_literal():
original = "Source string"
translation = "Translation with a %1$s"
entity = mock_entity("android", string=original)
assert run_custom_checks(entity, translation) == {
"pErrors": ["Placeholder %1$s not found in reference"]
}
def test_android_changed_placeholder():
original = (
"New! {$arg :string @source=|%s|} email masks are now available on mobile."
)
translation = "Нав! Акнун ниқобҳои почтаи электронии «{$arg1 :string @source=|%@|}» дар дастгоҳҳои мобилӣ дастрасанд."
entity = mock_entity("android", string=original)
assert run_custom_checks(entity, translation) == {
"pErrors": ["Placeholder %@ not found in reference"],
"pWarnings": ["Placeholder %s not found in translation"],
}
def test_android_protections():
original = "Source {$string :xliff:g id=string @translate=no @source=String} with {$variable :xliff:g id=variable example=5 @translate=no @source=|%1$s|}"
translation = "Translation String with %1$s"
entity = mock_entity("android", string=original)
assert run_custom_checks(entity, translation) == {
"pWarnings": ["Placeholder String not found in translation"]
}
def test_android_good_html():
original = "Source with a {|<b>| :html}line{|<br>| :html}break{|</b>| :html}"
translation = (
"Translation with a {|<b>| :html}line{|<br>| :html}break{|</b>| :html}"
)
entity = mock_entity("android", string=original)
assert run_custom_checks(entity, translation) == {}
def test_android_good_html_as_literal():
original = "Source with a {|<b>| :html}line{|<br>| :html}break{|</b>| :html}"
translation = "Translation with a <b>line<br>break</b>"
entity = mock_entity("android", string=original)
assert run_custom_checks(entity, translation) == {}
def test_android_bad_html():
original = "Source {|<b>| :html}string{|</b>| :html}"
translation = "Translation with a <a>tag mismatch{|</b>| :html}"
entity = mock_entity("android", string=original)
assert run_custom_checks(entity, translation) == {
"pErrors": ["Element <a> not found in reference"],
"pWarnings": ["Element <b> not found in translation"],
}
def test_android_extra_percent():
original = "Source percent"
translation = "Translation {|%| @source=|%%|}"
entity = mock_entity("android", string=original)
assert run_custom_checks(entity, translation) == {}
def test_webext_literal_index_placeholder_as_placeholder():
original = "Source string with a {$arg1 @source=|$1|}"
translation = "Translation with a {$arg1 @source=|$1|}"
entity = mock_entity("webext", string=original)
assert run_custom_checks(entity, translation) == {}
def test_webext_literal_index_placeholder_as_literal():
original = "Source string with a {$arg1 @source=|$1|}"
translation = "Translation with a $1"
entity = mock_entity("webext", string=original)
assert run_custom_checks(entity, translation) == {}
def test_webext_literal_named_placeholder_as_placeholder():
original = (
".local $FOO = {$arg1 @source=|$1|}\n"
+ "{{Source string with a {$FOO @source=|$FOO$|}}}"
)
translation = (
".local $FOO = {$arg1 @source=|$1|}\n"
+ "{{Translation with a {$FOO @source=|$FOO$|}}}"
)
entity = mock_entity("webext", string=original)
assert run_custom_checks(entity, translation) == {}
def test_webext_literal_named_placeholder_as_literal():
original = (
".local $FOO = {$arg1 @source=|$1|}\n"
+ "{{Source string with a {$FOO @source=|$FOO$|}}}"
)
translation = "Translation with a $FOO$"
entity = mock_entity("webext", string=original)
assert run_custom_checks(entity, translation) == {}
def test_webext_extra_index_placeholder():
original = "Source string"
translation = "Translation with a $1"
entity = mock_entity("webext", string=original)
# This should probably also be caught
assert run_custom_checks(entity, translation) == {}
def test_webext_extra_named_placeholder_as_literal():
original = "Source string"
translation = "Translation with a $FOO$"
entity = mock_entity("webext", string=original)
assert run_custom_checks(entity, translation) == {
"pErrors": ["Placeholder $FOO$ not found in reference"]
}
def test_webext_extra_named_placeholder_as_placeholder():
original = "Source string"
translation = (
".local $FOO = {$arg1 @source=|$1|}\n"
+ "{{Translation with a {$FOO @source=|$FOO$|}}}"
)
entity = mock_entity("webext", string=original)
assert run_custom_checks(entity, translation) == {
"pErrors": ["Placeholder $FOO$ not found in reference"]
}
def test_xcode_same_placeholder():
original = "Source string with a {$arg1 :string @source=|%1$@|}"
translation = "Translation with a {$arg1 :string @source=|%1$@|}"
entity = mock_entity("xcode", string=original)
assert run_custom_checks(entity, translation) == {}
def test_xcode_missing_placeholder():
original = "Source string with a {$arg :string @source=|%@|}"
translation = "Translation"
entity = mock_entity("xcode", string=original)
assert run_custom_checks(entity, translation) == {
"pWarnings": ["Placeholder %@ not found in translation"]
}
def test_xcode_mistyped_placeholder():
original = "Source string with a {$arg :string @source=|%@|}"
translation = "Translation % @"
entity = mock_entity("xcode", string=original)
assert run_custom_checks(entity, translation) == {
"pErrors": ["Placeholder % @ not found in reference"],
"pWarnings": ["Placeholder %@ not found in translation"],
}
def test_xcode_extra_placeholder():
original = "Source string"
translation = "Translation with a {$arg :string @source=|%@|}"
entity = mock_entity("xcode", string=original)
assert run_custom_checks(entity, translation) == {
"pErrors": ["Placeholder %@ not found in reference"]
}