Sha256: d936090e09bca2416c22f5be8b391a0b32d048837b4dd46b133b2c39d3faafda

Contents?: true

Size: 1.21 KB

Versions: 8

Compression:

Stored size: 1.21 KB

Contents

require 'spec_helper'

describe FormatParser::TIFFParser do
  describe 'is able to parse all the examples from FastImage' do
    Dir.glob(fixtures_dir + '/TIFF/*.tif').each do |tiff_path|
      it "is able to parse #{File.basename(tiff_path)}" do
        parsed = subject.information_from_io(File.open(tiff_path, 'rb'))

        expect(parsed).not_to be_nil
        expect(parsed.file_nature).to eq(:image)
        expect(parsed.file_type).to eq(:tif)

        expect(parsed.width_px).to be_kind_of(Integer)
        expect(parsed.width_px).to be > 0

        expect(parsed.height_px).to be_kind_of(Integer)
        expect(parsed.height_px).to be > 0
      end
    end
  end

  describe 'is able to parse all the TIFF exif examples from FastImage' do
    Dir.glob(fixtures_dir + '/exif-orientation-testimages/tiff-*/*.tif').each do |tiff_path|
      it "is able to parse #{File.basename(tiff_path)}" do
        parsed = subject.information_from_io(File.open(tiff_path, 'rb'))
        expect(parsed).not_to be_nil

        expect(parsed.orientation).to be_kind_of(Symbol)
        expect(parsed.width_px).to be > 0

        expect(parsed.height_px).to be_kind_of(Integer)
        expect(parsed.height_px).to be > 0
      end
    end
  end

end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
format_parser-0.1.7 spec/parsers/tiff_parser_spec.rb
format_parser-0.1.6 spec/parsers/tiff_parser_spec.rb
format_parser-0.1.5 spec/parsers/tiff_parser_spec.rb
format_parser-0.1.4 spec/parsers/tiff_parser_spec.rb
format_parser-0.1.3 spec/parsers/tiff_parser_spec.rb
format_parser-0.1.2 spec/parsers/tiff_parser_spec.rb
format_parser-0.1.1 spec/parsers/tiff_parser_spec.rb
format_parser-0.1.0 spec/parsers/tiff_parser_spec.rb