prawn 0.15.0 → 1.0.0.rc1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (269) hide show
  1. data/COPYING +2 -2
  2. data/LICENSE +1 -1
  3. data/README.md +96 -0
  4. data/Rakefile +27 -30
  5. data/data/fonts/Action Man.dfont +0 -0
  6. data/data/fonts/Activa.ttf +0 -0
  7. data/data/fonts/Chalkboard.ttf +0 -0
  8. data/data/fonts/DejaVuSans.ttf +0 -0
  9. data/data/fonts/Dustismo_Roman.ttf +0 -0
  10. data/data/fonts/comicsans.ttf +0 -0
  11. data/data/fonts/gkai00mp.ttf +0 -0
  12. data/data/images/16bit.alpha +0 -0
  13. data/data/images/16bit.dat +0 -0
  14. data/data/images/dice.alpha +0 -0
  15. data/data/images/dice.dat +0 -0
  16. data/data/images/page_white_text.alpha +0 -0
  17. data/data/images/page_white_text.dat +0 -0
  18. data/data/images/rails.dat +0 -0
  19. data/data/images/rails.png +0 -0
  20. data/data/pdfs/nested_pages.pdf +13 -13
  21. data/lib/prawn.rb +21 -85
  22. data/lib/prawn/compatibility.rb +51 -0
  23. data/lib/prawn/core.rb +85 -0
  24. data/lib/prawn/core/annotations.rb +61 -0
  25. data/lib/prawn/core/byte_string.rb +9 -0
  26. data/lib/prawn/core/destinations.rb +90 -0
  27. data/lib/prawn/core/document_state.rb +78 -0
  28. data/lib/prawn/core/literal_string.rb +16 -0
  29. data/lib/prawn/core/name_tree.rb +177 -0
  30. data/lib/prawn/core/object_store.rb +264 -0
  31. data/lib/prawn/core/page.rb +215 -0
  32. data/lib/prawn/core/pdf_object.rb +108 -0
  33. data/lib/prawn/core/reference.rb +115 -0
  34. data/lib/prawn/core/text.rb +268 -0
  35. data/lib/prawn/core/text/formatted/arranger.rb +294 -0
  36. data/lib/prawn/core/text/formatted/line_wrap.rb +273 -0
  37. data/lib/prawn/core/text/formatted/wrap.rb +153 -0
  38. data/lib/prawn/document.rb +122 -155
  39. data/lib/prawn/document/bounding_box.rb +7 -36
  40. data/lib/prawn/document/column_box.rb +10 -38
  41. data/lib/prawn/document/graphics_state.rb +74 -11
  42. data/lib/prawn/document/internals.rb +23 -24
  43. data/lib/prawn/document/page_geometry.rb +136 -0
  44. data/lib/prawn/document/snapshot.rb +6 -7
  45. data/lib/prawn/document/span.rb +10 -12
  46. data/lib/prawn/encoding.rb +10 -9
  47. data/lib/prawn/errors.rb +30 -15
  48. data/lib/prawn/font.rb +104 -136
  49. data/lib/prawn/font/afm.rb +44 -46
  50. data/lib/prawn/font/dfont.rb +3 -4
  51. data/lib/prawn/font/ttf.rb +50 -31
  52. data/lib/prawn/graphics.rb +57 -302
  53. data/lib/prawn/graphics/cap_style.rb +3 -4
  54. data/lib/prawn/graphics/color.rb +5 -13
  55. data/lib/prawn/graphics/dash.rb +31 -53
  56. data/lib/prawn/graphics/gradient.rb +84 -0
  57. data/lib/prawn/graphics/join_style.rb +7 -9
  58. data/lib/prawn/graphics/transformation.rb +9 -10
  59. data/lib/prawn/graphics/transparency.rb +1 -3
  60. data/lib/prawn/images.rb +59 -69
  61. data/lib/prawn/images/image.rb +22 -6
  62. data/lib/prawn/images/jpg.rb +14 -20
  63. data/lib/prawn/images/png.rb +118 -61
  64. data/lib/prawn/layout.rb +15 -10
  65. data/lib/prawn/layout/grid.rb +54 -66
  66. data/lib/prawn/measurement_extensions.rb +6 -10
  67. data/lib/prawn/measurements.rb +21 -27
  68. data/lib/prawn/outline.rb +308 -6
  69. data/lib/prawn/repeater.rb +8 -10
  70. data/lib/prawn/security.rb +33 -55
  71. data/lib/prawn/security/arcfour.rb +0 -1
  72. data/lib/prawn/stamp.rb +3 -5
  73. data/lib/prawn/table.rb +60 -188
  74. data/lib/prawn/table/cell.rb +44 -272
  75. data/lib/prawn/table/cell/image.rb +3 -2
  76. data/lib/prawn/table/cell/in_table.rb +2 -4
  77. data/lib/prawn/table/cell/subtable.rb +2 -2
  78. data/lib/prawn/table/cell/text.rb +18 -41
  79. data/lib/prawn/table/cells.rb +48 -142
  80. data/lib/prawn/text.rb +25 -32
  81. data/lib/prawn/text/box.rb +6 -12
  82. data/lib/prawn/text/formatted.rb +4 -5
  83. data/lib/prawn/text/formatted/box.rb +59 -96
  84. data/lib/prawn/text/formatted/fragment.rb +23 -34
  85. data/lib/prawn/text/formatted/parser.rb +5 -15
  86. data/prawn.gemspec +13 -24
  87. data/spec/annotations_spec.rb +32 -16
  88. data/spec/bounding_box_spec.rb +17 -119
  89. data/spec/cell_spec.rb +42 -112
  90. data/spec/destinations_spec.rb +5 -5
  91. data/spec/document_spec.rb +111 -155
  92. data/spec/extensions/mocha.rb +0 -1
  93. data/spec/font_spec.rb +99 -149
  94. data/spec/formatted_text_arranger_spec.rb +43 -43
  95. data/spec/formatted_text_box_spec.rb +44 -43
  96. data/spec/formatted_text_fragment_spec.rb +8 -8
  97. data/spec/graphics_spec.rb +68 -151
  98. data/spec/grid_spec.rb +15 -26
  99. data/spec/images_spec.rb +30 -51
  100. data/spec/inline_formatted_text_parser_spec.rb +20 -69
  101. data/spec/jpg_spec.rb +4 -4
  102. data/spec/line_wrap_spec.rb +28 -28
  103. data/spec/measurement_units_spec.rb +6 -6
  104. data/spec/name_tree_spec.rb +112 -0
  105. data/spec/object_store_spec.rb +106 -17
  106. data/spec/outline_spec.rb +63 -103
  107. data/spec/pdf_object_spec.rb +170 -0
  108. data/spec/png_spec.rb +25 -25
  109. data/spec/reference_spec.rb +65 -8
  110. data/spec/repeater_spec.rb +10 -10
  111. data/spec/security_spec.rb +12 -44
  112. data/spec/snapshot_spec.rb +7 -7
  113. data/spec/span_spec.rb +15 -10
  114. data/spec/spec_helper.rb +8 -32
  115. data/spec/stamp_spec.rb +30 -29
  116. data/spec/stroke_styles_spec.rb +18 -36
  117. data/spec/table_spec.rb +111 -706
  118. data/spec/template_spec.rb +297 -0
  119. data/spec/text_at_spec.rb +33 -19
  120. data/spec/text_box_spec.rb +64 -100
  121. data/spec/text_rendering_mode_spec.rb +5 -5
  122. data/spec/text_spacing_spec.rb +4 -4
  123. data/spec/text_spec.rb +64 -84
  124. data/spec/transparency_spec.rb +5 -5
  125. metadata +290 -463
  126. checksums.yaml +0 -7
  127. data/.yardopts +0 -10
  128. data/Gemfile +0 -11
  129. data/data/images/16bit.color +0 -0
  130. data/data/images/dice.color +0 -0
  131. data/data/images/indexed_color.dat +0 -0
  132. data/data/images/indexed_color.png +0 -0
  133. data/data/images/page_white_text.color +0 -0
  134. data/lib/prawn/font_metric_cache.rb +0 -47
  135. data/lib/prawn/graphics/patterns.rb +0 -138
  136. data/lib/prawn/image_handler.rb +0 -36
  137. data/lib/prawn/soft_mask.rb +0 -96
  138. data/lib/prawn/table/cell/span_dummy.rb +0 -93
  139. data/lib/prawn/table/column_width_calculator.rb +0 -61
  140. data/lib/prawn/text/formatted/arranger.rb +0 -290
  141. data/lib/prawn/text/formatted/line_wrap.rb +0 -266
  142. data/lib/prawn/text/formatted/wrap.rb +0 -150
  143. data/lib/prawn/utilities.rb +0 -46
  144. data/manual/basic_concepts/adding_pages.rb +0 -27
  145. data/manual/basic_concepts/basic_concepts.rb +0 -34
  146. data/manual/basic_concepts/creation.rb +0 -39
  147. data/manual/basic_concepts/cursor.rb +0 -33
  148. data/manual/basic_concepts/measurement.rb +0 -25
  149. data/manual/basic_concepts/origin.rb +0 -38
  150. data/manual/basic_concepts/other_cursor_helpers.rb +0 -40
  151. data/manual/bounding_box/bounding_box.rb +0 -39
  152. data/manual/bounding_box/bounds.rb +0 -49
  153. data/manual/bounding_box/canvas.rb +0 -24
  154. data/manual/bounding_box/creation.rb +0 -23
  155. data/manual/bounding_box/indentation.rb +0 -46
  156. data/manual/bounding_box/nesting.rb +0 -45
  157. data/manual/bounding_box/russian_boxes.rb +0 -40
  158. data/manual/bounding_box/stretchy.rb +0 -31
  159. data/manual/document_and_page_options/background.rb +0 -27
  160. data/manual/document_and_page_options/document_and_page_options.rb +0 -32
  161. data/manual/document_and_page_options/metadata.rb +0 -23
  162. data/manual/document_and_page_options/page_margins.rb +0 -38
  163. data/manual/document_and_page_options/page_size.rb +0 -34
  164. data/manual/document_and_page_options/print_scaling.rb +0 -20
  165. data/manual/example_file.rb +0 -111
  166. data/manual/example_helper.rb +0 -411
  167. data/manual/example_package.rb +0 -53
  168. data/manual/example_section.rb +0 -46
  169. data/manual/graphics/circle_and_ellipse.rb +0 -22
  170. data/manual/graphics/color.rb +0 -24
  171. data/manual/graphics/common_lines.rb +0 -30
  172. data/manual/graphics/fill_and_stroke.rb +0 -42
  173. data/manual/graphics/fill_rules.rb +0 -37
  174. data/manual/graphics/gradients.rb +0 -37
  175. data/manual/graphics/graphics.rb +0 -58
  176. data/manual/graphics/helper.rb +0 -24
  177. data/manual/graphics/line_width.rb +0 -35
  178. data/manual/graphics/lines_and_curves.rb +0 -41
  179. data/manual/graphics/polygon.rb +0 -29
  180. data/manual/graphics/rectangle.rb +0 -21
  181. data/manual/graphics/rotate.rb +0 -28
  182. data/manual/graphics/scale.rb +0 -41
  183. data/manual/graphics/soft_masks.rb +0 -46
  184. data/manual/graphics/stroke_cap.rb +0 -31
  185. data/manual/graphics/stroke_dash.rb +0 -48
  186. data/manual/graphics/stroke_join.rb +0 -30
  187. data/manual/graphics/translate.rb +0 -29
  188. data/manual/graphics/transparency.rb +0 -35
  189. data/manual/images/absolute_position.rb +0 -23
  190. data/manual/images/fit.rb +0 -21
  191. data/manual/images/horizontal.rb +0 -25
  192. data/manual/images/images.rb +0 -40
  193. data/manual/images/plain_image.rb +0 -18
  194. data/manual/images/scale.rb +0 -22
  195. data/manual/images/vertical.rb +0 -28
  196. data/manual/images/width_and_height.rb +0 -25
  197. data/manual/layout/boxes.rb +0 -27
  198. data/manual/layout/content.rb +0 -25
  199. data/manual/layout/layout.rb +0 -28
  200. data/manual/layout/simple_grid.rb +0 -23
  201. data/manual/manual/cover.rb +0 -36
  202. data/manual/manual/foreword.rb +0 -85
  203. data/manual/manual/how_to_read_this_manual.rb +0 -41
  204. data/manual/manual/manual.rb +0 -34
  205. data/manual/outline/add_subsection_to.rb +0 -61
  206. data/manual/outline/insert_section_after.rb +0 -47
  207. data/manual/outline/outline.rb +0 -32
  208. data/manual/outline/sections_and_pages.rb +0 -67
  209. data/manual/repeatable_content/page_numbering.rb +0 -54
  210. data/manual/repeatable_content/repeatable_content.rb +0 -31
  211. data/manual/repeatable_content/repeater.rb +0 -55
  212. data/manual/repeatable_content/stamp.rb +0 -41
  213. data/manual/security/encryption.rb +0 -31
  214. data/manual/security/permissions.rb +0 -38
  215. data/manual/security/security.rb +0 -28
  216. data/manual/syntax_highlight.rb +0 -52
  217. data/manual/table/basic_block.rb +0 -53
  218. data/manual/table/before_rendering_page.rb +0 -26
  219. data/manual/table/cell_border_lines.rb +0 -24
  220. data/manual/table/cell_borders_and_bg.rb +0 -31
  221. data/manual/table/cell_dimensions.rb +0 -30
  222. data/manual/table/cell_text.rb +0 -38
  223. data/manual/table/column_widths.rb +0 -30
  224. data/manual/table/content_and_subtables.rb +0 -39
  225. data/manual/table/creation.rb +0 -27
  226. data/manual/table/filtering.rb +0 -36
  227. data/manual/table/flow_and_header.rb +0 -17
  228. data/manual/table/image_cells.rb +0 -33
  229. data/manual/table/position.rb +0 -29
  230. data/manual/table/row_colors.rb +0 -20
  231. data/manual/table/span.rb +0 -30
  232. data/manual/table/style.rb +0 -22
  233. data/manual/table/table.rb +0 -52
  234. data/manual/table/width.rb +0 -27
  235. data/manual/text/alignment.rb +0 -44
  236. data/manual/text/color.rb +0 -24
  237. data/manual/text/column_box.rb +0 -32
  238. data/manual/text/fallback_fonts.rb +0 -37
  239. data/manual/text/font.rb +0 -41
  240. data/manual/text/font_size.rb +0 -45
  241. data/manual/text/font_style.rb +0 -23
  242. data/manual/text/formatted_callbacks.rb +0 -60
  243. data/manual/text/formatted_text.rb +0 -54
  244. data/manual/text/free_flowing_text.rb +0 -51
  245. data/manual/text/group.rb +0 -31
  246. data/manual/text/inline.rb +0 -43
  247. data/manual/text/kerning_and_character_spacing.rb +0 -39
  248. data/manual/text/leading.rb +0 -25
  249. data/manual/text/line_wrapping.rb +0 -41
  250. data/manual/text/paragraph_indentation.rb +0 -26
  251. data/manual/text/positioned_text.rb +0 -38
  252. data/manual/text/registering_families.rb +0 -48
  253. data/manual/text/rendering_and_color.rb +0 -37
  254. data/manual/text/right_to_left_text.rb +0 -43
  255. data/manual/text/rotation.rb +0 -43
  256. data/manual/text/single_usage.rb +0 -37
  257. data/manual/text/text.rb +0 -75
  258. data/manual/text/text_box_excess.rb +0 -32
  259. data/manual/text/text_box_extensions.rb +0 -45
  260. data/manual/text/text_box_overflow.rb +0 -44
  261. data/manual/text/utf8.rb +0 -28
  262. data/manual/text/win_ansi_charset.rb +0 -59
  263. data/spec/acceptance/png.rb +0 -23
  264. data/spec/column_box_spec.rb +0 -65
  265. data/spec/extensions/encoding_helpers.rb +0 -9
  266. data/spec/font_metric_cache_spec.rb +0 -52
  267. data/spec/image_handler_spec.rb +0 -54
  268. data/spec/soft_mask_spec.rb +0 -117
  269. data/spec/table/span_dummy_spec.rb +0 -17
