|
|
|
|
@ -28,60 +28,71 @@ describe Squib::Graphics::CairoContextWrapper do
|
|
|
|
|
expect { subject.set_source_squibcolor(nil) }.to raise_error('nil is not a valid color') |
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
context 'regex variations for linear gradients' do |
|
|
|
|
before(:each) do |
|
|
|
|
dbl = double(Cairo::LinearPattern) |
|
|
|
|
expect(Cairo::LinearPattern).to receive(:new).with(1,2,3,4).and_return(dbl) |
|
|
|
|
expect(dbl).to receive(:add_color_stop).with(0.0, 'blue') |
|
|
|
|
expect(dbl).to receive(:add_color_stop).with(1.0, 'red') |
|
|
|
|
expect(cairo).to receive(:set_source).with(dbl) |
|
|
|
|
context 'regex variations for linear gradients' do |
|
|
|
|
before(:each) do |
|
|
|
|
dbl = double(Cairo::LinearPattern) |
|
|
|
|
mtx = double(Cairo::Matrix) |
|
|
|
|
expect(Cairo::LinearPattern).to receive(:new).with(1,2,3,4).and_return(dbl) |
|
|
|
|
expect(dbl).to receive(:add_color_stop).with(0.0, 'blue') |
|
|
|
|
expect(dbl).to receive(:add_color_stop).with(1.0, 'red') |
|
|
|
|
expect(cairo).to receive(:matrix).and_return(mtx) |
|
|
|
|
expect(dbl).to receive(:matrix=).with(mtx) |
|
|
|
|
expect(cairo).to receive(:set_source).with(dbl) |
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
it('handles no decimals' ) { subject.set_source_squibcolor('(1,2) (3,4) blue@0 red@1') } |
|
|
|
|
it('handles decimals' ) { subject.set_source_squibcolor('(1.0,2.0) (3.0,4.0) blue@0 red@1') } |
|
|
|
|
it('handles no whitespace') { subject.set_source_squibcolor('(1,2)(3,4)blue@0red@1') } |
|
|
|
|
it('handles whitespace' ) { subject.set_source_squibcolor(' ( 1 , 2 ) ( 3 , 4 ) blue@0 red@1 ') } |
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
it('handles no decimals' ) { subject.set_source_squibcolor('(1,2) (3,4) blue@0 red@1') } |
|
|
|
|
it('handles decimals' ) { subject.set_source_squibcolor('(1.0,2.0) (3.0,4.0) blue@0 red@1') } |
|
|
|
|
it('handles no whitespace') { subject.set_source_squibcolor('(1,2)(3,4)blue@0red@1') } |
|
|
|
|
it('handles whitespace' ) { subject.set_source_squibcolor(' ( 1 , 2 ) ( 3 , 4 ) blue@0 red@1 ') } |
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
context 'regex variations for radial gradients' do |
|
|
|
|
before(:each) do |
|
|
|
|
dbl = double(Cairo::RadialPattern) |
|
|
|
|
expect(Cairo::RadialPattern).to receive(:new).with(1,2,5,3,4,6).and_return(dbl) |
|
|
|
|
expect(dbl).to receive(:add_color_stop).with(0.0, 'blue') |
|
|
|
|
expect(dbl).to receive(:add_color_stop).with(1.0, 'red') |
|
|
|
|
expect(cairo).to receive(:set_source).with(dbl) |
|
|
|
|
context 'regex variations for radial gradients' do |
|
|
|
|
before(:each) do |
|
|
|
|
dbl = double(Cairo::RadialPattern) |
|
|
|
|
mtx = double(Cairo::Matrix) |
|
|
|
|
expect(Cairo::RadialPattern).to receive(:new).with(1,2,5,3,4,6).and_return(dbl) |
|
|
|
|
expect(dbl).to receive(:add_color_stop).with(0.0, 'blue') |
|
|
|
|
expect(dbl).to receive(:add_color_stop).with(1.0, 'red') |
|
|
|
|
expect(cairo).to receive(:matrix).and_return(mtx) |
|
|
|
|
expect(dbl).to receive(:matrix=).with(mtx) |
|
|
|
|
expect(cairo).to receive(:set_source).with(dbl) |
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
it('handles no decimals' ) { subject.set_source_squibcolor('(1,2,5) (3,4,6) blue@0 red@1') } |
|
|
|
|
it('handles decimals' ) { subject.set_source_squibcolor('(1.0,2.0,5.0) (3.0,4.0,6.0) blue@0 red@1') } |
|
|
|
|
it('handles no whitespace') { subject.set_source_squibcolor('(1,2,5)(3,4,6)blue@0red@1') } |
|
|
|
|
it('handles whitespace' ) { subject.set_source_squibcolor(' ( 1 , 2 , 5 ) ( 3 , 4 , 6 ) blue@0 red@1 ') } |
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
it('handles no decimals' ) { subject.set_source_squibcolor('(1,2,5) (3,4,6) blue@0 red@1') } |
|
|
|
|
it('handles decimals' ) { subject.set_source_squibcolor('(1.0,2.0,5.0) (3.0,4.0,6.0) blue@0 red@1') } |
|
|
|
|
it('handles no whitespace') { subject.set_source_squibcolor('(1,2,5)(3,4,6)blue@0red@1') } |
|
|
|
|
it('handles whitespace' ) { subject.set_source_squibcolor(' ( 1 , 2 , 5 ) ( 3 , 4 , 6 ) blue@0 red@1 ') } |
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
context 'regex handles hash notation' do |
|
|
|
|
it 'on radial patterns' do |
|
|
|
|
dbl = double(Cairo::RadialPattern) |
|
|
|
|
expect(Cairo::RadialPattern).to receive(:new).with(1,2,5,3,4,6).and_return(dbl) |
|
|
|
|
expect(dbl).to receive(:add_color_stop).with(0.0, '#def') |
|
|
|
|
expect(dbl).to receive(:add_color_stop).with(1.0, '#112233') |
|
|
|
|
expect(cairo).to receive(:set_source).with(dbl) |
|
|
|
|
subject.set_source_squibcolor('(1,2,5) (3,4,6) #def@0 #112233@1') |
|
|
|
|
context 'regex handles hash notation' do |
|
|
|
|
it 'on radial patterns' do |
|
|
|
|
dbl = double(Cairo::RadialPattern) |
|
|
|
|
mtx = double(Cairo::Matrix) |
|
|
|
|
expect(Cairo::RadialPattern).to receive(:new).with(1,2,5,3,4,6).and_return(dbl) |
|
|
|
|
expect(dbl).to receive(:add_color_stop).with(0.0, '#def') |
|
|
|
|
expect(dbl).to receive(:add_color_stop).with(1.0, '#112233') |
|
|
|
|
expect(cairo).to receive(:matrix).and_return(mtx) |
|
|
|
|
expect(dbl).to receive(:matrix=).with(mtx) |
|
|
|
|
expect(cairo).to receive(:set_source).with(dbl) |
|
|
|
|
subject.set_source_squibcolor('(1,2,5) (3,4,6) #def@0 #112233@1') |
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
it 'on linear patterns' do |
|
|
|
|
dbl = double(Cairo::LinearPattern) |
|
|
|
|
mtx = double(Cairo::Matrix) |
|
|
|
|
expect(Cairo::LinearPattern).to receive(:new).with(1,2,3,4).and_return(dbl) |
|
|
|
|
expect(dbl).to receive(:add_color_stop).with(0.0, '#def') |
|
|
|
|
expect(dbl).to receive(:add_color_stop).with(1.0, '#112233') |
|
|
|
|
expect(cairo).to receive(:matrix).and_return(mtx) |
|
|
|
|
expect(dbl).to receive(:matrix=).with(mtx) |
|
|
|
|
expect(cairo).to receive(:set_source).with(dbl) |
|
|
|
|
subject.set_source_squibcolor('(1,2) (3,4) #def@0 #112233@1') |
|
|
|
|
end |
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
it 'on linear patterns' do |
|
|
|
|
dbl = double(Cairo::LinearPattern) |
|
|
|
|
expect(Cairo::LinearPattern).to receive(:new).with(1,2,3,4).and_return(dbl) |
|
|
|
|
expect(dbl).to receive(:add_color_stop).with(0.0, '#def') |
|
|
|
|
expect(dbl).to receive(:add_color_stop).with(1.0, '#112233') |
|
|
|
|
expect(cairo).to receive(:set_source).with(dbl) |
|
|
|
|
subject.set_source_squibcolor('(1,2) (3,4) #def@0 #112233@1') |
|
|
|
|
end |
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
context 'flips' do |
|
|
|
|
context '#flip' do |
|
|
|
|
it 'in the basic case' do |
|
|
|
|
dbl = double(Cairo::Matrix) |
|
|
|
|
expect(Cairo::Matrix).to receive(:new).with(-1.0, 0.0, 0.0, -1.0, 6.0, 8.0).and_return(dbl) |
|
|
|
|
|