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
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
|
require 'asciidoctor/pdf'
require 'base64'
require 'chunky_png'
require 'open3' unless defined? Open3
require 'pathname' unless defined? Pathname
require 'pdf/inspector'
# NOTE fix warning in Prawn::Font:TTF
Prawn::Font::TTF.prepend (Module.new do
def initialize *args
@italic_angle = nil
super
end
end)
# NOTE fix warning in TTFunk::Table
TTFunk::Table.prepend (Module.new do
def initialize *args
@offset = nil
super
end
end)
PDF::Reader.prepend (Module.new do
def source
objects.instance_variable_get :@io
end
def catalog
root
end
def outlines
objects[catalog[:Outlines]]
end
end)
PDF::Inspector::Text.prepend (Module.new do
def page= page
@page_number = page.number
super
end
def move_text_position tx, ty
@positions << [tx, ty, @page_number]
end
end)
class EnhancedPDFTextInspector < PDF::Inspector
attr_accessor :text
attr_accessor :pages
def initialize
@color = nil
@cursor = nil
@fonts = {}
@text = []
@pages = []
end
def find_text filter
filter = { string: filter } unless ::Hash === filter
if ::Regexp === filter[:string]
string_rx = filter.delete :string
@text.select {|candidate| filter <= candidate && (string_rx.match? candidate[:string]) }
else
@text.select {|candidate| filter <= candidate }
end
end
def strings text = @text
text.map {|it| it[:string] }
end
def lines text = @text
prev_y = nil
text.reduce [] do |accum, it|
current_line = prev_y && (prev_y - it[:y]).abs < 6 ? accum.pop : ''
accum << %(#{current_line}#{it[:string]})
prev_y = it[:y]
accum
end
end
def page pagenum
@pages[pagenum - 1]
end
def page= page
@pages << { size: (page.attributes[:MediaBox].slice 2, 2), text: [] }
@page_number = page.number
@state = ::PDF::Reader::PageState.new page
page.fonts.each do |label, stream|
base_font = stream[:BaseFont].to_s
base_font = (base_font.partition '+')[-1] if base_font.include? '+'
@fonts[label] = base_font
end
end
def set_text_font_and_size *params
@state.set_text_font_and_size(*params)
@font_settings = { name: @fonts[params[0]], size: params[1], color: @color }
end
def set_color_for_stroking_and_special *params
@color = params.map {|it| '%02X' % (it.to_f * 255).round }.join
end
def move_text_position x, y
@cursor = { page_number: @page_number, x: x, y: y }
end
def show_text_with_positioning chunks
show_text chunks.reject {|candidate| ::Numeric === candidate }.join, true
end
def show_text text, kerned = false
string = @state.current_font.to_utf8 text
if @cursor
accum = @cursor
accum[:order] = @text.size + 1
accum[:font_name] = @font_settings[:name]
accum[:font_size] = @font_settings[:size]
accum[:font_color] = @font_settings[:color]
accum[:string] = string
@text << accum
@pages[-1][:text] << accum
@cursor = nil
else
(accum = @text[-1])[:string] += string
end
accum[:kerned] ||= kerned
end
end
class LineInspector < PDF::Inspector
attr_accessor :lines
def initialize
@lines = []
@from = nil
@color = nil
@graphic_states = {}
@page_number = 1
@width = nil
end
def append_line x, y
@lines << { page_number: @page_number, from: @from, to: { x: x, y: y }, color: @color, width: @width }
end
def begin_new_subpath x, y
@from = { x: x, y: y }
end
def page= page
@page_number = page.number
@graphic_states = page.graphic_states
end
def set_color_for_stroking_and_special *params
@color = params.map {|it| '%02X' % (it.to_f * 255).round }.join
end
def set_graphics_state_parameters ref
if (opacity = @graphic_states[ref][:ca])
@color += '%02X' % (opacity * 255).round
end
end
def set_line_width line_width
@width = line_width
end
end
RSpec.configure do |config|
config.before :suite do
FileUtils.mkdir_p output_dir
end
config.after :suite do
FileUtils.rm_r output_dir, force: true, secure: true unless ENV.key? 'DEBUG'
end
def asciidoctor_2_or_better?
defined? Asciidoctor::Converter.for
end
def asciidoctor_1_5_7_or_better?
defined? Asciidoctor::LoggerManager
end
def asciidoctor_pdf_bin opts = {}
bin_path = File.join __dir__, '..', 'bin', 'asciidoctor-pdf'
if opts.fetch :with_ruby, true
ruby = File.join RbConfig::CONFIG['bindir'], RbConfig::CONFIG['ruby_install_name']
if (ruby_opts = opts[:ruby_opts])
[ruby, *ruby_opts, bin_path]
else
[ruby, bin_path]
end
else
bin_path
end
end
def run_command cmd, *args
Dir.chdir __dir__ do
if Array === cmd
args.unshift(*cmd)
cmd = args.shift
end
Open3.capture3 cmd, *args
end
end
def examples_dir
File.join __dir__, '..', 'examples'
end
def example_file path
File.join examples_dir, path
end
def fixtures_dir
File.join __dir__, 'fixtures'
end
def fixture_file path, opts = {}
if opts[:relative]
(((Pathname.new fixtures_dir) / path).relative_path_from Pathname.new Dir.pwd).to_s
else
File.join fixtures_dir, path
end
end
def output_dir
File.join __dir__, 'output'
end
def output_file path
File.join output_dir, path
end
(PDF_INSPECTOR_CLASS = {
text: EnhancedPDFTextInspector,
page: PDF::Inspector::Page,
rect: PDF::Inspector::Graphics::Rectangle,
line: LineInspector,
}).default = EnhancedPDFTextInspector
alias :original_to_pdf :to_pdf
def to_pdf input, opts = {}
analyze = opts.delete :analyze
opts[:attributes] = { 'imagesdir' => fixtures_dir, 'nofooter' => '' } unless opts.key? :attributes
if (attribute_overrides = opts.delete :attribute_overrides)
(opts[:attributes] ||= {}).update attribute_overrides
end
if Hash === (pdf_theme = opts[:pdf_theme])
opts[:pdf_theme] = build_pdf_theme pdf_theme
end
if Pathname === input
opts[:to_dir] = output_dir unless opts.key? :to_dir
doc = Asciidoctor.convert_file input, (opts.merge backend: 'pdf', safe: :safe)
if analyze == :document
return doc.converter
else
pdf_io = doc.attr 'outfile'
end
elsif analyze == :document
return Asciidoctor.convert input, (opts.merge backend: 'pdf', safe: :safe, header_footer: true)
else
# NOTE use header_footer for compatibility with Asciidoctor < 2
pdf_io = StringIO.new (Asciidoctor.convert input, (opts.merge backend: 'pdf', safe: :safe, header_footer: true)).render
end
analyze ? (PDF_INSPECTOR_CLASS[analyze].analyze pdf_io) : (PDF::Reader.new pdf_io)
end
def to_pdf_file input, output_filename, opts = {}
opts[:to_file] = (to_file = File.join output_dir, output_filename)
opts[:attributes] = { 'imagesdir' => fixtures_dir, 'nofooter' => '' } unless opts.key? :attributes
if (attribute_overrides = opts.delete :attribute_overrides)
(opts[:attributes] ||= {}).update attribute_overrides
end
if Hash === (pdf_theme = opts[:pdf_theme])
opts[:pdf_theme] = build_pdf_theme pdf_theme
end
if Pathname === input
Asciidoctor.convert_file input, (opts.merge backend: 'pdf', safe: :safe)
else
Asciidoctor.convert input, (opts.merge backend: 'pdf', safe: :safe, header_footer: true)
end
to_file
end
def build_pdf_theme overrides = {}
Asciidoctor::PDF::ThemeLoader.load_theme.tap {|theme| overrides.each {|k, v| theme[k] = v } }
end
def extract_outline pdf, list = pdf.outlines
result = []
objects = pdf.objects
pages = pdf.pages
entry = list[:First]
while entry
entry = objects[entry]
title = (((title = entry[:Title]).slice 2, title.size).unpack 'n*').pack 'U*'
dest = entry[:Dest]
dest_page_object = objects[dest[0]]
dest_page = pages.find {|candidate| candidate.page_object == dest_page_object }
top = dest_page.attributes[:MediaBox][3] == dest[3]
children = entry[:Count] > 0 ? (extract_outline pdf, entry) : []
result << { title: title, dest: { pagenum: dest_page.number, x: dest[2], y: dest[3], top: top }, children: children }
entry = entry[:Next]
end
result
end
def get_names pdf
objects = pdf.objects
Hash[*objects[objects[pdf.catalog[:Names]][:Dests]][:Names]]
end
def get_page_labels pdf
objects = pdf.objects
Hash[*objects[pdf.catalog[:PageLabels]][:Nums]].reduce([]) {|accum, (idx, val)| accum[idx] = val[:P]; accum }
end
def get_annotations pdf, page_num
objects = pdf.objects
(pdf.page page_num).attributes[:Annots].map {|ref| objects[ref] }
end
def get_page_size pdf, page_num
(pdf.page page_num).attributes[:MediaBox].slice 2, 2
end
def get_page_number pdf, page
page = pdf.objects[page] if PDF::Reader::Reference === page
found = pdf.pages.find {|candidate| candidate.page_object == page }
found ? found.number : nil
end
def lorem_ipsum id
(@lorem_ipsum_data ||= (YAML.load_file fixture_file 'lorem-ipsum.yml'))[id]
end
def with_memory_logger level = nil
if asciidoctor_1_5_7_or_better?
old_logger = Asciidoctor::LoggerManager.logger
logger = Asciidoctor::MemoryLogger.new
logger.level = level if level
begin
Asciidoctor::LoggerManager.logger = logger
yield logger
ensure
Asciidoctor::LoggerManager.logger = old_logger
end
else
old_stderr = $stderr
$stderr = StringIO.new
begin
yield
ensure
$stderr = old_stderr
end
end
end
def compute_image_differences reference, actual, difference = nil
diff = []
if reference
reference_image = ChunkyPNG::Image.from_file reference
if actual
actual_image = ChunkyPNG::Image.from_file actual
else
actual_image = ChunkyPNG::Image.new reference_image.width, reference_image.height
end
else
actual_image = ChunkyPNG::Image.from_file actual
reference_image = ChunkyPNG::Image.new actual_image.width, actual_image.height
end
actual_image.height.times do |y|
actual_image.row(y).each_with_index do |pixel, x|
diff << [x,y] unless pixel == reference_image[x,y]
end
end
if diff.length > 0 && difference
x = diff.map {|xy| xy[0] }
y = diff.map {|xy| xy[1] }
actual_image.rect x.min, y.min, x.max, y.max, (ChunkyPNG::Color.rgb 0, 255, 0)
actual_image.save difference
end
diff.length
end
end
RSpec::Matchers.define_negated_matcher :not_raise_exception, :raise_exception
RSpec::Matchers.define :have_size do |expected|
match {|actual| actual.size == expected }
failure_message {|actual| %(expected #{actual} to have size #{expected}, but was #{actual.size}) }
end
RSpec::Matchers.define :have_message do |expected|
match do |logger|
result = false
if (messages = logger.messages).size == 1
if (message = messages[0])[:severity] == expected[:severity]
if Regexp === (expected_message = expected[:message])
result = true if expected_message.match? message[:message]
elsif expected_message.start_with? '~'
result = true if message[:message].include? expected_message[1..-1]
elsif message[:message] === expected_message
result = true
end
end
end
result
end
failure_message { %(expected #{expected[:severity]} message#{expected[:message].chr == '~' ? ' containing ' : ' matching '}`#{expected[:message]}' to have been logged) }
end
RSpec::Matchers.define :log_message do |expected|
match notify_expectation_failures: true do |actual|
with_memory_logger do |logger|
actual.call
(expect logger).to have_message expected if logger
true
end
end
supports_block_expectations
end
RSpec::Matchers.define :visually_match do |reference_filename|
reference_path = (Pathname.new reference_filename).absolute? ? reference_filename : (File.join __dir__, 'reference', reference_filename)
match do |actual_path|
return false unless File.exist? reference_path
images_output_dir = output_file 'visual-comparison-workdir'
Dir.mkdir images_output_dir unless Dir.exist? images_output_dir
output_basename = File.join images_output_dir, (File.basename actual_path, '.pdf')
system 'pdftocairo', '-png', actual_path, %(#{output_basename}-actual)
system 'pdftocairo', '-png', reference_path, %(#{output_basename}-reference)
pixels = 0
Dir[%(#{output_basename}-{actual,reference}-*.png)].map {|filename|
(/-(?:actual|reference)-(\d+)\.png$/.match filename)[1]
}.sort.uniq.each do |idx|
reference_page_filename = %(#{output_basename}-reference-#{idx}.png)
reference_page_filename = nil unless File.exist? reference_page_filename
actual_page_filename = %(#{output_basename}-actual-#{idx}.png)
actual_page_filename = nil unless File.exist? actual_page_filename
next if reference_page_filename && actual_page_filename && (FileUtils.compare_file reference_page_filename, actual_page_filename)
pixels += compute_image_differences reference_page_filename, actual_page_filename, %(#{output_basename}-diff-#{idx}.png)
end
pixels.zero?
end
failure_message {|actual_path| %(expected #{actual_path} to be visually identical to #{reference_path}) }
end
|