data/spec/jpg_spec.rb CHANGED
@@ -4,18 +4,18 @@
4
4
  # contents of palette and transparency to ensure they're correct.
5
5
  # Need to find files that have these sections first.
6
6
 
7
- require File.join(File.expand_path(File.dirname(__FILE__)), "spec_helper")
7
+ require File.join(File.expand_path(File.dirname(__FILE__)), "spec_helper")
8
8
 
9
9
  describe "When reading a JPEG file" do
10
10
 
11
11
  before(:each) do
12
- @filename = "#{Prawn::DATADIR}/images/pigs.jpg"
12
+ @filename = "#{Prawn::BASEDIR}/data/images/pigs.jpg"
13
13
  @img_data = File.open(@filename, "rb") { |f| f.read }
14
14
  end
15
-
15
+
16
16
  it "should read the basic attributes correctly" do
17
17
  jpg = Prawn::Images::JPG.new(@img_data)
18
-
18
+
19
19
  jpg.width.should == 604
20
20
  jpg.height.should == 453
21
21
  jpg.bits.should == 8
@@ -5,8 +5,8 @@ require File.join(File.expand_path(File.dirname(__FILE__)), "spec_helper")
5
5
  describe "Core::Text::Formatted::LineWrap#wrap_line" do
6
6
  before(:each) do
