aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test/generators/generators_test_helper.rb
blob: a258574dce5e2d06ba1d895645276607221ed345 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
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

$LOAD_PATH.unshift "#{File.dirname(__FILE__)}/../../lib"
$LOAD_PATH.unshift "#{File.dirname(__FILE__)}/../../../activerecord/lib"
$LOAD_PATH.unshift "#{File.dirname(__FILE__)}/../../../actionpack/lib"
require 'generators'
require 'activerecord'
require 'action_dispatch'

CURRENT_PATH = File.expand_path(Dir.pwd)
Rails::Generators.no_color!

class GeneratorsTestCase < Test::Unit::TestCase
  include FileUtils

  def destination_root
    @destination_root ||= File.expand_path(File.join(File.dirname(__FILE__),
                                            '..', 'fixtures', 'tmp'))
  end

  def setup
    cd CURRENT_PATH
    rm_rf(destination_root)
    mkdir_p(destination_root)
  end

  def test_truth
    # don't complain, test/unit
  end

  def capture(stream)
    begin
      stream = stream.to_s
      eval "$#{stream} = StringIO.new"
      yield
      result = eval("$#{stream}").string
    ensure 
      eval("$#{stream} = #{stream.upcase}")
    end

    result
  end
  alias :silence :capture

  def assert_file(relative, *contents)
    absolute = File.join(destination_root, relative)
    assert File.exists?(absolute), "Expected file #{relative.inspect} to exist, but does not"

    read = File.read(absolute) if block_given? || !contents.empty?
    yield read if block_given?

    contents.each do |content|
      case content
        when String
          assert_equal content, read
        when Regexp
          assert_match content, read
      end
    end
  end

  def assert_no_file(relative)
    absolute = File.join(destination_root, relative)
    assert !File.exists?(absolute), "Expected file #{relative.inspect} to not exist, but does"
  end

  def assert_migration(relative, *contents, &block)
    file_name = migration_file_name(relative)
    assert file_name, "Expected migration #{relative} to exist, but was not found"
    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

  def assert_class_method(content, method, &block)
    assert_instance_method content, "self.#{method}", &block
  end

  def assert_instance_method(content, method)
    assert content =~ /def #{method}(\(.+\))?(.*?)\n  end/m, "Expected to have method #{method}"
    yield $2.strip if block_given?
  end

  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