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
|
# frozen_string_literal: true
require_relative 'spec_helper'
describe 'Asciidoctor::PDF::Converter - Floating Title' do
it 'should apply alignment defined for headings in theme' do
pdf_theme = {
heading_text_align: 'center',
}
pdf = to_pdf <<~'EOS', pdf_theme: pdf_theme, analyze: true
[discrete]
== Discrete Heading
main content
EOS
discrete_heading_text = pdf.find_unique_text 'Discrete Heading'
main_text = pdf.find_unique_text 'main content'
(expect discrete_heading_text[:x]).to be > main_text[:x]
end
it 'should apply alignment defined for heading level in theme' do
pdf_theme = {
heading_text_align: 'left',
heading_h2_text_align: 'center',
}
pdf = to_pdf <<~'EOS', pdf_theme: pdf_theme, analyze: true
[discrete]
== Discrete Heading
main content
EOS
discrete_heading_text = pdf.find_unique_text 'Discrete Heading'
main_text = pdf.find_unique_text 'main content'
(expect discrete_heading_text[:x]).to be > main_text[:x]
end
it 'should use base text align to align floating title if theme does not specify alignemnt' do
pdf_theme = {
base_text_align: 'center',
heading_h2_text_align: nil,
heading_text_align: nil,
}
pdf = to_pdf <<~'EOS', pdf_theme: pdf_theme, analyze: true
[discrete]
== Discrete Heading
[.text-left]
main content
EOS
discrete_heading_text = pdf.find_unique_text 'Discrete Heading'
main_text = pdf.find_unique_text 'main content'
(expect discrete_heading_text[:x]).to be > main_text[:x]
end
it 'should outdent discrete heading' do
pdf = to_pdf <<~'EOS', pdf_theme: { section_indent: 36 }, analyze: true
= Document Title
== Section
paragraph
[discrete]
=== Discrete Heading
paragraph
=== Nested Section
paragraph
[discrete]
==== Another Discrete Heading
paragraph
EOS
discrete_heading_texts = pdf.find_text %r/Discrete/
(expect discrete_heading_texts).to have_size 2
(expect discrete_heading_texts[0][:x]).to eql 48.24
(expect discrete_heading_texts[1][:x]).to eql 48.24
paragraph_texts = pdf.find_text 'paragraph'
(expect paragraph_texts.map {|it| it[:x] }.uniq).to eql [84.24]
end
it 'should not outdent discrete heading inside block' do
pdf = to_pdf <<~'EOS', pdf_theme: { section_indent: 36 }, analyze: true
== Section
****
sidebar content
[discrete]
== Discrete Heading
****
EOS
sidebar_content_text = (pdf.find_text 'sidebar content')[0]
discrete_heading_text = (pdf.find_text 'Discrete Heading')[0]
(expect sidebar_content_text[:x]).to eql discrete_heading_text[:x]
end
it 'should honor text alignment role on discrete heading' do
pdf = to_pdf <<~'EOS', analyze: true
[discrete]
== Discrete Heading
EOS
left_x = (pdf.find_text 'Discrete Heading')[0][:x]
pdf = to_pdf <<~'EOS', analyze: true
[discrete.text-right]
== Discrete Heading
EOS
right_x = (pdf.find_text 'Discrete Heading')[0][:x]
(expect right_x).to be > left_x
end
it 'should allow theme to add borders and padding to specific heading levels' do
pdf_theme = {
heading_line_height: 1,
heading_font_family: 'Times-Roman',
heading_h2_border_width: [2, 0],
heading_h2_border_color: 'AA0000',
heading_h2_padding: [10, 0],
heading_h3_border_width: [0, 0, 1, 0],
heading_h3_border_style: 'dashed',
heading_h3_border_color: 'DDDDDD',
heading_h3_padding: [0, 0, 5],
}
input = <<~'EOS'
[discrete]
== Heading Level 1
content
[discrete]
=== Heading Level 2
content
EOS
lines = (to_pdf input, pdf_theme: pdf_theme, analyze: :line).lines
pdf = to_pdf input, pdf_theme: pdf_theme, analyze: true, debug: true
(expect lines).to have_size 3
(expect lines[0][:color]).to eql 'AA0000'
(expect lines[0][:width]).to eql 2
(expect lines[0][:style]).to eql :solid
(expect lines[1][:color]).to eql 'AA0000'
(expect lines[1][:width]).to eql 2
(expect lines[1][:style]).to eql :solid
(expect lines[2][:color]).to eql 'DDDDDD'
(expect lines[2][:width]).to eql 1
(expect lines[2][:style]).to eql :dashed
lines.each do |line|
(expect line[:from][:y]).to eql line[:to][:y]
end
heading_level_1_text = pdf.find_unique_text 'Heading Level 1'
heading_level_2_text = pdf.find_unique_text 'Heading Level 2'
(expect lines[0][:from][:y]).to be > heading_level_1_text[:y]
(expect lines[1][:from][:y]).to be < heading_level_1_text[:y]
(expect lines[2][:from][:y]).to be < heading_level_2_text[:y]
(expect heading_level_1_text[:y] - lines[1][:from][:y]).to be > 10
(expect heading_level_2_text[:y] - lines[2][:from][:y]).to be > 5
end
end
|