thoughtbot--shoulda-matchers/test/model_builder.rb

131 lines
3.5 KiB
Ruby
Raw Normal View History

class ActiveSupport::TestCase
2010-02-13 03:05:12 +00:00
TMP_VIEW_PATH =
File.expand_path(File.join(File.dirname(__FILE__), '..', 'rails_root', 'tmp', 'views')).freeze
def create_table(table_name, &block)
connection = ActiveRecord::Base.connection
begin
connection.execute("DROP TABLE IF EXISTS #{table_name}")
connection.create_table(table_name, &block)
@created_tables ||= []
@created_tables << table_name
connection
rescue Exception => e
connection.execute("DROP TABLE IF EXISTS #{table_name}")
raise e
end
end
def define_constant(class_name, base, &block)
class_name = class_name.to_s.camelize
klass = Class.new(base)
Object.const_set(class_name, klass)
klass.class_eval(&block) if block_given?
@defined_constants ||= []
@defined_constants << class_name
klass
end
def define_model_class(class_name, &block)
define_constant(class_name, ActiveRecord::Base, &block)
end
def define_model(name, columns = {}, &block)
class_name = name.to_s.pluralize.classify
table_name = class_name.tableize
create_table(table_name) do |table|
columns.each do |name, type|
table.column name, type
end
end
define_model_class(class_name, &block)
end
2010-06-08 16:15:52 +00:00
def define_mailer(name, paths, &block)
class_name = name.to_s.pluralize.classify
klass = define_constant(class_name, ActionMailer::Base, &block)
paths.each {|path| create_view("#{name}/#{path}", "<%= @body %>")}
klass.template_root = TMP_VIEW_PATH
end
def define_controller(class_name, &block)
class_name = class_name.to_s
class_name << 'Controller' unless class_name =~ /Controller$/
define_constant(class_name, ActionController::Base, &block)
end
def define_routes(&block)
@replaced_routes = ActionController::Routing::Routes
new_routes = ActionController::Routing::RouteSet.new
silence_warnings do
ActionController::Routing.const_set('Routes', new_routes)
end
new_routes.draw(&block)
end
2010-02-13 03:05:12 +00:00
def build_response(opts = {}, &block)
action = opts[:action] || 'example'
klass = define_controller('Examples')
block ||= lambda { render :nothing => true }
2010-02-13 03:05:12 +00:00
klass.class_eval { define_method(action, &block) }
2009-02-05 03:04:08 +00:00
define_routes do |map|
2010-02-13 03:05:12 +00:00
map.connect 'examples', :controller => 'examples', :action => action
2009-02-05 03:04:08 +00:00
end
2010-02-13 03:05:12 +00:00
create_view("examples/#{action}.html.erb", "abc")
klass.view_paths = [TMP_VIEW_PATH]
@controller = klass.new
@request = ActionController::TestRequest.new
@response = ActionController::TestResponse.new
2010-02-13 03:05:12 +00:00
get action
@controller
end
2010-02-13 03:05:12 +00:00
def create_view(path, contents)
full_path = File.join(TMP_VIEW_PATH, path)
FileUtils.mkdir_p(File.dirname(full_path))
File.open(full_path, 'w') { |file| file.write(contents) }
end
def teardown_with_models
if @defined_constants
@defined_constants.each do |class_name|
Object.send(:remove_const, class_name)
end
end
if @created_tables
@created_tables.each do |table_name|
ActiveRecord::Base.
connection.
execute("DROP TABLE IF EXISTS #{table_name}")
end
end
if @replaced_routes
ActionController::Routing::Routes.clear!
silence_warnings do
ActionController::Routing.const_set('Routes', @replaced_routes)
end
@replaced_routes.reload!
end
2010-02-13 03:05:12 +00:00
FileUtils.rm_rf(TMP_VIEW_PATH)
teardown_without_models
end
alias_method :teardown_without_models, :teardown
alias_method :teardown, :teardown_with_models
end