Sha256: c5a5a9214022039f59dcc7f57dbfca8cf27f9d01e6ccc65cf5160732b92373b2

Contents?: true

Size: 1.64 KB

Versions: 12

Compression:

Stored size: 1.64 KB

Contents

require 'spec_helper'

describe ChunkyPNG::Canvas::Masking do

  subject { reference_canvas('clock') }

  before(:all) do
    @theme_color      = ChunkyPNG::Color('#e10f7a')
    @new_color        = ChunkyPNG::Color('#ff0000')
    @background_color = ChunkyPNG::Color('white')
  end

  describe '#change_theme_color!' do
    it "should change the theme color correctly" do
      subject.change_theme_color!(@theme_color, @new_color)
      expect(subject).to eql reference_canvas('clock_updated')
    end
  end

  describe '#extract_mask' do
    it "should create the correct base and mask image" do
      base, mask = subject.extract_mask(@theme_color, @background_color)
      expect(base).to eql reference_canvas('clock_base')
      expect(mask).to eql reference_canvas('clock_mask')
    end

    it "should create a mask image with only one opaque color" do
      base, mask = subject.extract_mask(@theme_color, @background_color)
      expect(mask.palette.opaque_palette.size).to eql 1
    end
  end

  describe '#change_mask_color!' do
    before { @mask = reference_canvas('clock_mask') }

    it "should replace the mask color correctly" do
      @mask.change_mask_color!(@new_color)
      expect(@mask).to eql reference_canvas('clock_mask_updated')
    end

    it "should still only have one opaque color" do
      @mask.change_mask_color!(@new_color)
      expect(@mask.palette.opaque_palette.size).to eql 1
    end

    it "should raise an exception when the mask image has more than once color" do
      not_a_mask = reference_canvas('operations')
      expect { not_a_mask.change_mask_color!(@new_color) }.to raise_error(ChunkyPNG::ExpectationFailed)
    end
  end
end

Version data entries

12 entries across 11 versions & 3 rubygems

Version Path
chunky_png-1.3.11 spec/chunky_png/canvas/masking_spec.rb
chunky_png-1.3.10 spec/chunky_png/canvas/masking_spec.rb
chunky_png-1.3.9 spec/chunky_png/canvas/masking_spec.rb
arcabouco-0.2.13 vendor/bundle/gems/chunky_png-1.3.8/spec/chunky_png/canvas/masking_spec.rb
arcabouco-0.2.13 vendor/bundle/gems/chunky_png-1.3.6/spec/chunky_png/canvas/masking_spec.rb
chunky_png-1.3.8 spec/chunky_png/canvas/masking_spec.rb
second_step-0.1.2 secondstep-notify-1.0.0-osx/lib/ruby/lib/ruby/gems/2.2.0/gems/chunky_png-1.3.7/spec/chunky_png/canvas/masking_spec.rb
chunky_png-1.3.7 spec/chunky_png/canvas/masking_spec.rb
chunky_png-1.3.6 spec/chunky_png/canvas/masking_spec.rb
chunky_png-1.3.5 spec/chunky_png/canvas/masking_spec.rb
chunky_png-1.3.4 spec/chunky_png/canvas/masking_spec.rb
chunky_png-1.3.3 spec/chunky_png/canvas/masking_spec.rb