Sha256: f2cfe0d738560a58cd555952f7f5fe293b7e12709a44d38fd08e066dd6c83669

Contents?: true

Size: 1.13 KB

Versions: 212

Compression:

Stored size: 1.13 KB

Contents

require 'spec_helper'
require 'image_optim'
require 'image_optim/cmd'
require 'tempfile'

describe ImageOptim do
  before do
    stub_const('Cmd', ImageOptim::Cmd)
  end

  # grab images from image_optim gem
  image_optim_root = Gem.loaded_specs['image_optim'].gem_dir
  images_dir = FSPath.new(image_optim_root) / 'spec/images'
  test_images = images_dir.glob('**/*.*')

  isolated_options_base = {:skip_missing_workers => false}
  ImageOptim::Worker.klasses.each do |klass|
    isolated_options_base[klass.bin_sym] = false
  end

  ImageOptim::Worker.klasses.each do |worker_klass|
    next if [:pngout, :svgo].include?(worker_klass.bin_sym)

    describe "#{worker_klass.bin_sym} worker" do
      it 'optimizes at least one test image' do
        options = isolated_options_base.merge(worker_klass.bin_sym => true)

        image_optim = ImageOptim.new(options)
        if Array(worker_klass.init(image_optim)).empty?
          image_optim = ImageOptim.new(options.merge(:allow_lossy => true))
        end

        expect(test_images.any? do |original|
          image_optim.optimize_image(original)
        end).to be true
      end
    end
  end
end

Version data entries

212 entries across 212 versions & 1 rubygems

Version Path
image_optim_pack-0.5.0-x86_64-linux spec/image_optim_spec.rb
image_optim_pack-0.5.0-x86-linux spec/image_optim_spec.rb
image_optim_pack-0.5.0-x86-freebsd spec/image_optim_spec.rb
image_optim_pack-0.5.0-amd64-freebsd spec/image_optim_spec.rb
image_optim_pack-0.5.0-x86_64-darwin spec/image_optim_spec.rb
image_optim_pack-0.5.0-x86-darwin spec/image_optim_spec.rb
image_optim_pack-0.5.0 spec/image_optim_spec.rb
image_optim_pack-0.4.0 spec/image_optim_spec.rb
image_optim_pack-0.3.1.20170318 spec/image_optim_spec.rb
image_optim_pack-0.3.1.20170311 spec/image_optim_spec.rb
image_optim_pack-0.3.1.20170121 spec/image_optim_spec.rb
image_optim_pack-0.3.1 spec/image_optim_spec.rb