7
7
  create_pdf
8
- @arranger = Prawn::Text::Formatted::Arranger.new(@pdf)
9
- @line_wrap = Prawn::Text::Formatted::LineWrap.new
8
+ @arranger = Prawn::Core::Text::Formatted::Arranger.new(@pdf)
9
+ @line_wrap = Prawn::Core::Text::Formatted::LineWrap.new
10
10
  @one_word_width = 50
11
11
  end
12
12
  it "should strip leading and trailing spaces" do
@@ -30,7 +30,7 @@ describe "Core::Text::Formatted::LineWrap#wrap_line" do
30
30
  :document => @pdf)
31
31
  string.should == "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
32
32
  end
33
- it "should raise_error CannotFit if a too-small width is given" do
33
+ it "should raise CannotFit if a too-small width is given" do
34
34
  array = [{ :text => " hello world, " },
35
35
  { :text => "goodbye ", :style => [:bold] }]
36
36
  @arranger.format_array = array
@@ -38,7 +38,7 @@ describe "Core::Text::Formatted::LineWrap#wrap_line" do
38
38
  @line_wrap.wrap_line(:arranger => @arranger,
39
39
  :width => 1,
40
40
  :document => @pdf)
41
- end.should raise_error(Prawn::Errors::CannotFit)
41
+ end.should.raise(Prawn::Errors::CannotFit)
42
42
  end
