$:.unshift File.join(File.dirname(__FILE__), '..', 'lib') require 'rspec' require 'image_size' describe ImageSize do [ ['test.bmp', :bmp, 50, 50], ['test.gif', :gif, 668, 481], ['test.jpg', :jpeg, 320, 240], ['test.pbm', :pbm, 85, 55], ['test.pcx', :pcx, 70, 60], ['test.pgm', :pgm, 90, 55], ['test.png', :png, 640, 532], ['test.psd', :psd, 20, 20], ['test.swf', :swf, 450, 200], ['test.tif', :tiff, 64, 64], ['test.xbm', :xbm, 16, 16], ['test.xpm', :xpm, 32, 32], ['image_size_spec.rb', nil, nil, nil], ].each do |name, format, width, height| path = File.join(File.dirname(__FILE__), name) it "should get format and dimensions for #{name} given IO" do File.open(path, 'rb') do |fh| is = ImageSize.new(fh) [is.format, is.width, is.height].should == [format, width, height] end end it "should get format and dimensions for #{name} given StringIO" do File.open(path, 'rb') do |fh| is = ImageSize.new(StringIO.new(fh.read)) [is.format, is.width, is.height].should == [format, width, height] end end it "should get format and dimensions for #{name} given file data" do File.open(path, 'rb') do |fh| is = ImageSize.new(fh.read) [is.format, is.width, is.height].should == [format, width, height] end end it "should get format and dimensions for #{name} given Tempfile" do file_data = File.open(path, 'rb') { |fh| fh.read } Tempfile.open(name) do |tf| tf.write(file_data) tf.rewind is = ImageSize.new(tf) [is.format, is.width, is.height].should == [format, width, height] end end it "should get format and dimensions for #{name} given IO when run twice" do File.open(path, 'rb') do |fh| is = ImageSize.new(fh) [is.format, is.width, is.height].should == [format, width, height] is = ImageSize.new(fh) [is.format, is.width, is.height].should == [format, width, height] end end it "should get format and dimensions for #{name} as path" do is = ImageSize.path(path) [is.format, is.width, is.height].should == [format, width, height] end end end