Sha256: ca715dc034477ee207253fcdebf56a565f9b1beb4e2a5246b4421b933a96b90b

Contents?: true

Size: 1.05 KB

Versions: 8

Compression:

Stored size: 1.05 KB

Contents

require 'spec_helper'

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

        expect(parsed).not_to be_nil

        expect(parsed.file_nature).to eq(:image)
        expect(parsed.file_type).to eq(:gif)
        expect(parsed.color_mode).to eq(:indexed)

        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 correctly parse our own examples' do
    it 'is able to parse the animated GIF' do
      gif_path = fixtures_dir + "GIF/anim.gif"

      parsed = subject.information_from_io(File.open(gif_path, 'rb'))
      expect(parsed).not_to be_nil

      expect(parsed.width_px).to eq(320)
      expect(parsed.height_px).to eq(180)
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

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