require 'rubygems' require 'tempfile' require 'test/unit' require 'shoulda' require 'mocha' case ENV['RAILS_VERSION'] when '2.1' then gem 'activerecord', '~>2.1.0' gem 'activesupport', '~>2.1.0' gem 'actionpack', '~>2.1.0' when '3.0' then gem 'activerecord', '~>3.0.0' gem 'activesupport', '~>3.0.0' gem 'actionpack', '~>3.0.0' else gem 'activerecord', '~>2.3.0' gem 'activesupport', '~>2.3.0' gem 'actionpack', '~>2.3.0' end require 'active_record' require 'active_record/version' require 'active_support' require 'action_pack' puts "Testing against version #{ActiveRecord::VERSION::STRING}" begin require 'ruby-debug' rescue LoadError => e puts "debugger disabled" end ROOT = File.join(File.dirname(__FILE__), '..') def silence_warnings old_verbose, $VERBOSE = $VERBOSE, nil yield ensure $VERBOSE = old_verbose end class Test::Unit::TestCase def setup silence_warnings do Object.const_set(:Rails, stub('Rails', :root => ROOT, :env => 'test')) end end end $LOAD_PATH << File.join(ROOT, 'lib') $LOAD_PATH << File.join(ROOT, 'lib', 'paperclip') require File.join(ROOT, 'lib', 'paperclip.rb') require 'shoulda_macros/paperclip' FIXTURES_DIR = File.join(File.dirname(__FILE__), "fixtures") config = YAML::load(IO.read(File.dirname(__FILE__) + '/database.yml')) ActiveRecord::Base.logger = Logger.new(File.dirname(__FILE__) + "/debug.log") ActiveRecord::Base.establish_connection(config['test']) def reset_class class_name ActiveRecord::Base.send(:include, Paperclip) Object.send(:remove_const, class_name) rescue nil klass = Object.const_set(class_name, Class.new(ActiveRecord::Base)) klass.class_eval{ include Paperclip } klass end def reset_table table_name, &block block ||= lambda { |table| true } ActiveRecord::Base.connection.create_table :dummies, {:force => true}, &block end def modify_table table_name, &block ActiveRecord::Base.connection.change_table :dummies, &block end def rebuild_model options = {} ActiveRecord::Base.connection.create_table :dummies, :force => true do |table| table.column :other, :string table.column :avatar_file_name, :string table.column :avatar_content_type, :string table.column :avatar_file_size, :integer table.column :avatar_updated_at, :datetime end rebuild_class options end def rebuild_class options = {} ActiveRecord::Base.send(:include, Paperclip) Object.send(:remove_const, "Dummy") rescue nil Object.const_set("Dummy", Class.new(ActiveRecord::Base)) Dummy.class_eval do include Paperclip has_attached_file :avatar, options end end class FakeModel attr_accessor :avatar_file_name, :avatar_file_size, :avatar_last_updated, :avatar_content_type, :id def errors @errors ||= [] end def run_paperclip_callbacks name, *args end end def attachment options Paperclip::Attachment.new(:avatar, FakeModel.new, options) end def silence_warnings old_verbose, $VERBOSE = $VERBOSE, nil yield ensure $VERBOSE = old_verbose end def should_accept_dummy_class should "accept the class" do assert_accepts @matcher, @dummy_class end should "accept an instance of that class" do assert_accepts @matcher, @dummy_class.new end end def should_reject_dummy_class should "reject the class" do assert_rejects @matcher, @dummy_class end should "reject an instance of that class" do assert_rejects @matcher, @dummy_class.new end end