rails--rails/railties/test/generators/generators_test_helper.rb

102 lines
2.8 KiB
Ruby
Raw Normal View History

require 'test/unit'
require 'fileutils'
fixtures = File.expand_path(File.join(File.dirname(__FILE__), '..', 'fixtures'))
if defined?(RAILS_ROOT)
RAILS_ROOT.replace fixtures
else
RAILS_ROOT = fixtures
end
2009-07-06 16:31:28 +00:00
$LOAD_PATH.unshift "#{File.dirname(__FILE__)}/../../../activerecord/lib"
$LOAD_PATH.unshift "#{File.dirname(__FILE__)}/../../lib"
require 'generators'
CURRENT_PATH = File.expand_path(Dir.pwd)
Rails::Generators.no_color!
2009-06-25 08:18:00 +00:00
class GeneratorsTestCase < Test::Unit::TestCase
include FileUtils
2009-06-23 17:10:42 +00:00
def destination_root
@destination_root ||= File.expand_path(File.join(File.dirname(__FILE__),
'..', '..', 'fixtures', 'tmp'))
end
2009-06-23 17:10:42 +00:00
def setup
cd CURRENT_PATH
2009-06-25 08:44:46 +00:00
rm_rf(destination_root)
2009-06-25 09:56:18 +00:00
mkdir_p(destination_root)
2009-06-25 08:44:46 +00:00
end
def test_truth
# don't complain, test/unit
end
2009-06-23 17:10:42 +00:00
def capture(stream)
begin
stream = stream.to_s
eval "$#{stream} = StringIO.new"
yield
result = eval("$#{stream}").string
ensure
eval("$#{stream} = #{stream.upcase}")
end
2009-06-23 17:10:42 +00:00
result
end
2009-06-23 17:10:42 +00:00
alias :silence :capture
2009-06-27 11:03:07 +00:00
def assert_file(relative, *contents)
2009-06-23 17:10:42 +00:00
absolute = File.join(destination_root, relative)
assert File.exists?(absolute), "Expected file #{relative.inspect} to exist, but does not"
2009-06-28 17:46:34 +00:00
read = File.read(absolute) if block_given? || !contents.empty?
yield read if block_given?
2009-06-27 11:03:07 +00:00
contents.each do |content|
case content
when String
assert_equal content, read
2009-06-27 11:03:07 +00:00
when Regexp
assert_match content, read
2009-06-27 11:03:07 +00:00
end
end
end
def assert_no_file(relative)
2009-06-23 17:10:42 +00:00
absolute = File.join(destination_root, relative)
assert !File.exists?(absolute), "Expected file #{relative.inspect} to not exist, but does"
end
2009-06-28 17:46:34 +00:00
def assert_migration(relative, *contents, &block)
file_name = migration_file_name(relative)
assert file_name, "Expected migration #{relative} to exist, but was not found"
2009-06-28 17:46:34 +00:00
assert_file File.join(File.dirname(relative), file_name), *contents, &block
end
def assert_no_migration(relative)
file_name = migration_file_name(relative)
assert_nil file_name, "Expected migration #{relative} to not exist, but found #{file_name}"
end
2009-06-28 17:46:34 +00:00
def assert_class_method(content, method, &block)
assert_instance_method content, "self.#{method}", &block
end
2009-06-28 17:46:34 +00:00
def assert_instance_method(content, method)
2009-07-01 18:12:29 +00:00
assert content =~ /def #{method}(\(.+\))?(.*?)\n end/m, "Expected to have method #{method}"
yield $2.strip if block_given?
end
2009-06-28 17:46:34 +00:00
protected
def migration_file_name(relative)
absolute = File.join(destination_root, relative)
dirname, file_name = File.dirname(absolute), File.basename(absolute).sub(/\.rb$/, '')
migration = Dir.glob("#{dirname}/[0-9]*_*.rb").grep(/\d+_#{file_name}.rb$/).first
File.basename(migration) if migration
end
end