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
|
# frozen_string_literal: true
require_relative 'spec_helper'
describe 'Asciidoctor::PDF::Converter - Quote' do
it 'should show caption above block if title is specified' do
input = <<~'EOS'
.Words of wisdom
____
Let it be.
____
EOS
pdf = to_pdf input, analyze: :line
lines = pdf.lines
(expect pdf.lines).to have_size 1
pdf = to_pdf input, analyze: true
(expect pdf.lines).to eql ['Words of wisdom', 'Let it be.']
title_text = (pdf.find_text 'Words of wisdom')[0]
body_text = (pdf.find_text 'Let it be.')[0]
(expect title_text[:font_name]).to eql 'NotoSerif-Italic'
(expect title_text[:x]).to eql 48.24
(expect title_text[:y]).to be > lines[0][:from][:y]
(expect title_text[:x]).to be < lines[0][:from][:x]
(expect lines[0][:from][:x]).to be < body_text[:x]
end
it 'should show attribution line below text of quote' do
pdf = to_pdf <<~'EOS', analyze: true
[,Alice Walker,Speech]
____
The most common way people give up their power is by thinking they don't have any.
____
EOS
last_quote_text = pdf.text[-2]
attribution_text = (pdf.find_text %r/Alice Walker/)[0]
(expect attribution_text[:string]).to eql %(\u2014 Alice Walker, Speech)
(expect attribution_text[:font_size]).to eql 9
(expect attribution_text[:font_color]).to eql '999999'
(expect attribution_text[:font_name]).to eql 'NotoSerif'
(expect (last_quote_text[:y] - attribution_text[:y]).round).to eql 27
(expect attribution_text[:x]).to eql last_quote_text[:x]
end
it 'should escape bare ampersand in attribution' do
(expect do
pdf = to_pdf <<~'EOS', analyze: true
[quote, J. Helliwell & B. McMahon]
The richer the metadata available to the scientist, the greater the potential for new discoveries.
EOS
(expect pdf.lines[-1]).to eql %(\u2014 J. Helliwell & B. McMahon)
end).to not_log_message
end
it 'should escape bare ampersand in citetitle' do
(expect do
pdf = to_pdf <<~'EOS', analyze: true
[quote, J. Helliwell & B. McMahon, Melbourne Congress & General Assembly of the IUCr]
The richer the metadata available to the scientist, the greater the potential for new discoveries.
EOS
(expect pdf.lines[-1]).to eql %(\u2014 J. Helliwell & B. McMahon, Melbourne Congress & General Assembly of the IUCr)
end).to not_log_message
end
it 'should render character reference in attribution' do
(expect do
pdf = to_pdf <<~'EOS', analyze: true
[quote, J. Helliwell & B. McMahon © IUCr]
The richer the metadata available to the scientist, the greater the potential for new discoveries.
EOS
(expect pdf.lines[-1]).to eql %(\u2014 J. Helliwell & B. McMahon \u00a9 IUCr)
end).to not_log_message
end
it 'should apply substitutions to attribution and citetitle if enclosed in single quotes' do
input = <<~'EOS'
[, 'Author--aka Alias', 'https://asciidoctor.org[Source]']
____
Use the attribution and citetitle attributes to credit the author and identify the source of the quote, respectively.
____
EOS
pdf = to_pdf input, analyze: true
attribution_text, citetitle_text = (pdf.find_text font_size: 9)
(expect attribution_text[:string]).to eql %(\u2014 Author\u2014aka Alias, )
(expect citetitle_text[:string]).to eql 'Source'
(expect citetitle_text[:font_color]).to eql '428BCA'
pdf = to_pdf input
annotations = get_annotations pdf, 1
(expect annotations).to have_size 1
link_annotation = annotations[0]
(expect link_annotation[:Subtype]).to be :Link
(expect link_annotation[:A][:URI]).to eql 'https://asciidoctor.org'
(expect link_annotation[:Rect][0]).to eql citetitle_text[:x]
(expect link_annotation[:Rect][2]).to eql (citetitle_text[:x] + citetitle_text[:width])
end
it 'should not draw left border if border_left_width is 0' do
pdf = to_pdf <<~'EOS', pdf_theme: { quote_border_left_width: 0 }, analyze: :line
____
Let it be.
____
EOS
(expect pdf.lines).to be_empty
end
it 'should not draw left border if border_left_width is nil' do
pdf = to_pdf <<~'EOS', pdf_theme: { quote_border_left_width: nil, quote_border_width: nil }, analyze: :line
____
Let it be.
____
EOS
(expect pdf.lines).to be_empty
end
it 'should not draw left border on next page if block falls at bottom of page' do
pdf = with_content_spacer 10, 689.5 do |spacer_path|
to_pdf <<~EOS, analyze: :line
image::#{spacer_path}[]
____
Let it be.
Let it be.
____
Words of wisdom were spoken.
EOS
end
quote_borders = pdf.lines.select {|it| it[:color] == 'EEEEEE' }
(expect quote_borders).to have_size 1
(expect quote_borders[0][:page_number]).to be 1
end
it 'should apply specified background color', visual: true do
pdf_theme = {
quote_background_color: 'dddddd',
quote_border_color: 'aa0000',
}
to_file = to_pdf_file <<~'EOS', 'quote-background-color.pdf', pdf_theme: pdf_theme
____
Let it be. +
Let it be.
____
EOS
(expect to_file).to visually_match 'quote-background-color.pdf'
end
it 'should apply specified border and background color', visual: true do
pdf_theme = build_pdf_theme \
quote_border_left_width: 0,
quote_border_width: 0.5,
quote_border_color: 'aa0000',
quote_background_color: 'dddddd'
pdf_theme.quote_padding = pdf_theme.sidebar_padding
to_file = to_pdf_file <<~'EOS', 'quote-border-and-background-color.pdf', pdf_theme: pdf_theme
[,Paul McCartney]
____
Let it be. +
Let it be.
____
EOS
(expect to_file).to visually_match 'quote-border-and-background-color.pdf'
end
it 'should apply correct padding around content' do
input = <<~'EOS'
____
first
last
____
EOS
pdf = to_pdf input, analyze: true
lines = (to_pdf input, analyze: :line).lines
(expect lines).to have_size 1
top = lines[0][:from][:y]
bottom = lines[0][:to][:y]
left = lines[0][:from][:x]
text_top = (pdf.find_unique_text 'first').yield_self {|it| it[:y] + it[:font_size] }
text_bottom = (pdf.find_unique_text 'last')[:y]
text_left = (pdf.find_unique_text 'first')[:x]
(expect (top - text_top).to_f).to be < 5
(expect (text_bottom - bottom).to_f).to (be_within 1).of 8.0
(expect (text_left - left).to_f).to eql 12.0
end
it 'should apply correct padding around content when using base theme' do
input = <<~'EOS'
____
first
last
____
EOS
pdf = to_pdf input, attribute_overrides: { 'pdf-theme' => 'base' }, analyze: true
lines = (to_pdf input, attribute_overrides: { 'pdf-theme' => 'base' }, analyze: :line).lines
(expect lines).to have_size 1
top = lines[0][:from][:y]
bottom = lines[0][:to][:y]
left = lines[0][:from][:x]
text_top = (pdf.find_unique_text 'first').yield_self {|it| it[:y] + it[:font_size] }
text_bottom = (pdf.find_unique_text 'last')[:y]
text_left = (pdf.find_unique_text 'first')[:x]
(expect (top - text_top).to_f).to (be_within 1).of 3.0
(expect (text_bottom - bottom).to_f).to (be_within 1).of 6.0
(expect (text_left - left).to_f).to eql 12.0
end
it 'should split border when block is split across pages', visual: true do
pdf_theme = {
quote_border_left_width: 0,
quote_border_width: 0.5,
quote_border_color: 'CCCCCC',
quote_background_color: 'EEEEEE',
quote_padding: [6, 10, 12, 10],
}
to_file = to_pdf_file <<~EOS, 'quote-page-split.pdf', pdf_theme: pdf_theme
____
#{(['Let it be.'] * 30).join %(\n\n)}
____
EOS
(expect to_file).to visually_match 'quote-page-split.pdf'
end
it 'should advance to next page if block is split and caption does not fit' do
quote = ['Power concedes nothing without a demand.', 'It never did and it never will.'].join %( +\n)
with_content_spacer 10, 705 do |spacer_path|
input = <<~EOS
before
image::#{spacer_path}[]
.Sage advice by Frederick Douglass
____
#{([quote] * 18).join %(\n\n)}
____
EOS
pdf = to_pdf input, analyze: true
advice_text = pdf.find_unique_text 'Sage advice by Frederick Douglass'
(expect advice_text[:page_number]).to be 2
(expect advice_text[:y] + advice_text[:font_size]).to ((be_within 1).of 805)
end
end
it 'should keep caption with block and draw border across extent if only caption fits on current page' do
block_content = ['text of quote'] * 15 * %(\n\n)
pdf_theme = { prose_margin_bottom: 12, quote_padding: [0, 0, 0, 15] }
with_content_spacer 10, 690 do |spacer_path|
input = <<~EOS
before
image::#{spacer_path}[]
.Sage advice
____
#{block_content}
____
EOS
pdf = to_pdf input, pdf_theme: pdf_theme, analyze: true
lines = (to_pdf input, pdf_theme: pdf_theme, analyze: :line).lines
(expect pdf.pages).to have_size 2
advice_text = pdf.find_unique_text 'Sage advice'
(expect advice_text[:page_number]).to be 2
(expect advice_text[:y] + advice_text[:font_size]).to ((be_within 1).of 805)
quote_text = (pdf.find_text 'text of quote')
# NOTE: y location of text does not include descender
quote_text_start_y = quote_text[0][:y] + quote_text[0][:font_size] + 1.5
quote_text_end_y = quote_text[-1][:y] - 4.5
border_left_line = lines.find {|it| it[:color] == 'EEEEEE' }
(expect border_left_line[:page_number]).to be 2
border_left_line_start_y, border_left_line_end_y = [border_left_line[:from][:y], border_left_line[:to][:y]].sort.reverse
(expect border_left_line_start_y).to (be_within 0.5).of (quote_text_start_y)
(expect border_left_line_end_y).to (be_within 0.5).of (quote_text_end_y)
end
end
it 'should not collapse bottom padding if block ends near bottom of page and has no attribution' do
pdf_theme = {
quote_font_size: 10.5,
quote_padding: 12,
quote_background_color: 'EEEEEE',
quote_border_left_width: 0,
}
pdf = with_content_spacer 10, 690 do |spacer_path|
to_pdf <<~EOS, pdf_theme: pdf_theme, analyze: true
image::#{spacer_path}[]
____
content +
that wraps
____
EOS
end
pages = pdf.pages
(expect pages).to have_size 1
gs = pdf.extract_graphic_states pages[0][:raw_content]
(expect gs[1]).to have_background color: 'EEEEEE', top_left: [48.24, 103.89], bottom_right: [48.24, 48.33]
last_text_y = pdf.text[-1][:y]
(expect last_text_y - pdf_theme[:quote_padding]).to be > 48.24
pdf = with_content_spacer 10, 692 do |spacer_path|
to_pdf <<~EOS, pdf_theme: pdf_theme, analyze: true
image::#{spacer_path}[]
____
content +
that wraps
____
EOS
end
pages = pdf.pages
(expect pages).to have_size 2
gs = pdf.extract_graphic_states pages[0][:raw_content]
(expect gs[1]).to have_background color: 'EEEEEE', top_left: [48.24, 101.89], bottom_right: [48.24, 48.24]
(expect pdf.text[0][:page_number]).to eql 1
(expect pdf.text[1][:page_number]).to eql 2
(expect pdf.text[0][:y] - pdf_theme[:quote_padding]).to be > 48.24
end
end
|