hexapdf 0.15.8 → 0.17.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/hexapdf/cli/batch.rb +1 -1
- data/lib/hexapdf/cli/command.rb +10 -1
- data/lib/hexapdf/cli/files.rb +1 -1
- data/lib/hexapdf/cli/fonts.rb +145 -0
- data/lib/hexapdf/cli/form.rb +27 -26
- data/lib/hexapdf/cli/image2pdf.rb +1 -1
- data/lib/hexapdf/cli/images.rb +1 -10
- data/lib/hexapdf/cli/info.rb +1 -1
- data/lib/hexapdf/cli/inspect.rb +1 -1
- data/lib/hexapdf/cli/merge.rb +1 -1
- data/lib/hexapdf/cli/modify.rb +1 -1
- data/lib/hexapdf/cli/optimize.rb +1 -1
- data/lib/hexapdf/cli/split.rb +1 -1
- data/lib/hexapdf/cli/watermark.rb +1 -1
- data/lib/hexapdf/cli.rb +3 -1
- data/lib/hexapdf/composer.rb +1 -1
- data/lib/hexapdf/configuration.rb +11 -2
- data/lib/hexapdf/content/canvas.rb +658 -167
- data/lib/hexapdf/content/color_space.rb +185 -3
- data/lib/hexapdf/content/graphic_object/arc.rb +111 -12
- data/lib/hexapdf/content/graphic_object/endpoint_arc.rb +1 -1
- data/lib/hexapdf/content/graphic_object/geom2d.rb +1 -1
- data/lib/hexapdf/content/graphic_object/solid_arc.rb +1 -1
- data/lib/hexapdf/content/graphic_object.rb +1 -1
- data/lib/hexapdf/content/graphics_state.rb +1 -1
- data/lib/hexapdf/content/operator.rb +1 -1
- data/lib/hexapdf/content/parser.rb +1 -1
- data/lib/hexapdf/content/processor.rb +1 -1
- data/lib/hexapdf/content/transformation_matrix.rb +1 -1
- data/lib/hexapdf/content.rb +1 -1
- data/lib/hexapdf/data_dir.rb +1 -1
- data/lib/hexapdf/dictionary.rb +1 -1
- data/lib/hexapdf/dictionary_fields.rb +30 -4
- data/lib/hexapdf/document/files.rb +3 -3
- data/lib/hexapdf/document/fonts.rb +1 -1
- data/lib/hexapdf/document/images.rb +1 -1
- data/lib/hexapdf/document/pages.rb +1 -1
- data/lib/hexapdf/document.rb +1 -1
- data/lib/hexapdf/encryption/aes.rb +1 -1
- data/lib/hexapdf/encryption/arc4.rb +1 -1
- data/lib/hexapdf/encryption/fast_aes.rb +1 -1
- data/lib/hexapdf/encryption/fast_arc4.rb +1 -1
- data/lib/hexapdf/encryption/identity.rb +1 -1
- data/lib/hexapdf/encryption/ruby_aes.rb +1 -1
- data/lib/hexapdf/encryption/ruby_arc4.rb +1 -1
- data/lib/hexapdf/encryption/security_handler.rb +1 -1
- data/lib/hexapdf/encryption/standard_security_handler.rb +1 -1
- data/lib/hexapdf/encryption.rb +1 -1
- data/lib/hexapdf/error.rb +1 -1
- data/lib/hexapdf/filter/ascii85_decode.rb +1 -1
- data/lib/hexapdf/filter/ascii_hex_decode.rb +1 -1
- data/lib/hexapdf/filter/crypt.rb +1 -1
- data/lib/hexapdf/filter/encryption.rb +1 -1
- data/lib/hexapdf/filter/flate_decode.rb +1 -1
- data/lib/hexapdf/filter/lzw_decode.rb +1 -1
- data/lib/hexapdf/filter/pass_through.rb +1 -1
- data/lib/hexapdf/filter/predictor.rb +1 -1
- data/lib/hexapdf/filter/run_length_decode.rb +1 -1
- data/lib/hexapdf/filter.rb +1 -1
- data/lib/hexapdf/font/cmap/parser.rb +1 -1
- data/lib/hexapdf/font/cmap/writer.rb +1 -1
- data/lib/hexapdf/font/cmap.rb +1 -1
- data/lib/hexapdf/font/encoding/base.rb +1 -1
- data/lib/hexapdf/font/encoding/difference_encoding.rb +1 -1
- data/lib/hexapdf/font/encoding/glyph_list.rb +1 -1
- data/lib/hexapdf/font/encoding/mac_expert_encoding.rb +1 -1
- data/lib/hexapdf/font/encoding/mac_roman_encoding.rb +1 -1
- data/lib/hexapdf/font/encoding/standard_encoding.rb +1 -1
- data/lib/hexapdf/font/encoding/symbol_encoding.rb +1 -1
- data/lib/hexapdf/font/encoding/win_ansi_encoding.rb +1 -1
- data/lib/hexapdf/font/encoding/zapf_dingbats_encoding.rb +1 -1
- data/lib/hexapdf/font/encoding.rb +1 -1
- data/lib/hexapdf/font/invalid_glyph.rb +1 -1
- data/lib/hexapdf/font/true_type/builder.rb +1 -1
- data/lib/hexapdf/font/true_type/font.rb +1 -1
- data/lib/hexapdf/font/true_type/optimizer.rb +1 -1
- data/lib/hexapdf/font/true_type/subsetter.rb +1 -1
- data/lib/hexapdf/font/true_type/table/cmap.rb +1 -1
- data/lib/hexapdf/font/true_type/table/cmap_subtable.rb +1 -1
- data/lib/hexapdf/font/true_type/table/directory.rb +1 -1
- data/lib/hexapdf/font/true_type/table/glyf.rb +1 -1
- data/lib/hexapdf/font/true_type/table/head.rb +1 -1
- data/lib/hexapdf/font/true_type/table/hhea.rb +1 -1
- data/lib/hexapdf/font/true_type/table/hmtx.rb +1 -1
- data/lib/hexapdf/font/true_type/table/kern.rb +1 -1
- data/lib/hexapdf/font/true_type/table/loca.rb +1 -1
- data/lib/hexapdf/font/true_type/table/maxp.rb +1 -1
- data/lib/hexapdf/font/true_type/table/name.rb +1 -1
- data/lib/hexapdf/font/true_type/table/os2.rb +1 -1
- data/lib/hexapdf/font/true_type/table/post.rb +1 -1
- data/lib/hexapdf/font/true_type/table.rb +1 -1
- data/lib/hexapdf/font/true_type.rb +1 -1
- data/lib/hexapdf/font/true_type_wrapper.rb +1 -1
- data/lib/hexapdf/font/type1/afm_parser.rb +1 -1
- data/lib/hexapdf/font/type1/character_metrics.rb +1 -1
- data/lib/hexapdf/font/type1/font.rb +1 -1
- data/lib/hexapdf/font/type1/font_metrics.rb +1 -1
- data/lib/hexapdf/font/type1/pfb_parser.rb +1 -1
- data/lib/hexapdf/font/type1.rb +1 -1
- data/lib/hexapdf/font/type1_wrapper.rb +1 -1
- data/lib/hexapdf/font_loader/from_configuration.rb +1 -1
- data/lib/hexapdf/font_loader/from_file.rb +1 -1
- data/lib/hexapdf/font_loader/standard14.rb +1 -1
- data/lib/hexapdf/font_loader.rb +1 -1
- data/lib/hexapdf/image_loader/jpeg.rb +1 -1
- data/lib/hexapdf/image_loader/pdf.rb +1 -1
- data/lib/hexapdf/image_loader/png.rb +1 -1
- data/lib/hexapdf/image_loader.rb +1 -1
- data/lib/hexapdf/importer.rb +1 -1
- data/lib/hexapdf/layout/box.rb +4 -2
- data/lib/hexapdf/layout/frame.rb +1 -1
- data/lib/hexapdf/layout/image_box.rb +1 -1
- data/lib/hexapdf/layout/inline_box.rb +1 -1
- data/lib/hexapdf/layout/line.rb +1 -1
- data/lib/hexapdf/layout/numeric_refinements.rb +1 -1
- data/lib/hexapdf/layout/style.rb +40 -2
- data/lib/hexapdf/layout/text_box.rb +1 -1
- data/lib/hexapdf/layout/text_fragment.rb +1 -1
- data/lib/hexapdf/layout/text_layouter.rb +1 -1
- data/lib/hexapdf/layout/text_shaper.rb +1 -1
- data/lib/hexapdf/layout/width_from_polygon.rb +2 -2
- data/lib/hexapdf/layout.rb +1 -1
- data/lib/hexapdf/name_tree_node.rb +1 -1
- data/lib/hexapdf/number_tree_node.rb +1 -1
- data/lib/hexapdf/object.rb +1 -1
- data/lib/hexapdf/parser.rb +2 -2
- data/lib/hexapdf/pdf_array.rb +1 -1
- data/lib/hexapdf/rectangle.rb +1 -1
- data/lib/hexapdf/reference.rb +1 -1
- data/lib/hexapdf/revision.rb +1 -1
- data/lib/hexapdf/revisions.rb +1 -1
- data/lib/hexapdf/serializer.rb +1 -1
- data/lib/hexapdf/stream.rb +1 -1
- data/lib/hexapdf/task/dereference.rb +1 -1
- data/lib/hexapdf/task/optimize.rb +1 -1
- data/lib/hexapdf/task.rb +1 -1
- data/lib/hexapdf/tokenizer.rb +1 -1
- data/lib/hexapdf/type/acro_form/appearance_generator.rb +14 -7
- data/lib/hexapdf/type/acro_form/button_field.rb +53 -28
- data/lib/hexapdf/type/acro_form/choice_field.rb +1 -1
- data/lib/hexapdf/type/acro_form/field.rb +21 -2
- data/lib/hexapdf/type/acro_form/form.rb +48 -29
- data/lib/hexapdf/type/acro_form/text_field.rb +2 -2
- data/lib/hexapdf/type/acro_form/variable_text_field.rb +17 -9
- data/lib/hexapdf/type/acro_form.rb +1 -1
- data/lib/hexapdf/type/action.rb +1 -1
- data/lib/hexapdf/type/actions/go_to.rb +1 -1
- data/lib/hexapdf/type/actions/go_to_r.rb +1 -1
- data/lib/hexapdf/type/actions/launch.rb +1 -1
- data/lib/hexapdf/type/actions/uri.rb +1 -1
- data/lib/hexapdf/type/actions.rb +1 -1
- data/lib/hexapdf/type/annotation.rb +1 -1
- data/lib/hexapdf/type/annotations/link.rb +1 -1
- data/lib/hexapdf/type/annotations/markup_annotation.rb +1 -1
- data/lib/hexapdf/type/annotations/text.rb +1 -1
- data/lib/hexapdf/type/annotations/widget.rb +2 -2
- data/lib/hexapdf/type/annotations.rb +1 -1
- data/lib/hexapdf/type/catalog.rb +1 -1
- data/lib/hexapdf/type/cid_font.rb +1 -1
- data/lib/hexapdf/type/embedded_file.rb +1 -1
- data/lib/hexapdf/type/file_specification.rb +1 -1
- data/lib/hexapdf/type/font.rb +1 -1
- data/lib/hexapdf/type/font_descriptor.rb +1 -1
- data/lib/hexapdf/type/font_simple.rb +1 -1
- data/lib/hexapdf/type/font_true_type.rb +1 -1
- data/lib/hexapdf/type/font_type0.rb +1 -1
- data/lib/hexapdf/type/font_type1.rb +1 -1
- data/lib/hexapdf/type/font_type3.rb +1 -1
- data/lib/hexapdf/type/form.rb +1 -1
- data/lib/hexapdf/type/graphics_state_parameter.rb +1 -1
- data/lib/hexapdf/type/icon_fit.rb +1 -1
- data/lib/hexapdf/type/image.rb +1 -1
- data/lib/hexapdf/type/info.rb +1 -1
- data/lib/hexapdf/type/names.rb +1 -1
- data/lib/hexapdf/type/object_stream.rb +1 -1
- data/lib/hexapdf/type/page.rb +15 -1
- data/lib/hexapdf/type/page_tree_node.rb +1 -1
- data/lib/hexapdf/type/resources.rb +1 -1
- data/lib/hexapdf/type/trailer.rb +1 -1
- data/lib/hexapdf/type/viewer_preferences.rb +1 -1
- data/lib/hexapdf/type/xref_stream.rb +1 -1
- data/lib/hexapdf/type.rb +1 -1
- data/lib/hexapdf/utils/bit_field.rb +1 -1
- data/lib/hexapdf/utils/bit_stream.rb +1 -1
- data/lib/hexapdf/utils/graphics_helpers.rb +1 -1
- data/lib/hexapdf/utils/lru_cache.rb +1 -1
- data/lib/hexapdf/utils/math_helpers.rb +1 -1
- data/lib/hexapdf/utils/object_hash.rb +1 -1
- data/lib/hexapdf/utils/pdf_doc_encoding.rb +1 -1
- data/lib/hexapdf/utils/sorted_tree_node.rb +1 -1
- data/lib/hexapdf/version.rb +2 -2
- data/lib/hexapdf/writer.rb +1 -1
- data/lib/hexapdf/xref_section.rb +1 -1
- data/lib/hexapdf.rb +1 -1
- metadata +5 -264
- data/CHANGELOG.md +0 -954
- data/LICENSE +0 -29
- data/README.md +0 -120
- data/Rakefile +0 -108
- data/agpl-3.0.txt +0 -661
- data/examples/001-hello_world.rb +0 -16
- data/examples/002-graphics.rb +0 -275
- data/examples/003-arcs.rb +0 -50
- data/examples/004-optimizing.rb +0 -23
- data/examples/005-merging.rb +0 -27
- data/examples/006-standard_pdf_fonts.rb +0 -73
- data/examples/007-truetype.rb +0 -42
- data/examples/008-show_char_bboxes.rb +0 -55
- data/examples/009-text_layouter_alignment.rb +0 -47
- data/examples/010-text_layouter_inline_boxes.rb +0 -64
- data/examples/011-text_layouter_line_wrapping.rb +0 -57
- data/examples/012-text_layouter_styling.rb +0 -122
- data/examples/013-text_layouter_shapes.rb +0 -176
- data/examples/014-text_in_polygon.rb +0 -60
- data/examples/015-boxes.rb +0 -76
- data/examples/016-frame_automatic_box_placement.rb +0 -90
- data/examples/017-frame_text_flow.rb +0 -60
- data/examples/018-composer.rb +0 -44
- data/examples/019-acro_form.rb +0 -88
- data/examples/emoji-smile.png +0 -0
- data/examples/emoji-wink.png +0 -0
- data/examples/machupicchu.jpg +0 -0
- data/test/data/aes-test-vectors/CBCGFSbox-128-decrypt.data.gz +0 -0
- data/test/data/aes-test-vectors/CBCGFSbox-128-encrypt.data.gz +0 -0
- data/test/data/aes-test-vectors/CBCGFSbox-192-decrypt.data.gz +0 -0
- data/test/data/aes-test-vectors/CBCGFSbox-192-encrypt.data.gz +0 -0
- data/test/data/aes-test-vectors/CBCGFSbox-256-decrypt.data.gz +0 -0
- data/test/data/aes-test-vectors/CBCGFSbox-256-encrypt.data.gz +0 -0
- data/test/data/aes-test-vectors/CBCKeySbox-128-decrypt.data.gz +0 -0
- data/test/data/aes-test-vectors/CBCKeySbox-128-encrypt.data.gz +0 -0
- data/test/data/aes-test-vectors/CBCKeySbox-192-decrypt.data.gz +0 -0
- data/test/data/aes-test-vectors/CBCKeySbox-192-encrypt.data.gz +0 -0
- data/test/data/aes-test-vectors/CBCKeySbox-256-decrypt.data.gz +0 -0
- data/test/data/aes-test-vectors/CBCKeySbox-256-encrypt.data.gz +0 -0
- data/test/data/aes-test-vectors/CBCVarKey-128-decrypt.data.gz +0 -0
- data/test/data/aes-test-vectors/CBCVarKey-128-encrypt.data.gz +0 -0
- data/test/data/aes-test-vectors/CBCVarKey-192-decrypt.data.gz +0 -0
- data/test/data/aes-test-vectors/CBCVarKey-192-encrypt.data.gz +0 -0
- data/test/data/aes-test-vectors/CBCVarKey-256-decrypt.data.gz +0 -0
- data/test/data/aes-test-vectors/CBCVarKey-256-encrypt.data.gz +0 -0
- data/test/data/aes-test-vectors/CBCVarTxt-128-decrypt.data.gz +0 -0
- data/test/data/aes-test-vectors/CBCVarTxt-128-encrypt.data.gz +0 -0
- data/test/data/aes-test-vectors/CBCVarTxt-192-decrypt.data.gz +0 -0
- data/test/data/aes-test-vectors/CBCVarTxt-192-encrypt.data.gz +0 -0
- data/test/data/aes-test-vectors/CBCVarTxt-256-decrypt.data.gz +0 -0
- data/test/data/aes-test-vectors/CBCVarTxt-256-encrypt.data.gz +0 -0
- data/test/data/fonts/Ubuntu-Title.ttf +0 -0
- data/test/data/images/cmyk.jpg +0 -0
- data/test/data/images/fillbytes.jpg +0 -0
- data/test/data/images/gray.jpg +0 -0
- data/test/data/images/greyscale-1bit.png +0 -0
- data/test/data/images/greyscale-2bit.png +0 -0
- data/test/data/images/greyscale-4bit.png +0 -0
- data/test/data/images/greyscale-8bit.png +0 -0
- data/test/data/images/greyscale-alpha-8bit.png +0 -0
- data/test/data/images/greyscale-trns-8bit.png +0 -0
- data/test/data/images/greyscale-with-gamma1.0.png +0 -0
- data/test/data/images/greyscale-with-gamma1.5.png +0 -0
- data/test/data/images/indexed-1bit.png +0 -0
- data/test/data/images/indexed-2bit.png +0 -0
- data/test/data/images/indexed-4bit.png +0 -0
- data/test/data/images/indexed-8bit.png +0 -0
- data/test/data/images/indexed-alpha-4bit.png +0 -0
- data/test/data/images/indexed-alpha-8bit.png +0 -0
- data/test/data/images/rgb.jpg +0 -0
- data/test/data/images/truecolour-8bit.png +0 -0
- data/test/data/images/truecolour-alpha-8bit.png +0 -0
- data/test/data/images/truecolour-gama-chrm-8bit.png +0 -0
- data/test/data/images/truecolour-srgb-8bit.png +0 -0
- data/test/data/images/ycck.jpg +0 -0
- data/test/data/minimal.pdf +0 -44
- data/test/data/standard-security-handler/README +0 -9
- data/test/data/standard-security-handler/bothpwd-aes-128bit-V4.pdf +0 -44
- data/test/data/standard-security-handler/bothpwd-aes-256bit-V5.pdf +0 -0
- data/test/data/standard-security-handler/bothpwd-arc4-128bit-V2.pdf +0 -43
- data/test/data/standard-security-handler/bothpwd-arc4-128bit-V4.pdf +0 -43
- data/test/data/standard-security-handler/bothpwd-arc4-40bit-V1.pdf +0 -0
- data/test/data/standard-security-handler/nopwd-aes-128bit-V4.pdf +0 -43
- data/test/data/standard-security-handler/nopwd-aes-256bit-V5.pdf +0 -0
- data/test/data/standard-security-handler/nopwd-arc4-128bit-V2.pdf +0 -43
- data/test/data/standard-security-handler/nopwd-arc4-128bit-V4.pdf +0 -43
- data/test/data/standard-security-handler/nopwd-arc4-40bit-V1.pdf +0 -43
- data/test/data/standard-security-handler/ownerpwd-aes-128bit-V4.pdf +0 -0
- data/test/data/standard-security-handler/ownerpwd-aes-256bit-V5.pdf +0 -43
- data/test/data/standard-security-handler/ownerpwd-arc4-128bit-V2.pdf +0 -43
- data/test/data/standard-security-handler/ownerpwd-arc4-128bit-V4.pdf +0 -43
- data/test/data/standard-security-handler/ownerpwd-arc4-40bit-V1.pdf +0 -43
- data/test/data/standard-security-handler/userpwd-aes-128bit-V4.pdf +0 -43
- data/test/data/standard-security-handler/userpwd-aes-256bit-V5.pdf +0 -43
- data/test/data/standard-security-handler/userpwd-arc4-128bit-V2.pdf +0 -0
- data/test/data/standard-security-handler/userpwd-arc4-128bit-V4.pdf +0 -0
- data/test/data/standard-security-handler/userpwd-arc4-40bit-V1.pdf +0 -43
- data/test/hexapdf/common_tokenizer_tests.rb +0 -236
- data/test/hexapdf/content/common.rb +0 -39
- data/test/hexapdf/content/graphic_object/test_arc.rb +0 -93
- data/test/hexapdf/content/graphic_object/test_endpoint_arc.rb +0 -90
- data/test/hexapdf/content/graphic_object/test_geom2d.rb +0 -79
- data/test/hexapdf/content/graphic_object/test_solid_arc.rb +0 -86
- data/test/hexapdf/content/test_canvas.rb +0 -1216
- data/test/hexapdf/content/test_color_space.rb +0 -164
- data/test/hexapdf/content/test_graphics_state.rb +0 -151
- data/test/hexapdf/content/test_operator.rb +0 -619
- data/test/hexapdf/content/test_parser.rb +0 -99
- data/test/hexapdf/content/test_processor.rb +0 -163
- data/test/hexapdf/content/test_transformation_matrix.rb +0 -64
- data/test/hexapdf/document/test_files.rb +0 -72
- data/test/hexapdf/document/test_fonts.rb +0 -60
- data/test/hexapdf/document/test_images.rb +0 -72
- data/test/hexapdf/document/test_pages.rb +0 -130
- data/test/hexapdf/encryption/common.rb +0 -87
- data/test/hexapdf/encryption/test_aes.rb +0 -129
- data/test/hexapdf/encryption/test_arc4.rb +0 -39
- data/test/hexapdf/encryption/test_fast_aes.rb +0 -17
- data/test/hexapdf/encryption/test_fast_arc4.rb +0 -12
- data/test/hexapdf/encryption/test_identity.rb +0 -21
- data/test/hexapdf/encryption/test_ruby_aes.rb +0 -23
- data/test/hexapdf/encryption/test_ruby_arc4.rb +0 -20
- data/test/hexapdf/encryption/test_security_handler.rb +0 -380
- data/test/hexapdf/encryption/test_standard_security_handler.rb +0 -322
- data/test/hexapdf/filter/common.rb +0 -53
- data/test/hexapdf/filter/test_ascii85_decode.rb +0 -59
- data/test/hexapdf/filter/test_ascii_hex_decode.rb +0 -38
- data/test/hexapdf/filter/test_crypt.rb +0 -21
- data/test/hexapdf/filter/test_encryption.rb +0 -24
- data/test/hexapdf/filter/test_flate_decode.rb +0 -44
- data/test/hexapdf/filter/test_lzw_decode.rb +0 -52
- data/test/hexapdf/filter/test_predictor.rb +0 -219
- data/test/hexapdf/filter/test_run_length_decode.rb +0 -32
- data/test/hexapdf/font/cmap/test_parser.rb +0 -102
- data/test/hexapdf/font/cmap/test_writer.rb +0 -66
- data/test/hexapdf/font/encoding/test_base.rb +0 -45
- data/test/hexapdf/font/encoding/test_difference_encoding.rb +0 -29
- data/test/hexapdf/font/encoding/test_glyph_list.rb +0 -59
- data/test/hexapdf/font/encoding/test_zapf_dingbats_encoding.rb +0 -16
- data/test/hexapdf/font/test_cmap.rb +0 -104
- data/test/hexapdf/font/test_encoding.rb +0 -27
- data/test/hexapdf/font/test_invalid_glyph.rb +0 -34
- data/test/hexapdf/font/test_true_type_wrapper.rb +0 -186
- data/test/hexapdf/font/test_type1_wrapper.rb +0 -107
- data/test/hexapdf/font/true_type/common.rb +0 -17
- data/test/hexapdf/font/true_type/table/common.rb +0 -27
- data/test/hexapdf/font/true_type/table/test_cmap.rb +0 -47
- data/test/hexapdf/font/true_type/table/test_cmap_subtable.rb +0 -141
- data/test/hexapdf/font/true_type/table/test_directory.rb +0 -30
- data/test/hexapdf/font/true_type/table/test_glyf.rb +0 -58
- data/test/hexapdf/font/true_type/table/test_head.rb +0 -56
- data/test/hexapdf/font/true_type/table/test_hhea.rb +0 -26
- data/test/hexapdf/font/true_type/table/test_hmtx.rb +0 -30
- data/test/hexapdf/font/true_type/table/test_kern.rb +0 -61
- data/test/hexapdf/font/true_type/table/test_loca.rb +0 -33
- data/test/hexapdf/font/true_type/table/test_maxp.rb +0 -50
- data/test/hexapdf/font/true_type/table/test_name.rb +0 -76
- data/test/hexapdf/font/true_type/table/test_os2.rb +0 -55
- data/test/hexapdf/font/true_type/table/test_post.rb +0 -78
- data/test/hexapdf/font/true_type/test_builder.rb +0 -42
- data/test/hexapdf/font/true_type/test_font.rb +0 -116
- data/test/hexapdf/font/true_type/test_optimizer.rb +0 -26
- data/test/hexapdf/font/true_type/test_subsetter.rb +0 -73
- data/test/hexapdf/font/true_type/test_table.rb +0 -48
- data/test/hexapdf/font/type1/common.rb +0 -6
- data/test/hexapdf/font/type1/test_afm_parser.rb +0 -65
- data/test/hexapdf/font/type1/test_font.rb +0 -104
- data/test/hexapdf/font/type1/test_font_metrics.rb +0 -22
- data/test/hexapdf/font/type1/test_pfb_parser.rb +0 -37
- data/test/hexapdf/font_loader/test_from_configuration.rb +0 -43
- data/test/hexapdf/font_loader/test_from_file.rb +0 -36
- data/test/hexapdf/font_loader/test_standard14.rb +0 -33
- data/test/hexapdf/image_loader/test_jpeg.rb +0 -93
- data/test/hexapdf/image_loader/test_pdf.rb +0 -47
- data/test/hexapdf/image_loader/test_png.rb +0 -259
- data/test/hexapdf/layout/test_box.rb +0 -152
- data/test/hexapdf/layout/test_frame.rb +0 -350
- data/test/hexapdf/layout/test_image_box.rb +0 -73
- data/test/hexapdf/layout/test_inline_box.rb +0 -71
- data/test/hexapdf/layout/test_line.rb +0 -206
- data/test/hexapdf/layout/test_style.rb +0 -779
- data/test/hexapdf/layout/test_text_box.rb +0 -140
- data/test/hexapdf/layout/test_text_fragment.rb +0 -375
- data/test/hexapdf/layout/test_text_layouter.rb +0 -758
- data/test/hexapdf/layout/test_text_shaper.rb +0 -62
- data/test/hexapdf/layout/test_width_from_polygon.rb +0 -108
- data/test/hexapdf/task/test_dereference.rb +0 -51
- data/test/hexapdf/task/test_optimize.rb +0 -162
- data/test/hexapdf/test_composer.rb +0 -258
- data/test/hexapdf/test_configuration.rb +0 -93
- data/test/hexapdf/test_data_dir.rb +0 -32
- data/test/hexapdf/test_dictionary.rb +0 -340
- data/test/hexapdf/test_dictionary_fields.rb +0 -245
- data/test/hexapdf/test_document.rb +0 -641
- data/test/hexapdf/test_filter.rb +0 -100
- data/test/hexapdf/test_importer.rb +0 -106
- data/test/hexapdf/test_object.rb +0 -258
- data/test/hexapdf/test_parser.rb +0 -637
- data/test/hexapdf/test_pdf_array.rb +0 -169
- data/test/hexapdf/test_rectangle.rb +0 -73
- data/test/hexapdf/test_reference.rb +0 -50
- data/test/hexapdf/test_revision.rb +0 -188
- data/test/hexapdf/test_revisions.rb +0 -196
- data/test/hexapdf/test_serializer.rb +0 -195
- data/test/hexapdf/test_stream.rb +0 -274
- data/test/hexapdf/test_tokenizer.rb +0 -80
- data/test/hexapdf/test_type.rb +0 -18
- data/test/hexapdf/test_writer.rb +0 -140
- data/test/hexapdf/test_xref_section.rb +0 -61
- data/test/hexapdf/type/acro_form/test_appearance_generator.rb +0 -794
- data/test/hexapdf/type/acro_form/test_button_field.rb +0 -302
- data/test/hexapdf/type/acro_form/test_choice_field.rb +0 -220
- data/test/hexapdf/type/acro_form/test_field.rb +0 -247
- data/test/hexapdf/type/acro_form/test_form.rb +0 -353
- data/test/hexapdf/type/acro_form/test_signature_field.rb +0 -38
- data/test/hexapdf/type/acro_form/test_text_field.rb +0 -195
- data/test/hexapdf/type/acro_form/test_variable_text_field.rb +0 -77
- data/test/hexapdf/type/actions/test_launch.rb +0 -24
- data/test/hexapdf/type/actions/test_uri.rb +0 -23
- data/test/hexapdf/type/annotations/test_markup_annotation.rb +0 -22
- data/test/hexapdf/type/annotations/test_text.rb +0 -34
- data/test/hexapdf/type/annotations/test_widget.rb +0 -225
- data/test/hexapdf/type/test_annotation.rb +0 -97
- data/test/hexapdf/type/test_catalog.rb +0 -48
- data/test/hexapdf/type/test_cid_font.rb +0 -61
- data/test/hexapdf/type/test_file_specification.rb +0 -141
- data/test/hexapdf/type/test_font.rb +0 -67
- data/test/hexapdf/type/test_font_descriptor.rb +0 -61
- data/test/hexapdf/type/test_font_simple.rb +0 -176
- data/test/hexapdf/type/test_font_true_type.rb +0 -31
- data/test/hexapdf/type/test_font_type0.rb +0 -120
- data/test/hexapdf/type/test_font_type1.rb +0 -142
- data/test/hexapdf/type/test_font_type3.rb +0 -26
- data/test/hexapdf/type/test_form.rb +0 -120
- data/test/hexapdf/type/test_image.rb +0 -261
- data/test/hexapdf/type/test_info.rb +0 -9
- data/test/hexapdf/type/test_object_stream.rb +0 -117
- data/test/hexapdf/type/test_page.rb +0 -587
- data/test/hexapdf/type/test_page_tree_node.rb +0 -315
- data/test/hexapdf/type/test_resources.rb +0 -209
- data/test/hexapdf/type/test_trailer.rb +0 -116
- data/test/hexapdf/type/test_xref_stream.rb +0 -143
- data/test/hexapdf/utils/test_bit_field.rb +0 -63
- data/test/hexapdf/utils/test_bit_stream.rb +0 -69
- data/test/hexapdf/utils/test_graphics_helpers.rb +0 -37
- data/test/hexapdf/utils/test_lru_cache.rb +0 -22
- data/test/hexapdf/utils/test_object_hash.rb +0 -120
- data/test/hexapdf/utils/test_pdf_doc_encoding.rb +0 -18
- data/test/hexapdf/utils/test_sorted_tree_node.rb +0 -239
- data/test/test_helper.rb +0 -58
@@ -1,143 +0,0 @@
|
|
1
|
-
# -*- encoding: utf-8 -*-
|
2
|
-
|
3
|
-
require 'test_helper'
|
4
|
-
require 'hexapdf/type/xref_stream'
|
5
|
-
|
6
|
-
describe HexaPDF::Type::XRefStream do
|
7
|
-
before do
|
8
|
-
@doc = Object.new
|
9
|
-
def (@doc).deref(obj); obj; end
|
10
|
-
def (@doc).wrap(obj, **); obj; end
|
11
|
-
@obj = HexaPDF::Type::XRefStream.new({}, oid: 1, document: @doc)
|
12
|
-
end
|
13
|
-
|
14
|
-
describe "xref_section" do
|
15
|
-
it "handles a missing /Index field" do
|
16
|
-
@obj[:Size] = 1
|
17
|
-
@obj[:W] = [2, 2, 2]
|
18
|
-
@obj.stream = [0, 65535, 1].pack('n*')
|
19
|
-
section = @obj.xref_section
|
20
|
-
assert_equal(1, section.each.to_a.size)
|
21
|
-
assert(section[0, 1].free?)
|
22
|
-
end
|
23
|
-
|
24
|
-
it "handles the three different field types and ignores unknown types" do
|
25
|
-
@obj[:Index] = [0, 4]
|
26
|
-
@obj[:W] = [2, 2, 2]
|
27
|
-
@obj.stream = [0, 65535, 1, 1, 200, 0, 2, 1, 5, 3, 0, 0].pack('n*')
|
28
|
-
section = @obj.xref_section
|
29
|
-
assert(section[0, 1].free?)
|
30
|
-
assert(section[1, 0].in_use?)
|
31
|
-
assert_equal(200, section[1, 0].pos)
|
32
|
-
assert(section[2, 0].compressed?)
|
33
|
-
assert_equal(1, section[2, 0].objstm)
|
34
|
-
assert_equal(5, section[2, 0].pos)
|
35
|
-
end
|
36
|
-
|
37
|
-
it "uses the default value for field one if its length is zero" do
|
38
|
-
@obj[:Index] = [3, 1]
|
39
|
-
@obj[:W] = [0, 1, 1]
|
40
|
-
@obj.stream = [200, 0].pack('C*')
|
41
|
-
section = @obj.xref_section
|
42
|
-
assert(section[3, 0].in_use?)
|
43
|
-
assert_equal(200, section[3, 0].pos)
|
44
|
-
end
|
45
|
-
|
46
|
-
it "uses the default value for field three if its length is zero" do
|
47
|
-
@obj[:Index] = [3, 1]
|
48
|
-
@obj[:W] = [1, 1, 0]
|
49
|
-
@obj.stream = [1, 200].pack('C*')
|
50
|
-
section = @obj.xref_section
|
51
|
-
assert(section[3, 0].in_use?)
|
52
|
-
assert_equal(200, section[3, 0].pos)
|
53
|
-
end
|
54
|
-
|
55
|
-
it "uses the default values for field one/three if their lengths are zero" do
|
56
|
-
@obj[:Index] = [3, 1]
|
57
|
-
@obj[:W] = [0, 1, 0]
|
58
|
-
@obj.stream = [200].pack('C*')
|
59
|
-
section = @obj.xref_section
|
60
|
-
assert(section[3, 0].in_use?)
|
61
|
-
assert_equal(200, section[3, 0].pos)
|
62
|
-
end
|
63
|
-
|
64
|
-
it "can handle multiple subsections" do
|
65
|
-
@obj[:Index] = [3, 1, 10, 1]
|
66
|
-
@obj[:W] = [0, 1, 0]
|
67
|
-
@obj.stream = [200, 250].pack('C*')
|
68
|
-
section = @obj.xref_section
|
69
|
-
assert(section[3, 0].in_use?)
|
70
|
-
assert_equal(200, section[3, 0].pos)
|
71
|
-
assert(section[10, 0].in_use?)
|
72
|
-
assert_equal(250, section[10, 0].pos)
|
73
|
-
end
|
74
|
-
|
75
|
-
it "fails if there is not enough data available" do
|
76
|
-
@obj[:Index] = [1, 2, 10, 4]
|
77
|
-
@obj[:W] = [1, 2, 1]
|
78
|
-
@obj.stream = "abcd"
|
79
|
-
assert_raises(HexaPDF::MalformedPDFError) { @obj.xref_section }
|
80
|
-
end
|
81
|
-
end
|
82
|
-
|
83
|
-
describe "trailer" do
|
84
|
-
it "returns a dictionary without xref stream specific values" do
|
85
|
-
@obj[:Size] = 5
|
86
|
-
@obj[:ID] = ["a", "b"]
|
87
|
-
@obj[:Root] = 'x'
|
88
|
-
@obj[:Index] = [0, 5]
|
89
|
-
@obj[:W] = [1, 2, 2]
|
90
|
-
dict = @obj.trailer
|
91
|
-
assert_equal(3, dict.length)
|
92
|
-
assert_equal(5, dict[:Size])
|
93
|
-
assert_equal(["a", "b"], dict[:ID])
|
94
|
-
assert_equal('x', dict[:Root])
|
95
|
-
end
|
96
|
-
end
|
97
|
-
|
98
|
-
describe "update_with_xref_section_and_trailer" do
|
99
|
-
before do
|
100
|
-
@section = HexaPDF::XRefSection.new
|
101
|
-
@section.add_free_entry(0, 65535)
|
102
|
-
@section.add_in_use_entry(1, 0, 200)
|
103
|
-
@section.add_compressed_entry(2, 1, 5)
|
104
|
-
end
|
105
|
-
|
106
|
-
it "sets all necessary dictionary values" do
|
107
|
-
@obj.update_with_xref_section_and_trailer(@section, Size: 100)
|
108
|
-
assert_equal(:XRef, @obj.value[:Type])
|
109
|
-
assert_equal(100, @obj.value[:Size])
|
110
|
-
assert_equal([0, 3], @obj.value[:Index])
|
111
|
-
assert_equal([1, 1, 2], @obj.value[:W])
|
112
|
-
|
113
|
-
@section.add_in_use_entry(1, 0, 256**2)
|
114
|
-
@obj.update_with_xref_section_and_trailer(@section, Size: 100)
|
115
|
-
assert_equal([1, 4, 2], @obj.value[:W])
|
116
|
-
end
|
117
|
-
|
118
|
-
it "updates the stream with the new information" do
|
119
|
-
@obj.update_with_xref_section_and_trailer(@section, Size: 100)
|
120
|
-
section = @obj.xref_section
|
121
|
-
@section.each do |oid, gen, data|
|
122
|
-
if section[oid, gen] == data
|
123
|
-
section.delete(oid)
|
124
|
-
else
|
125
|
-
flunk("Data for object p#{oid}, #{gen}] is not equal")
|
126
|
-
end
|
127
|
-
end
|
128
|
-
assert_equal(0, section.each.to_a.size)
|
129
|
-
end
|
130
|
-
|
131
|
-
it "can write multiple subsections" do
|
132
|
-
@section.add_free_entry(10, 1)
|
133
|
-
@section.add_in_use_entry(11, 1, 100)
|
134
|
-
@obj.update_with_xref_section_and_trailer(@section, Size: 100)
|
135
|
-
assert_equal([0, 3, 10, 2], @obj.value[:Index])
|
136
|
-
end
|
137
|
-
|
138
|
-
it "fails for unsupported cross-reference entry types" do
|
139
|
-
@section.send(:[]=, 3, 0, HexaPDF::XRefSection::Entry.new(:unknown, 3, 0))
|
140
|
-
assert_raises(HexaPDF::Error) { @obj.update_with_xref_section_and_trailer(@section, {}) }
|
141
|
-
end
|
142
|
-
end
|
143
|
-
end
|
@@ -1,63 +0,0 @@
|
|
1
|
-
# -*- encoding: utf-8 -*-
|
2
|
-
|
3
|
-
require 'test_helper'
|
4
|
-
require 'hexapdf/utils/bit_field'
|
5
|
-
|
6
|
-
class TestBitField
|
7
|
-
|
8
|
-
extend HexaPDF::Utils::BitField
|
9
|
-
|
10
|
-
attr_accessor :data
|
11
|
-
|
12
|
-
bit_field(:data, {bit0: 0, bit1: 1, bit5: 5}, lister: "list", getter: "get", setter: "set",
|
13
|
-
unsetter: 'unset')
|
14
|
-
|
15
|
-
end
|
16
|
-
|
17
|
-
describe HexaPDF::Utils::BitField do
|
18
|
-
before do
|
19
|
-
@obj = TestBitField.new
|
20
|
-
end
|
21
|
-
|
22
|
-
it "allows inspection of the defined bits" do
|
23
|
-
assert_equal({bit0: 0, bit1: 1, bit5: 5}, TestBitField::DATA_BIT_MAPPING)
|
24
|
-
end
|
25
|
-
|
26
|
-
it "returns all bit names using the lister method" do
|
27
|
-
@obj.data = 0b100011
|
28
|
-
assert_equal([:bit0, :bit1, :bit5], @obj.list)
|
29
|
-
@obj.data = 0b100001
|
30
|
-
assert_equal([:bit0, :bit5], @obj.list)
|
31
|
-
end
|
32
|
-
|
33
|
-
it "can check whether a given bit is set via the getter method" do
|
34
|
-
refute(@obj.get(:bit0))
|
35
|
-
@obj.data = 0b000001
|
36
|
-
assert(@obj.get(:bit0))
|
37
|
-
assert(@obj.get(0))
|
38
|
-
refute(@obj.get(:bit1))
|
39
|
-
refute(@obj.get(1))
|
40
|
-
end
|
41
|
-
|
42
|
-
it "can set a given bit via the setter method" do
|
43
|
-
assert_nil(@obj.data)
|
44
|
-
@obj.set(:bit0, :bit1, :bit5)
|
45
|
-
assert_equal(0b100011, @obj.data)
|
46
|
-
@obj.set(:bit0, 5, clear_existing: true)
|
47
|
-
assert_equal(0b100001, @obj.data)
|
48
|
-
end
|
49
|
-
|
50
|
-
it "can unset a given bit via the unsetter method" do
|
51
|
-
@obj.set(:bit0, :bit5)
|
52
|
-
assert_equal(0b100001, @obj.data)
|
53
|
-
@obj.unset(:bit5)
|
54
|
-
assert_equal(0b000001, @obj.data)
|
55
|
-
end
|
56
|
-
|
57
|
-
it "fails if an unknown bit name or bit index is used with one of the methods" do
|
58
|
-
e = assert_raises(ArgumentError) { @obj.get(10) }
|
59
|
-
assert_equal("Invalid bit field name or index '10' for TestBitField#data", e.message)
|
60
|
-
e = assert_raises(ArgumentError) { @obj.get(:bit10) }
|
61
|
-
assert_equal("Invalid bit field name or index 'bit10' for TestBitField#data", e.message)
|
62
|
-
end
|
63
|
-
end
|
@@ -1,69 +0,0 @@
|
|
1
|
-
# -*- encoding: utf-8 -*-
|
2
|
-
|
3
|
-
require 'test_helper'
|
4
|
-
require 'hexapdf/utils/bit_stream'
|
5
|
-
|
6
|
-
describe HexaPDF::Utils::BitStreamReader do
|
7
|
-
before do
|
8
|
-
@reader = HexaPDF::Utils::BitStreamReader.new
|
9
|
-
end
|
10
|
-
|
11
|
-
it "allows appending data" do
|
12
|
-
assert_equal(0, @reader.remaining_bits)
|
13
|
-
@reader << "data"
|
14
|
-
assert_equal(32, @reader.remaining_bits)
|
15
|
-
@reader << "some"
|
16
|
-
assert_equal(64, @reader.remaining_bits)
|
17
|
-
@reader.read(4)
|
18
|
-
assert_equal(60, @reader.remaining_bits)
|
19
|
-
@reader << "more"
|
20
|
-
assert_equal(92, @reader.remaining_bits)
|
21
|
-
end
|
22
|
-
|
23
|
-
it "allows checking whether a certain number of bits can be read" do
|
24
|
-
refute(@reader.read?(1))
|
25
|
-
@reader << "data"
|
26
|
-
assert(@reader.read?(1))
|
27
|
-
assert(@reader.read?(32))
|
28
|
-
refute(@reader.read?(33))
|
29
|
-
end
|
30
|
-
|
31
|
-
describe "read" do
|
32
|
-
it "allows reading any number of bits" do
|
33
|
-
@reader << "\xaa" * 8 # 10101010 * 8
|
34
|
-
assert_equal(1, @reader.read(1))
|
35
|
-
assert_equal(0, @reader.read(1))
|
36
|
-
assert_equal(2, @reader.read(2))
|
37
|
-
assert_equal(10, @reader.read(4))
|
38
|
-
assert_equal(5, @reader.read(3))
|
39
|
-
assert_equal((0b01010 << 8) | 0xaa, @reader.read(13))
|
40
|
-
assert_equal(5, @reader.read(3))
|
41
|
-
assert_equal((0b01010 << 7) | (0xaa >> 1), @reader.read(12))
|
42
|
-
assert_equal(2, @reader.read(3))
|
43
|
-
end
|
44
|
-
|
45
|
-
it "allows reading many bits" do
|
46
|
-
@reader << "\x80" << "\x00" * 20
|
47
|
-
assert_equal(2**127, @reader.read(128))
|
48
|
-
end
|
49
|
-
|
50
|
-
it "returns nil if enough bits are available" do
|
51
|
-
assert_nil(@reader.read(1))
|
52
|
-
end
|
53
|
-
end
|
54
|
-
end
|
55
|
-
|
56
|
-
describe HexaPDF::Utils::BitStreamWriter do
|
57
|
-
before do
|
58
|
-
@writer = HexaPDF::Utils::BitStreamWriter.new
|
59
|
-
end
|
60
|
-
|
61
|
-
it "allows writing any number of bits" do
|
62
|
-
result = @writer.write(1, 1)
|
63
|
-
result << @writer.write(0b101, 3)
|
64
|
-
result << @writer.write(0xff, 8)
|
65
|
-
result << @writer.write(0x5ddd, 15)
|
66
|
-
result << @writer.finalize
|
67
|
-
assert_equal("\xdf\xfb\xbb\xa0".b, result)
|
68
|
-
end
|
69
|
-
end
|
@@ -1,37 +0,0 @@
|
|
1
|
-
# -*- encoding: utf-8 -*-
|
2
|
-
|
3
|
-
require 'test_helper'
|
4
|
-
require 'hexapdf/utils/graphics_helpers'
|
5
|
-
|
6
|
-
describe HexaPDF::Utils::GraphicsHelpers do
|
7
|
-
include HexaPDF::Utils::GraphicsHelpers
|
8
|
-
|
9
|
-
describe "calculate_dimensions" do
|
10
|
-
it "returns the requested dimensions if both are specified" do
|
11
|
-
assert_equal([7, 8], calculate_dimensions(5, 6, rwidth: 7, rheight: 8))
|
12
|
-
end
|
13
|
-
|
14
|
-
it "returns the requested width and an adjusted height" do
|
15
|
-
assert_equal([10, 12], calculate_dimensions(5, 6, rwidth: 10))
|
16
|
-
end
|
17
|
-
|
18
|
-
it "returns the requested width and the given height if width is zero" do
|
19
|
-
assert_equal([10, 6], calculate_dimensions(0, 6, rwidth: 10))
|
20
|
-
end
|
21
|
-
|
22
|
-
it "returns the requested height and an adjusted width" do
|
23
|
-
assert_equal([10, 12], calculate_dimensions(5, 6, rheight: 12))
|
24
|
-
end
|
25
|
-
|
26
|
-
it "returns the requested height and the given width if height is zero" do
|
27
|
-
assert_equal([5, 12], calculate_dimensions(5, 0, rheight: 12))
|
28
|
-
end
|
29
|
-
end
|
30
|
-
|
31
|
-
describe "point_on_line" do
|
32
|
-
it "returns the correct point" do
|
33
|
-
assert_equal([5, 5], point_on_line(0, 0, 10, 10, distance: Math.sqrt(50)))
|
34
|
-
assert_equal([5, 5], point_on_line(10, 10, 0, 0, distance: Math.sqrt(50)))
|
35
|
-
end
|
36
|
-
end
|
37
|
-
end
|
@@ -1,22 +0,0 @@
|
|
1
|
-
# -*- encoding: utf-8 -*-
|
2
|
-
|
3
|
-
require 'test_helper'
|
4
|
-
require 'hexapdf/utils/lru_cache'
|
5
|
-
|
6
|
-
describe HexaPDF::Utils::LRUCache do
|
7
|
-
before do
|
8
|
-
@cache = HexaPDF::Utils::LRUCache.new(5)
|
9
|
-
5.times {|i| @cache[i] = i * 2 }
|
10
|
-
end
|
11
|
-
|
12
|
-
it "removes the LRU item when the size is reached" do
|
13
|
-
assert([1, 2], @cache.instance_variable_get(:@cache).first)
|
14
|
-
@cache[6] = 7
|
15
|
-
assert([2, 4], @cache.instance_variable_get(:@cache).first)
|
16
|
-
end
|
17
|
-
|
18
|
-
it "freshes an item on access" do
|
19
|
-
@cache[1]
|
20
|
-
assert([2, 4], @cache.instance_variable_get(:@cache).first)
|
21
|
-
end
|
22
|
-
end
|
@@ -1,120 +0,0 @@
|
|
1
|
-
# -*- encoding: utf-8 -*-
|
2
|
-
|
3
|
-
require 'test_helper'
|
4
|
-
require 'hexapdf/utils/object_hash'
|
5
|
-
|
6
|
-
describe HexaPDF::Utils::ObjectHash do
|
7
|
-
before do
|
8
|
-
@hash = HexaPDF::Utils::ObjectHash.new
|
9
|
-
end
|
10
|
-
|
11
|
-
describe "[]" do
|
12
|
-
it "works with both an object number and a generation number" do
|
13
|
-
@hash[1, 5] = 5
|
14
|
-
assert_equal(5, @hash[1, 5])
|
15
|
-
assert_nil(@hash[1, 4])
|
16
|
-
assert_nil(@hash[2, 5])
|
17
|
-
end
|
18
|
-
|
19
|
-
it "works with an object number only" do
|
20
|
-
@hash[1, 5] = 5
|
21
|
-
assert_equal(5, @hash[1])
|
22
|
-
assert_nil(@hash[2])
|
23
|
-
end
|
24
|
-
end
|
25
|
-
|
26
|
-
describe "[]=" do
|
27
|
-
it "allows adding an entry" do
|
28
|
-
@hash[1, 5] = 5
|
29
|
-
assert_equal(5, @hash[1, 5])
|
30
|
-
end
|
31
|
-
|
32
|
-
it "allows overwriting an existing entry for an object number" do
|
33
|
-
@hash[1, 0] = 5
|
34
|
-
@hash[1, 0] = 6
|
35
|
-
assert_equal(6, @hash[1, 0])
|
36
|
-
|
37
|
-
@hash[1, 1] = 5
|
38
|
-
assert_equal(5, @hash[1, 1])
|
39
|
-
assert_nil(@hash[1, 0])
|
40
|
-
end
|
41
|
-
end
|
42
|
-
|
43
|
-
describe "entry?" do
|
44
|
-
it "checks if an entry for a specific object number exists" do
|
45
|
-
refute(@hash.entry?(1))
|
46
|
-
@hash[1, 1] = 5
|
47
|
-
assert(@hash.entry?(1))
|
48
|
-
end
|
49
|
-
|
50
|
-
it "checks if an entry for a specific object and generation number exists" do
|
51
|
-
refute(@hash.entry?(1, 1))
|
52
|
-
@hash[1, 1] = 5
|
53
|
-
assert(@hash.entry?(1, 1))
|
54
|
-
refute(@hash.entry?(1, 0))
|
55
|
-
end
|
56
|
-
end
|
57
|
-
|
58
|
-
it "returns the generation number for an object number with gen_for_oid" do
|
59
|
-
assert_nil(@hash.gen_for_oid(1))
|
60
|
-
@hash[1, 5] = 5
|
61
|
-
assert_equal(5, @hash.gen_for_oid(1))
|
62
|
-
end
|
63
|
-
|
64
|
-
it "deletes an entry via delete" do
|
65
|
-
@hash[1, 0] = 5
|
66
|
-
@hash.delete(1)
|
67
|
-
assert_nil(@hash[1])
|
68
|
-
end
|
69
|
-
|
70
|
-
describe "each" do
|
71
|
-
it "acts as an enumerable object" do
|
72
|
-
@hash[1, 0] = 5
|
73
|
-
@hash[2, 3] = 6
|
74
|
-
@hash[3, 2] = 7
|
75
|
-
assert_equal([[1, 0, 5], [2, 3, 6], [3, 2, 7]], @hash.each.to_a)
|
76
|
-
|
77
|
-
@hash.each do |oid, gen, data|
|
78
|
-
assert_equal(data, @hash[oid, gen])
|
79
|
-
end
|
80
|
-
end
|
81
|
-
|
82
|
-
it "allows key insertion during iteration" do
|
83
|
-
@hash[1, 0] = 5
|
84
|
-
count = 0
|
85
|
-
@hash.each { count += 1; @hash[2, 0] = 6 }
|
86
|
-
assert_equal(1, count)
|
87
|
-
end
|
88
|
-
end
|
89
|
-
|
90
|
-
describe "max_oid" do
|
91
|
-
it "is zero when no objects are stored" do
|
92
|
-
assert_equal(0, @hash.max_oid)
|
93
|
-
@hash[1, 0] = 5
|
94
|
-
@hash.delete(1)
|
95
|
-
assert_equal(0, @hash.max_oid)
|
96
|
-
end
|
97
|
-
|
98
|
-
it "changes accordingly when data is inserted" do
|
99
|
-
@hash[1, 0] = 5
|
100
|
-
assert_equal(1, @hash.max_oid)
|
101
|
-
@hash[5, 0] = 5
|
102
|
-
assert_equal(5, @hash.max_oid)
|
103
|
-
@hash[3, 0] = 5
|
104
|
-
assert_equal(5, @hash.max_oid)
|
105
|
-
end
|
106
|
-
|
107
|
-
it "changes accordingly when data is deleted" do
|
108
|
-
@hash[1, 0] = @hash[3, 0] = @hash[5, 0] = 5
|
109
|
-
@hash.delete(1)
|
110
|
-
assert_equal(5, @hash.max_oid)
|
111
|
-
@hash.delete(5)
|
112
|
-
assert_equal(3, @hash.max_oid)
|
113
|
-
end
|
114
|
-
end
|
115
|
-
|
116
|
-
it "can return a list of all object IDs" do
|
117
|
-
@hash[1, 0] = @hash[3, 1] = 7
|
118
|
-
assert_equal([3, 1], @hash.oids)
|
119
|
-
end
|
120
|
-
end
|
@@ -1,18 +0,0 @@
|
|
1
|
-
# -*- encoding: utf-8 -*-
|
2
|
-
|
3
|
-
require 'test_helper'
|
4
|
-
require 'hexapdf/utils/pdf_doc_encoding'
|
5
|
-
|
6
|
-
describe HexaPDF::Utils::PDFDocEncoding do
|
7
|
-
before do
|
8
|
-
@obj = HexaPDF::Utils::PDFDocEncoding
|
9
|
-
end
|
10
|
-
|
11
|
-
describe "convert_to_utf8" do
|
12
|
-
it "converts the given string to UTF-8" do
|
13
|
-
result = @obj.convert_to_utf8("Testing\x9c\x92".b)
|
14
|
-
assert_equal(Encoding::UTF_8, result.encoding)
|
15
|
-
assert_equal("Testing\u0153\u2122", result)
|
16
|
-
end
|
17
|
-
end
|
18
|
-
end
|