-
-
Notifications
You must be signed in to change notification settings - Fork 704
/
Copy pathtest_footnote_column.py
442 lines (420 loc) · 8.34 KB
/
test_footnote_column.py
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
"""Test how footnotes in columns are drawn."""
import pytest
from ..testing_utils import assert_no_logs
@assert_no_logs
def test_footnote_column_margin_top(assert_pixels):
assert_pixels('''
RRRR_RRRR
RRRR_RRRR
_________
_________
_________
RRRRRRRR_
RRRRRRRR_
RRRR_RRRR
RRRR_RRRR
RRRR_RRRR
RRRR_RRRR
RRRR_____
RRRR_____
_________
''', '''
<style>
@page {
size: 9px 7px;
@footnote {
margin-top: 2px;
}
}
div {
color: red;
columns: 2;
column-gap: 1px;
font-family: weasyprint;
font-size: 2px;
line-height: 1;
}
span {
float: footnote;
}
</style>
<div>a<span>de</span> ab ab ab ab ab ab</div>''')
@assert_no_logs
def test_footnote_column_fill_auto(assert_pixels):
assert_pixels('''
RRRR_____
RRRR_____
RRRR_____
RRRR_____
RRRR_____
RRRR_____
_________
RRRRRRRR_
RRRRRRRR_
RRRRRRRR_
RRRRRRRR_
RRRRRRRR_
RRRRRRRR_
''', '''
<style>
@page {
size: 9px 13px;
}
div {
color: red;
columns: 2;
column-fill: auto;
column-gap: 1px;
font-family: weasyprint;
font-size: 2px;
line-height: 1;
}
span {
float: footnote;
}
</style>
<div>a<span>de</span> a<span>de</span> a<span>de</span></div>''')
@assert_no_logs
def test_footnote_column_fill_auto_break_inside_avoid(assert_pixels):
assert_pixels('''
RRRR_RRRR
RRRR_RRRR
RRRR_RRRR
RRRR_RRRR
RRRR_RRRR
RRRR_RRRR
_________
RRRRRRRR_
RRRRRRRR_
RRRRRRRR_
RRRRRRRR_
RRRRRRRR_
RRRRRRRR_
''', '''
<style>
@page {
size: 9px 13px;
}
div {
color: red;
columns: 2;
column-fill: auto;
column-gap: 1px;
font-family: weasyprint;
font-size: 2px;
line-height: 1;
}
article {
break-inside: avoid;
}
span {
float: footnote;
}
</style>
<div>
<article>a<span>de</span> a<span>de</span></article>
<article>ab</article>
<article>a<span>de</span> ab</article>
<article>ab</article>
</div>''')
@assert_no_logs
def test_footnote_column_p_after(assert_pixels):
assert_pixels('''
RRRR_RRRR
RRRR_RRRR
RRRR_RRRR
RRRR_RRRR
KK__KK___
KK__KK___
_________
RRRRRRRR_
RRRRRRRR_
RRRRRRRR_
RRRRRRRR_
KK__KK___
KK__KK___
_________
_________
_________
_________
_________
_________
_________
_________
_________
''', '''
<style>
@page {
size: 9px 11px;
}
body {
font-family: weasyprint;
font-size: 2px;
line-height: 1;
}
div {
color: red;
columns: 2;
column-gap: 1px;
}
span {
float: footnote;
}
</style>
<div>a<span>de</span> a<span>de</span> ab ab</div>
<p>a a a a</p>''')
@assert_no_logs
def test_footnote_column_p_before(assert_pixels):
assert_pixels('''
KKKK_____
KKKK_____
RRRR_RRRR
RRRR_RRRR
RRRR_RR__
RRRR_RR__
_________
RRRRRRRR_
RRRRRRRR_
RRRRRRRR_
RRRRRRRR_
RRRRRRRR_
RRRRRRRR_
RRRR_RR__
RRRR_RR__
_________
_________
_________
_________
_________
_________
_________
_________
_________
_________
_________
''', '''
<style>
@page {
size: 9px 13px;
}
body {
font-family: weasyprint;
font-size: 2px;
line-height: 1;
}
div {
color: red;
columns: 2;
column-gap: 1px;
}
span {
float: footnote;
}
</style>
<p>ab</p>
<div>
a<span>de</span> a<span>de</span>
a<span>de</span> a ab a </div>''')
@assert_no_logs
def test_footnote_column_3(assert_pixels):
assert_pixels('''
RRRR_RRRR_RRRR
RRRR_RRRR_RRRR
______________
RRRRRRRR______
RRRRRRRR______
RRRR_RRRR_____
RRRR_RRRR_____
______________
______________
______________
''', '''
<style>
@page {
size: 14px 5px;
}
body {
font-family: weasyprint;
font-size: 2px;
line-height: 1;
}
div {
color: red;
columns: 3;
column-gap: 1px;
}
span {
float: footnote;
}
</style>
<div>ab ab a<span>de</span> ab ab </div>''')
@assert_no_logs
def test_footnote_column_3_p_before(assert_pixels):
assert_pixels('''
KKKK__________
KKKK__________
RRRR_RRRR_RRRR
RRRR_RRRR_RRRR
RRRR_RRRR_RRRR
RRRR_RRRR_RRRR
______________
RRRRRRRR______
RRRRRRRR______
RRRR_RRRR_____
RRRR_RRRR_____
______________
______________
______________
______________
______________
RRRRRRRR______
RRRRRRRR______
''', '''
<style>
@page {
size: 14px 9px;
}
body {
font-family: weasyprint;
font-size: 2px;
line-height: 1;
}
div {
color: red;
columns: 3;
column-gap: 1px;
}
span {
float: footnote;
}
</style>
<p>ab</p>
<div>ab ab a<span>de</span> ab ab ab a<span>de</span> ab </div>''')
@assert_no_logs
def test_footnote_column_clone_decoration(assert_pixels):
assert_pixels('''
_________
RRRR_RRRR
RRRR_RRRR
_________
_________
RRRRRRRR_
RRRRRRRR_
_________
RRRR_RRRR
RRRR_RRRR
_________
_________
_________
_________
''', '''
<style>
@page {
size: 9px 7px;
}
div {
box-decoration-break: clone;
color: red;
columns: 2;
column-gap: 1px;
font-family: weasyprint;
font-size: 2px;
line-height: 1;
padding: 1px 0;
}
span {
float: footnote;
}
</style>
<div>a<span>de</span> ab ab ab</div>''')
@assert_no_logs
def test_footnote_column_max_height(assert_pixels):
assert_pixels('''
RRRR_RRRR
RRRR_RRRR
RRRR_RRRR
RRRR_RRRR
_________
RRRRRRRR_
RRRRRRRR_
RRRRRRRR_
RRRRRRRR_
RRRR_RRRR
RRRR_RRRR
_________
_________
_________
_________
_________
RRRRRRRR_
RRRRRRRR_
''', '''
<style>
@page {
size: 9px 9px;
@footnote {
max-height: 2em;
}
}
div {
color: red;
columns: 2;
column-gap: 1px;
font-family: weasyprint;
font-size: 2px;
line-height: 1;
}
span {
float: footnote;
}
</style>
<div>
a<span>de</span> a<span>de</span>
a<span>de</span> ab
ab ab
</div>''')
@pytest.mark.xfail
@assert_no_logs
def test_footnote_column_reported_split(assert_pixels):
# When calling block_container_layout() in remove_placeholders(), we should
# use the whole skip stack and not just [skip:]
assert_pixels('''
RRRR_RRRR
RRRR_RRRR
RRRR_RRRR
RRRR_RRRR
_________
RRRRRRRR_
RRRRRRRR_
RRRRRRRR_
RRRRRRRR_
RRRR_____
RRRR_____
_________
_________
_________
_________
_________
RRRRRRRR_
RRRRRRRR_
''', '''
<style>
@page {
size: 9px 9px;
}
div {
color: red;
columns: 2;
column-gap: 1px;
font-family: weasyprint;
font-size: 2px;
line-height: 1;
}
span {
float: footnote;
}
</style>
<div>
<article>a<span>de</span> a<span>de</span></article>
<article>a<span>de</span> ab ab</article>
</div>''')