43
43
 
44
44
  it "should break on space" do
@@ -51,7 +51,7 @@ describe "Core::Text::Formatted::LineWrap#wrap_line" do
51
51
  end
52
52
 
53
53
  it "should break on zero-width space" do
54
- @pdf.font("#{Prawn::DATADIR}/fonts/DejaVuSans.ttf")
54
+ @pdf.font("#{Prawn::BASEDIR}/data/fonts/DejaVuSans.ttf")
55
55
  array = [{ :text => "hello#{Prawn::Text::ZWSP}world" }]
56
56
  @arranger.format_array = array
57
57
  string = @line_wrap.wrap_line(:arranger => @arranger,
@@ -61,7 +61,7 @@ describe "Core::Text::Formatted::LineWrap#wrap_line" do
61
61
  end
62
62
 
63
63
  it "should not display zero-width space" do
64
- @pdf.font("#{Prawn::DATADIR}/fonts/DejaVuSans.ttf")
64
+ @pdf.font("#{Prawn::BASEDIR}/data/fonts/DejaVuSans.ttf")
65
65
  array = [{ :text => "hello#{Prawn::Text::ZWSP}world" }]
66
66
  @arranger.format_array = array
67
67
  string = @line_wrap.wrap_line(:arranger => @arranger,
@@ -113,11 +113,11 @@ describe "Core::Text::Formatted::LineWrap#wrap_line" do
113
113
  :width => @one_word_width,
114
114
  :document => @pdf)
115
115
  expected = @pdf.font.normalize_encoding("hello#{Prawn::Text::SHY}")
116
- expected.force_encoding(Encoding::UTF_8)
116
+ expected.force_encoding("utf-8") if "".respond_to?(:force_encoding)
117
117
  string.should == expected
118
118
 
119
- @pdf.font("#{Prawn::DATADIR}/fonts/DejaVuSans.ttf")
120
- @line_wrap = Prawn::Text::Formatted::LineWrap.new
119
+ @pdf.font("#{Prawn::BASEDIR}/data/fonts/DejaVuSans.ttf")
120
+ @line_wrap = Prawn::Core::Text::Formatted::LineWrap.new
121
121
 
122
122
  string = "hello#{Prawn::Text::SHY}world"
123
123
  array = [{ :text => string }]
@@ -137,8 +137,8 @@ describe "Core::Text::Formatted::LineWrap#wrap_line" do
137
137
  :document => @pdf)
138
138
  string.should == "helloworld"
139
139
 
140
- @pdf.font("#{Prawn::DATADIR}/fonts/DejaVuSans.ttf")
141
- @line_wrap = Prawn::Text::Formatted::LineWrap.new
140
+ @pdf.font("#{Prawn::BASEDIR}/data/fonts/DejaVuSans.ttf")
141
+ @line_wrap = Prawn::Core::Text::Formatted::LineWrap.new
142
142
 
