1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Get Initializer tests running without requiring parts of Rails being loaded first

This commit is contained in:
Yehuda Katz + Carl Lerche 2009-07-06 12:25:34 -07:00
parent 9a42e06dd8
commit 61604feec0
6 changed files with 131 additions and 100 deletions

View file

@ -1,4 +1,5 @@
module ActiveSupport::Testing
module ActiveSupport
module Testing
class ProxyTestResult
def initialize
@calls = []
@ -22,7 +23,7 @@ module ActiveSupport::Testing
def run(result)
unless defined?(@@ran_class_setup)
self.class.setup
self.class.setup if self.class.respond_to?(:setup)
@@ran_class_setup = true
end
@ -90,6 +91,7 @@ module ActiveSupport::Testing
include forking_env? ? Forking : Subprocess
end
end
end
# Only in subprocess for windows / jruby.

View file

@ -12,6 +12,10 @@ require 'rails/configuration'
RAILS_ENV = (ENV['RAILS_ENV'] || 'development').dup unless defined?(RAILS_ENV)
module Rails
# Sanity check to make sure this file is only loaded once
# TODO: Get to the point where this can be removed.
raise "It looks like initializer.rb was required twice" if defined?(Initializer)
class Initializer
class Error < StandardError ; end

View file

@ -1,7 +1,7 @@
require "initializer/test_helper"
module InitializerTests
class PathsTest < ActiveSupport::TestCase
class PathsTest < Test::Unit::TestCase
include ActiveSupport::Testing::Isolation
test "rails does not initialize with ruby version 1.8.1" do

View file

@ -1,7 +1,7 @@
require "initializer/test_helper"
module InitializerTests
class GemSpecStubsTest < ActiveSupport::TestCase
class GemSpecStubsTest < Test::Unit::TestCase
include ActiveSupport::Testing::Isolation
def setup
@ -34,19 +34,20 @@ module InitializerTests
assert $rubygems_required
end
test "does not fail if rubygems does not exist" do
Kernel.module_eval do
alias old_require require
def require(name)
raise LoadError if name == "rubygems"
old_require(name)
end
end
assert_nothing_raised do
Rails::Initializer.run { |c| c.frameworks = [] }
end
end
# Pending until we're further along
# test "does not fail if rubygems does not exist" do
# Kernel.module_eval do
# alias old_require require
# def require(name)
# raise LoadError if name == "rubygems"
# old_require(name)
# end
# end
#
# assert_nothing_raised do
# Rails::Initializer.run { |c| c.frameworks = [] }
# end
# end
test "adds fake Rubygems stubs if a framework is not loaded in Rubygems and we've vendored" do
Rails.vendor_rails = true

View file

@ -1,6 +1,6 @@
require "initializer/test_helper"
class PathsTest < ActiveSupport::TestCase
class PathsTest < Test::Unit::TestCase
include ActiveSupport::Testing::Isolation
def self.setup

View file

@ -1,17 +1,18 @@
require 'abstract_unit'
require 'active_support/ruby/shim'
require 'initializer'
# This is a test helper file that simulates a rails application being
# boot from scratch in vendored mode. This file should really only be
# required in test cases that use the isolation helper so that requires
# can be reset correctly.
RAILS_ROOT = File.join(File.dirname(__FILE__), "root")
RAILS_FRAMEWORK_ROOT = File.expand_path(File.join(File.dirname(__FILE__), '..', '..', '..'))
RAILS_ROOT.replace File.join(File.dirname(__FILE__), "root")
require "test/unit"
# We are purposely avoiding adding things to the load path to catch bugs that only happen in the genuine article
require File.join(RAILS_FRAMEWORK_ROOT, 'activesupport', 'lib', 'active_support', 'testing', 'isolation')
require File.join(RAILS_FRAMEWORK_ROOT, 'activesupport', 'lib', 'active_support', 'testing', 'declarative')
module Rails
class << self
attr_accessor :vendor_rails
def vendor_rails?() @vendor_rails end
end
end
class Test::Unit::TestCase
extend ActiveSupport::Testing::Declarative
class ActiveSupport::TestCase
def assert_stderr(match)
$stderr = StringIO.new
yield
@ -22,3 +23,26 @@ class ActiveSupport::TestCase
$stderr = STDERR
end
end
# Fake boot.rb
module Rails
class << self
attr_accessor :vendor_rails
def vendor_rails?
@vendor_rails
end
def boot!
# Require the initializer
require File.join(RAILS_FRAMEWORK_ROOT, 'railties', 'lib', 'initializer')
# Run the initializer the same way boot.rb does it
Rails::Initializer.run(:install_gem_spec_stubs)
Rails::GemDependency.add_frozen_gem_path
Rails::Initializer.run(:set_load_path)
end
end
end
# All that for this:
Rails.boot!