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
|
# frozen_string_literal: true
require_relative 'spec_helper'
describe 'Asciidoctor::PDF::Converter - Example' do
it 'should keep block together if it can fit on one page' do
pdf = to_pdf <<~EOS, analyze: true
#{(['filler'] * 15).join %(\n\n)}
====
#{(['content'] * 15).join %(\n\n)}
====
EOS
example_text = (pdf.find_text 'content')[0]
(expect example_text[:page_number]).to be 2
end
it 'should include title if specified' do
pdf = to_pdf <<~'EOS', analyze: true
.Title
====
Content
====
EOS
title_texts = pdf.find_text 'Example 1. Title'
(expect title_texts).to have_size 1
end
it 'should include title if specified and background and border are not' do
pdf = to_pdf <<~'EOS', pdf_theme: { example_background_color: 'transparent', example_border_width: 0 }, analyze: true
.Title
====
Content
====
EOS
title_texts = pdf.find_text 'Example 1. Title'
(expect title_texts).to have_size 1
end
it 'should keep title with content when block is advanced to next page' do
pdf = to_pdf <<~EOS, analyze: true
#{(['filler'] * 15).join %(\n\n)}
.Title
====
#{(['content'] * 15).join %(\n\n)}
====
EOS
example_title_text = (pdf.find_text 'Example 1. Title')[0]
example_content_text = (pdf.find_text 'content')[0]
(expect example_title_text[:page_number]).to be 2
(expect example_content_text[:page_number]).to be 2
end
it 'should split block if it cannot fit on one page' do
pdf = to_pdf <<~EOS, analyze: true
.Title
====
#{(['content'] * 30).join %(\n\n)}
====
EOS
example_title_text = (pdf.find_text 'Example 1. Title')[0]
example_content_text = (pdf.find_text 'content')
(expect example_title_text[:page_number]).to be 1
(expect example_content_text[0][:page_number]).to be 1
(expect example_content_text[-1][:page_number]).to be 2
end
it 'should split border when block is split across pages', visual: true do
to_file = to_pdf_file <<~EOS, 'example-page-split.pdf'
.Title
====
#{(['content'] * 30).join %(\n\n)}
====
EOS
(expect to_file).to visually_match 'example-page-split.pdf'
end
it 'should not add signifier and numeral to caption if example-caption attribute is unset' do
pdf = to_pdf <<~'EOS', analyze: true
:!example-caption:
.Title
====
content
====
EOS
(expect pdf.lines[0]).to eql 'Title'
end
it 'should allow theme to override caption for example blocks' do
pdf_theme = {
caption_font_color: '0000ff',
example_caption_font_style: 'bold',
}
pdf = to_pdf <<~'EOS', pdf_theme: pdf_theme, analyze: true
.Title
====
content
====
EOS
title_text = (pdf.find_text 'Example 1. Title')[0]
(expect title_text[:font_color]).to eql '0000FF'
(expect title_text[:font_name]).to eql 'NotoSerif-Bold'
end
it 'should apply text decoration to caption' do
pdf_theme = {
caption_text_decoration: 'underline',
caption_text_decoration_color: 'DDDDDD',
}
pdf = to_pdf <<~'EOS', pdf_theme: pdf_theme, analyze: :line
.Title
====
content
====
EOS
underline = pdf.lines.find {|it| it[:color] = 'DDDDDD' }
(expect underline).not_to be_nil
(expect underline[:from][:y]).to eql underline[:to][:y]
(expect underline[:from][:x]).to be < underline[:to][:x]
end
it 'should apply border style set by theme' do
pdf_theme = {
example_border_style: 'double',
example_border_width: 3,
example_border_radius: 0,
example_border_color: '333333',
}
pdf = to_pdf <<~'EOS', pdf_theme: pdf_theme, analyze: :line
====
example
content
here
====
EOS
lines = pdf.lines
(expect lines).to have_size 8
(expect lines.map {|it| it[:width] }.uniq).to eql [1.0]
outer_left_x = 48.24
outer_right_x = 547.04
outer_lines = lines.select {|it| it[:from][:x] == outer_left_x || it[:from][:x] == outer_right_x }
(expect outer_lines).to have_size 4
inner_left_x = 50.24
inner_right_x = 545.04
inner_lines = lines.select {|it| it[:from][:x] == inner_left_x || it[:from][:x] == inner_right_x }
(expect inner_lines).to have_size 4
end
it 'should use informal title and no border or shading if collapsible option is set' do
input = <<~'EOS'
.Reveal Answer
[%collapsible]
====
This is a PDF, so the answer is always visible.
====
EOS
pdf = to_pdf input, analyze: true
lines = pdf.lines
(expect lines).to eql [%(\u25bc Reveal Answer), 'This is a PDF, so the answer is always visible.']
(expect pdf.text[0][:x]).to eql pdf.text[1][:x]
pdf = to_pdf input, analyze: :line
(expect pdf.lines).to be_empty
end
end
|