143
143
  string = "hello#{Prawn::Text::SHY}world"
144
144
  array = [{ :text => string }]
@@ -166,8 +166,8 @@ describe "Core::Text::Formatted::LineWrap#wrap_line" do
166
166
  :document => @pdf)
167
167
  string.should == "hello"
168
168
 
169
- @pdf.font("#{Prawn::DATADIR}/fonts/DejaVuSans.ttf")
170
- @line_wrap = Prawn::Text::Formatted::LineWrap.new
169
+ @pdf.font("#{Prawn::BASEDIR}/data/fonts/DejaVuSans.ttf")
170
+ @line_wrap = Prawn::Core::Text::Formatted::LineWrap.new
171
171
  enough_width_for_hello_world = 68
172
172
 
173
173
  array = [{ :text => "hello world" }]
@@ -202,11 +202,11 @@ describe "Core::Text::Formatted::LineWrap#wrap_line" do
202
202
  :width => @one_word_width,
203
203
  :document => @pdf)
204
204
  expected = @pdf.font.normalize_encoding("hello#{Prawn::Text::SHY}")
205
- expected.force_encoding(Encoding::UTF_8)
205
+ expected.force_encoding("utf-8") if "".respond_to?(:force_encoding)
206
206
  string.should == expected
207
207
 
208
- @pdf.font("#{Prawn::DATADIR}/fonts/DejaVuSans.ttf")
209
- @line_wrap = Prawn::Text::Formatted::LineWrap.new
208
+ @pdf.font("#{Prawn::BASEDIR}/data/fonts/DejaVuSans.ttf")
209
+ @line_wrap = Prawn::Core::Text::Formatted::LineWrap.new
210
210
 
211
211
  string = "hello#{Prawn::Text::SHY}-"
212
212
  array = [{ :text => string }]
@@ -229,8 +229,8 @@ end
229
229
  describe "Core::Text::Formatted::LineWrap#space_count" do
230
230
  before(:each) do
231
231
  create_pdf
232
- @arranger = Prawn::Text::Formatted::Arranger.new(@pdf)
233
- @line_wrap = Prawn::Text::Formatted::LineWrap.new
232
+ @arranger = Prawn::Core::Text::Formatted::Arranger.new(@pdf)
233
+ @line_wrap = Prawn::Core::Text::Formatted::LineWrap.new
234
234
  end
235
235
  it "should return the number of spaces in the last wrapped line" do
