aboutsummaryrefslogblamecommitdiffstats
path: root/railties/test/generators/generator_test_helper.rb
blob: 2b988bde7abb98b14cf8945fc2ecc0bf8c3f11bf (plain) (tree)
1
2
3
4
5
6
7
8
9


                   
                                                        
 


                                                   
 

                                              
 

                                                                                       
     
 


                             




                               
 







                                           

       
          
     
                         
 


                                                    
 




                                                 

       
 


                                                    
     
   
require 'test/unit'
require 'fileutils'

$LOAD_PATH.unshift "#{File.dirname(__FILE__)}/../../lib"

# For this while, let's load all generators by hand
require 'generators'
require 'generators/rails/app/app_generator'

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

  def destination_root
    @destination_root ||= File.expand_path("#{File.dirname(__FILE__)}/../fixtures/tmp")
  end

  def setup
    mkdir_p(destination_root)
    rm_rf(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, content=nil)
    absolute = File.join(destination_root, relative)
    assert File.exists?(absolute)

    case content
      when String
        assert_equal content, File.read(absolute)
      when Regexp
        assert_match content, File.read(absolute)
    end
  end

  def assert_no_file(relative, content=nil)
    absolute = File.join(destination_root, relative)
    assert !File.exists?(absolute)
  end
end