236
236
  array = [{ :text => "hello world, " },
@@ -255,7 +255,7 @@ end
255
255
  describe "Core::Text::Formatted::LineWrap" do
256
256
  before(:each) do
257
257
  create_pdf
258
- @arranger = Prawn::Text::Formatted::Arranger.new(@pdf)
258
+ @arranger = Prawn::Core::Text::Formatted::Arranger.new(@pdf)
259
259
  array = [{ :text => "hello\nworld\n\n\nhow are you?" },
260
260
  { :text => "\n" },
261
261
  { :text => "\n" },
@@ -265,7 +265,7 @@ describe "Core::Text::Formatted::LineWrap" do
265
265
  { :text => "\n" },
266
266
  { :text => "" }]
267
267
  @arranger.format_array = array
268
- @line_wrap = Prawn::Text::Formatted::LineWrap.new
268
+ @line_wrap = Prawn::Core::Text::Formatted::LineWrap.new
269
269
  end
270
270
  it "should only return an empty string if nothing fit or there" +
271
271
  "was nothing to wrap" do
@@ -273,23 +273,23 @@ describe "Core::Text::Formatted::LineWrap" do
273
273
  line = @line_wrap.wrap_line(:arranger => @arranger,
274
274
  :width => 200,
275
275
  :document => @pdf)
276
- line.should_not be_empty
276
+ line.should.not.be.empty
277
277
  end
278
278
  line = @line_wrap.wrap_line(:arranger => @arranger,
279
279
  :width => 200,
280
280
  :document => @pdf)
281
- line.should be_empty
281
+ line.should.be.empty
282
282
  end
283
283
  end
284
284
 
285
285
  describe "Core::Text::Formatted::LineWrap#paragraph_finished?" do
286
286
  before(:each) do
287
287
  create_pdf
288
- @arranger = Prawn::Text::Formatted::Arranger.new(@pdf)
289
- @line_wrap = Prawn::Text::Formatted::LineWrap.new
288
+ @arranger = Prawn::Core::Text::Formatted::Arranger.new(@pdf)
289
+ @line_wrap = Prawn::Core::Text::Formatted::LineWrap.new
290
290
  @one_word_width = 50
291
291
  end
292
- it "should be_false when the last printed line is not the end of the paragraph" do
292
+ it "should be false when the last printed line is not the end of the paragraph" do
293
293
  array = [{ :text => "hello world" }]
294
294
  @arranger.format_array = array
295
295
  string = @line_wrap.wrap_line(:arranger => @arranger,
@@ -298,7 +298,7 @@ describe "Core::Text::Formatted::LineWrap#paragraph_finished?" do
298
298
 
299
299
  @line_wrap.paragraph_finished?.should == false
300
300
  end
301
- it "should be_true when the last printed line is the last fragment to print" do
301
+ it "should be true when the last printed line is the last fragment to print" do
302
302
  array = [{ :text => "hello world" }]
303
303
  @arranger.format_array = array
304
304
  string = @line_wrap.wrap_line(:arranger => @arranger,
@@ -310,7 +310,7 @@ describe "Core::Text::Formatted::LineWrap#paragraph_finished?" do
310
310
 
311
311
  @line_wrap.paragraph_finished?.should == true
312
312
  end
313
- it "should be_true when a newline exists on the current line" do
313
+ it "should be true when a newline exists on the current line" do
314
314
  array = [{ :text => "hello\n world" }]
315
315
  @arranger.format_array = array
316
316
  string = @line_wrap.wrap_line(:arranger => @arranger,
@@ -319,7 +319,7 @@ describe "Core::Text::Formatted::LineWrap#paragraph_finished?" do
319
319
 
320
320
  @line_wrap.paragraph_finished?.should == true
321
321
  end
322
- it "should be_true when a newline exists in the next fragment" do
322
+ it "should be true when a newline exists in the next fragment" do
323
323
  array = [{ :text => "hello " },
324
324
  { :text => " \n" },
325
325
  { :text => "world" }]
@@ -1,10 +1,10 @@
1
- require File.join(File.expand_path(File.dirname(__FILE__)), "spec_helper")
1
+ require File.join(File.expand_path(File.dirname(__FILE__)), "spec_helper")
2
2
  require "prawn/measurement_extensions"
3
3
 
4
4
  describe "Measurement units" do
5
-
5
+
6
6
  it "should convert units to PostScriptPoints" do
7
- 1.mm.should be_within(0.000000001).of(2.834645669)
7
+ 1.mm.should.be.close(2.834645669, 0.000000001)
8
8
  1.mm.should == (72 / 25.4)
9
9
  2.mm.should == (2 * 72 / 25.4)
10
10
  3.mm.should == 3 * 72 / 25.4
@@ -12,12 +12,12 @@ describe "Measurement units" do
12
12
  1.cm.should == 10 * 72 / 25.4
13
13
  1.dm.should == 100 * 72 / 25.4
14
14
  1.m.should == 1000 * 72 / 25.4
15
-
15
+
16
16
  1.in.should == 72
17
17
  1.ft.should == 72 * 12
18
18
  1.yd.should == 72 * 12 * 3
19
19
  1.pt.should == 1
20
20
  end
21
-
21
+
22
22
  end
23
-
23
+
@@ -0,0 +1,112 @@
1
+ require File.join(File.expand_path(File.dirname(__FILE__)), "spec_helper")
2
+
3
+ def tree_dump(tree)
4
+ if tree.is_a?(Prawn::Core::NameTree::Node)
5
+ "[" + tree.children.map { |child| tree_dump(child) }.join(",") + "]"
6
+ else
7
+ "#{tree.name}=#{tree.value}"
8
+ end
9
+ end
10
+
11
+ def tree_add(tree, *args)
12
+ args.each do |(name, value)|
13
+ tree.add(name, value)
14
+ end
15
+ end
16
+
17
+ def tree_value(name, value)
18
+ Prawn::Core::NameTree::Value.new(name, value)
19
+ end
20
+
21
+ class RefExposingDocument < Prawn::Document
22
+ def object_store
23
+ state.store
24
+ end
25
+ end
26
+
27
+ describe "Name Tree" do
28
+ before(:each) { create_pdf(RefExposingDocument) }
29
+
30
+ it "should have no children when first initialized" do
31
+ node = Prawn::Core::NameTree::Node.new(@pdf, 3)
32
+ node.children.length.should == 0
33
+ end
34
+
35
+ it "should have no subtrees while child limit is not reached" do
36
+ node = Prawn::Core::NameTree::Node.new(@pdf, 3)
37
+ tree_add(node, ["one", 1], ["two", 2], ["three", 3])
38
+ tree_dump(node).should == "[one=1,three=3,two=2]"
39
+ end
40
+
41
+ it "should split into subtrees when limit is exceeded" do
42
+ node = Prawn::Core::NameTree::Node.new(@pdf, 3)
43
+ tree_add(node, ["one", 1], ["two", 2], ["three", 3], ["four", 4])
44
+ tree_dump(node).should == "[[four=4,one=1],[three=3,two=2]]"
45
+ end
46
+
47
+ it "should create a two new references when root is split" do
48
+ ref_count = @pdf.object_store.length
49
+ node = Prawn::Core::NameTree::Node.new(@pdf, 3)
50
+ tree_add(node, ["one", 1], ["two", 2], ["three", 3], ["four", 4])
51
+ @pdf.object_store.length.should.equal ref_count+2
52
+ end
53
+
54
+ it "should create a one new reference when subtree is split" do
55
+ node = Prawn::Core::NameTree::Node.new(@pdf, 3)
56
+ tree_add(node, ["one", 1], ["two", 2], ["three", 3], ["four", 4])
57
+
58
+ ref_count = @pdf.object_store.length # save when root is split
59
+ tree_add(node, ["five", 5], ["six", 6], ["seven", 7])
60
+ tree_dump(node).should == "[[five=5,four=4,one=1],[seven=7,six=6],[three=3,two=2]]"
61
+ @pdf.object_store.length.should.equal ref_count+1
62
+ end
63
+
64
+ it "should keep tree balanced when subtree split cascades to root" do
65
+ node = Prawn::Core::NameTree::Node.new(@pdf, 3)
66
+ tree_add(node, ["one", 1], ["two", 2], ["three", 3], ["four", 4])
67
+ tree_add(node, ["five", 5], ["six", 6], ["seven", 7], ["eight", 8])
68
+ tree_dump(node).should == "[[[eight=8,five=5],[four=4,one=1]],[[seven=7,six=6],[three=3,two=2]]]"
69
+ end
70
+
71
+ it "should maintain order of already properly ordered nodes" do
72
+ node = Prawn::Core::NameTree::Node.new(@pdf, 3)
73
+ tree_add(node, ["eight", 8], ["five", 5], ["four", 4], ["one", 1])
74
+ tree_add(node, ['seven', 7], ['six', 6], ['three', 3], ['two', 2])
75
+ tree_dump(node).should == "[[[eight=8,five=5],[four=4,one=1]],[[seven=7,six=6],[three=3,two=2]]]"
76
+ end
77
+
78
+ it "should emit only :Names key with to_hash if root is only node" do
79
+ node = Prawn::Core::NameTree::Node.new(@pdf, 3)
80
+ tree_add(node, ["one", 1], ["two", 2], ["three", 3])
81
+ node.to_hash.should.equal(
82
+ { :Names => [tree_value("one", 1), tree_value("three", 3), tree_value("two", 2)] }
83
+ )
84
+ end
85
+
86
+ it "should emit only :Kids key with to_hash if root has children" do
87
+ node = Prawn::Core::NameTree::Node.new(@pdf, 3)
88
+ tree_add(node, ["one", 1], ["two", 2], ["three", 3], ["four", 4])
89
+ node.to_hash.should.equal({ :Kids => node.children.map { |child| child.ref } })
90
+ end
91
+
92
+ it "should emit :Limits and :Names keys with to_hash for leaf node" do
93
+ node = Prawn::Core::NameTree::Node.new(@pdf, 3)
94
+ tree_add(node, ["one", 1], ["two", 2], ["three", 3], ["four", 4])
95
+ node.children.first.to_hash.should.equal(
96
+ { :Limits => %w(four one),
97
+ :Names => [tree_value("four", 4), tree_value("one", 1)] }
98
+ )
99
+ end
100
+
101
+ it "should emit :Limits and :Kids keys with to_hash for inner node" do
102
+ node = Prawn::Core::NameTree::Node.new(@pdf, 3)
103
+ tree_add(node, ["one", 1], ["two", 2], ["three", 3], ["four", 4])
104
+ tree_add(node, ["five", 5], ["six", 6], ["seven", 7], ["eight", 8])
105
+ tree_add(node, ["nine", 9], ["ten", 10], ["eleven", 11], ["twelve", 12])
106
+ tree_add(node, ["thirteen", 13], ["fourteen", 14], ["fifteen", 15], ["sixteen", 16])
107
+ node.children.first.to_hash.should.equal(
108
+ { :Limits => %w(eight one),
109
+ :Kids => node.children.first.children.map { |child| child.ref } }
110
+ )
111
+ end
112
+ end
@@ -4,18 +4,60 @@ require File.join(File.expand_path(File.dirname(__FILE__)), "spec_helper")
4
4
 
5
5
  describe "Prawn::ObjectStore" do
6
6
  before(:each) do
7
- @store = PDF::Core::ObjectStore.new
7
+ @store = Prawn::Core::ObjectStore.new
8
8
  end
9
9
 
10
10
  it "should create required roots by default, including info passed to new" do
11
- store = PDF::Core::ObjectStore.new(:info => {:Test => 3})
11
+ store = Prawn::Core::ObjectStore.new(:info => {:Test => 3})
12
12
  store.size.should == 3 # 3 default roots
13
13
  store.info.data[:Test].should == 3
14
14
  store.pages.data[:Count].should == 0
15
15
  store.root.data[:Pages].should == store.pages
16
16
  end
17
17
 
18
-
18
+ it "should import objects from an existing PDF" do
19
+ filename = "#{Prawn::BASEDIR}/spec/data/curves.pdf"
20
+ store = Prawn::Core::ObjectStore.new(:template => filename)
21
+ store.size.should == 5
22
+ end
23
+
24
+ it "should point to existing roots when importing objects from an existing PDF" do
25
+ filename = "#{Prawn::BASEDIR}/spec/data/curves.pdf"
26
+ store = Prawn::Core::ObjectStore.new(:template => filename)
27
+ store.info.class.should == Prawn::Core::Reference
28
+ store.root.class.should == Prawn::Core::Reference
29
+ end
30
+
31
+ it "should initialize with pages when importing objects from an existing PDF" do
32
+ filename = "#{Prawn::BASEDIR}/spec/data/curves.pdf"
33
+ store = Prawn::Core::ObjectStore.new(:template => filename)
34
+ store.pages.data[:Count].should == 1
35
+ end
36
+
37
+ it "should import all objects from a PDF that has an indirect reference in a stream dict" do
38
+ filename = "#{Prawn::BASEDIR}/data/pdfs/indirect_reference.pdf"
39
+ store = Prawn::Core::ObjectStore.new(:template => filename)
40
+ store.size.should == 8
41
+ end
42
+
43
+ it "should raise ArgumentError when given a file that doesn exist as a template" do
44
+ filename = "not_really_there.pdf"
45
+
46
+ lambda { Prawn::Core::ObjectStore.new(:template => filename) }.should.raise(ArgumentError)
47
+ end
48
+
49
+ it "should raise Prawn::Errors::TemplateError when given a non PDF as a template" do
50
+ filename = "#{Prawn::BASEDIR}/data/images/dice.png"
51
+
52
+ lambda { Prawn::Core::ObjectStore.new(:template => filename) }.should.raise(Prawn::Errors::TemplateError)
53
+ end
54
+
55
+ it "should raise Prawn::Errors::TemplateError when given an encrypted PDF as a template" do
56
+ filename = "#{Prawn::BASEDIR}/data/pdfs/encrypted.pdf"
57
+
58
+ lambda { Prawn::Core::ObjectStore.new(:template => filename) }.should.raise(Prawn::Errors::TemplateError)
59
+ end
60
+
19
61
  it "should add to its objects when ref() is called" do
20
62
  count = @store.size
21
63
  @store.ref("blah")
@@ -23,7 +65,7 @@ describe "Prawn::ObjectStore" do
23
65
  end
24
66
 
25
67
  it "should accept push with a Prawn::Reference" do
26
- r = PDF::Core::Reference(123, "blah")
68
+ r = Prawn::Core::Reference(123, "blah")
27
69
  @store.push(r)
28
70
  @store[r.identifier].should == r
29
71
  end
@@ -40,17 +82,11 @@ describe "Prawn::ObjectStore" do
40
82
  end
41
83
  @store.map{|ref| ref.identifier}[-3..-1].should == [10, 11, 12]
42
84
  end
43
-
44
- it "should accept option to disabling PDF scaling in PDF clients" do
45
- @store = PDF::Core::ObjectStore.new(:print_scaling => :none)
46
- @store.root.data[:ViewerPreferences].should == {:PrintScaling => :None}
47
- end
48
-
49
85
  end
50
86
 
51
87
  describe "Prawn::ObjectStore#compact" do
52
88
  it "should do nothing to an ObjectStore with all live refs" do
53
- store = PDF::Core::ObjectStore.new
89
+ store = Prawn::Core::ObjectStore.new
54
90
  store.info.data[:Blah] = store.ref(:some => "structure")
55
91
  old_size = store.size
56
92
  store.compact
@@ -59,23 +95,76 @@ describe "Prawn::ObjectStore#compact" do
59
95
  end
60
96
 
61
97
  it "should remove dead objects, renumbering live objects from 1" do
62
- store = PDF::Core::ObjectStore.new
98
+ store = Prawn::Core::ObjectStore.new
63
99
  store.ref(:some => "structure")
64
100
  old_size = store.size
65
101
  store.compact
66
-
67
- store.size.should be < old_size
102
+
103
+ store.size.should.be < old_size
68
104
  store.map{ |o| o.identifier }.should == (1..store.size).to_a
69
105
  end
70
106
 
71
107
  it "should detect and remove dead objects that were once live" do
72
- store = PDF::Core::ObjectStore.new
108
+ store = Prawn::Core::ObjectStore.new
73
109
  store.info.data[:Blah] = store.ref(:some => "structure")
74
110
  store.info.data[:Blah] = :overwritten
75
111
  old_size = store.size
76
112
  store.compact
77
-
78
- store.size.should be < old_size
113
+
114
+ store.size.should.be < old_size
79
115
  store.map{ |o| o.identifier }.should == (1..store.size).to_a
80
116
  end
81
117
  end
118
+
119
+ describe "Prawn::ObjectStorie#object_id_for_page" do
120
+ it "should return the object ID of an imported template page" do
121
+ filename = "#{Prawn::BASEDIR}/data/pdfs/hexagon.pdf"
122
+ store = Prawn::Core::ObjectStore.new(:template => filename)
123
+ store.object_id_for_page(0).should == 4
124
+ end
125
+
126
+ it "should return the object ID of the first imported template page" do
127
+ filename = "#{Prawn::BASEDIR}/data/pdfs/two_hexagons.pdf"
128
+ store = Prawn::Core::ObjectStore.new(:template => filename)
129
+ store.object_id_for_page(1).should == 4
130
+ end
131
+
132
+ it "should return the object ID of the last imported template page" do
133
+ filename = "#{Prawn::BASEDIR}/data/pdfs/two_hexagons.pdf"
134
+ store = Prawn::Core::ObjectStore.new(:template => filename)
135
+ store.object_id_for_page(-1).should == 6
136
+ end
137
+
138
+ it "should return the object ID of the first page of a template that uses nested Pages" do
139
+ filename = "#{Prawn::BASEDIR}/data/pdfs/nested_pages.pdf"
140
+ store = Prawn::Core::ObjectStore.new(:template => filename)
141
+ store.object_id_for_page(1).should == 5
142
+ end
143
+
144
+ it "should return the object ID of the last page of a template that uses nested Pages" do
145
+ filename = "#{Prawn::BASEDIR}/data/pdfs/nested_pages.pdf"
146
+ store = Prawn::Core::ObjectStore.new(:template => filename)
147
+ store.object_id_for_page(-1).should == 8
148
+ end
149
+
150
+ it "should return nil if given an invalid page number" do
151
+ filename = "#{Prawn::BASEDIR}/data/pdfs/hexagon.pdf"
152
+ store = Prawn::Core::ObjectStore.new(:template => filename)
153
+ store.object_id_for_page(10).should == nil
154
+ end
155
+
156
+ it "should return nil if given an invalid page number" do
157
+ store = Prawn::Core::ObjectStore.new
158
+ store.object_id_for_page(10).should == nil
159
+ end
160
+
161
+ it "should accept a stream instead of a filename" do
162
+ example = Prawn::Document.new()
163
+ example.text "An example doc, created in memory"
164
+ example.start_new_page
165
+ StringIO.open(example.render) do |stream|
166
+ @pdf = Prawn::Core::ObjectStore.new(:template => stream)
167
+ end
168
+ @pdf.page_count.should == 2
169
+ end
170
+ end