2009-09-25 22:32:28 -04:00
|
|
|
# Note:
|
|
|
|
# It is important to keep this file as light as possible
|
|
|
|
# the goal for tests that require this is to test booting up
|
|
|
|
# rails from an empty state, so anything added here could
|
|
|
|
# hide potential failures
|
|
|
|
#
|
|
|
|
# It is also good to know what is the bare minimum to get
|
|
|
|
# Rails booted up.
|
2009-10-07 20:02:36 -04:00
|
|
|
require 'fileutils'
|
|
|
|
|
2012-05-16 07:46:26 -04:00
|
|
|
require 'bundler/setup' unless defined?(Bundler)
|
2012-01-06 18:18:12 -05:00
|
|
|
require 'minitest/autorun'
|
2012-01-05 20:30:17 -05:00
|
|
|
require 'active_support/test_case'
|
2009-09-25 22:32:28 -04:00
|
|
|
|
|
|
|
RAILS_FRAMEWORK_ROOT = File.expand_path("#{File.dirname(__FILE__)}/../../..")
|
|
|
|
|
|
|
|
# These files do not require any others and are needed
|
|
|
|
# to run the tests
|
2012-05-11 12:56:05 -04:00
|
|
|
require "active_support/testing/isolation"
|
|
|
|
require "active_support/core_ext/kernel/reporting"
|
2012-06-19 17:27:52 -04:00
|
|
|
require 'tmpdir'
|
2009-09-25 22:32:28 -04:00
|
|
|
|
|
|
|
module TestHelpers
|
|
|
|
module Paths
|
2012-06-19 17:27:52 -04:00
|
|
|
def app_template_path
|
|
|
|
File.join Dir.tmpdir, 'app_template'
|
|
|
|
end
|
2009-10-14 19:13:45 -04:00
|
|
|
|
2009-09-25 22:32:28 -04:00
|
|
|
def tmp_path(*args)
|
2012-06-19 18:41:52 -04:00
|
|
|
@tmp_path ||= File.realpath(Dir.mktmpdir)
|
2012-06-19 19:27:54 -04:00
|
|
|
File.join(@tmp_path, *args)
|
2009-09-25 22:32:28 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def app_path(*args)
|
|
|
|
tmp_path(*%w[app] + args)
|
|
|
|
end
|
2009-10-05 10:41:08 -04:00
|
|
|
|
2009-10-08 21:12:28 -04:00
|
|
|
def framework_path
|
|
|
|
RAILS_FRAMEWORK_ROOT
|
|
|
|
end
|
|
|
|
|
2009-10-05 10:41:08 -04:00
|
|
|
def rails_root
|
|
|
|
app_path
|
|
|
|
end
|
2009-09-25 22:32:28 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
module Rack
|
2010-10-02 11:42:36 -04:00
|
|
|
def app(env = "production")
|
|
|
|
old_env = ENV["RAILS_ENV"]
|
|
|
|
@app ||= begin
|
|
|
|
ENV["RAILS_ENV"] = env
|
|
|
|
require "#{app_path}/config/environment"
|
|
|
|
Rails.application
|
|
|
|
end
|
|
|
|
ensure
|
|
|
|
ENV["RAILS_ENV"] = old_env
|
|
|
|
end
|
|
|
|
|
2009-09-25 22:32:28 -04:00
|
|
|
def extract_body(response)
|
|
|
|
"".tap do |body|
|
|
|
|
response[2].each {|chunk| body << chunk }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def get(path)
|
|
|
|
@app.call(::Rack::MockRequest.env_for(path))
|
|
|
|
end
|
|
|
|
|
|
|
|
def assert_welcome(resp)
|
|
|
|
assert_equal 200, resp[0]
|
|
|
|
assert resp[1]["Content-Type"] = "text/html"
|
|
|
|
assert extract_body(resp).match(/Welcome aboard/)
|
|
|
|
end
|
|
|
|
|
|
|
|
def assert_success(resp)
|
|
|
|
assert_equal 202, resp[0]
|
|
|
|
end
|
|
|
|
|
|
|
|
def assert_missing(resp)
|
|
|
|
assert_equal 404, resp[0]
|
|
|
|
end
|
|
|
|
|
|
|
|
def assert_header(key, value, resp)
|
|
|
|
assert_equal value, resp[1][key.to_s]
|
|
|
|
end
|
|
|
|
|
|
|
|
def assert_body(expected, resp)
|
|
|
|
assert_equal expected, extract_body(resp)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
module Generation
|
2011-04-15 12:14:12 -04:00
|
|
|
# Build an application by invoking the generator and going through the whole stack.
|
2009-09-29 19:07:29 -04:00
|
|
|
def build_app(options = {})
|
2011-06-06 12:46:30 -04:00
|
|
|
@prev_rails_env = ENV['RAILS_ENV']
|
|
|
|
ENV['RAILS_ENV'] = 'development'
|
2011-06-06 08:54:05 -04:00
|
|
|
|
2009-09-29 19:07:29 -04:00
|
|
|
FileUtils.rm_rf(app_path)
|
2012-06-19 17:27:52 -04:00
|
|
|
FileUtils.cp_r(app_template_path, app_path)
|
2009-09-29 19:07:29 -04:00
|
|
|
|
|
|
|
# Delete the initializers unless requested
|
|
|
|
unless options[:initializers]
|
|
|
|
Dir["#{app_path}/config/initializers/*.rb"].each do |initializer|
|
|
|
|
File.delete(initializer)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-05-16 07:46:26 -04:00
|
|
|
gemfile_path = "#{app_path}/Gemfile"
|
|
|
|
if options[:gemfile].blank? && File.exist?(gemfile_path)
|
|
|
|
File.delete gemfile_path
|
2010-02-02 14:10:34 -05:00
|
|
|
end
|
|
|
|
|
2009-12-21 19:03:20 -05:00
|
|
|
routes = File.read("#{app_path}/config/routes.rb")
|
|
|
|
if routes =~ /(\n\s*end\s*)\Z/
|
|
|
|
File.open("#{app_path}/config/routes.rb", 'w') do |f|
|
2012-10-14 06:03:39 -04:00
|
|
|
f.puts $` + "\nmatch ':controller(/:action(/:id))(.:format)', via: :all\n" + $1
|
2009-12-21 19:03:20 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-03-14 13:36:15 -04:00
|
|
|
add_to_config <<-RUBY
|
2012-08-01 09:07:01 -04:00
|
|
|
config.eager_load = false
|
2012-11-02 18:27:51 -04:00
|
|
|
config.secret_key_base = "3b7cd727ee24e8444053437c36cc66c4"
|
2012-10-14 06:03:39 -04:00
|
|
|
config.session_store :cookie_store, key: "_myapp_session"
|
2012-03-14 13:36:15 -04:00
|
|
|
config.active_support.deprecation = :log
|
|
|
|
config.action_controller.allow_forgery_protection = false
|
|
|
|
RUBY
|
2009-10-14 19:13:45 -04:00
|
|
|
end
|
|
|
|
|
2011-06-06 08:54:05 -04:00
|
|
|
def teardown_app
|
|
|
|
ENV['RAILS_ENV'] = @prev_rails_env if @prev_rails_env
|
|
|
|
end
|
|
|
|
|
2011-04-15 12:14:12 -04:00
|
|
|
# Make a very basic app, without creating the whole directory structure.
|
|
|
|
# This is faster and simpler than the method above.
|
2010-04-26 03:04:04 -04:00
|
|
|
def make_basic_app
|
|
|
|
require "rails"
|
|
|
|
require "action_controller/railtie"
|
|
|
|
|
|
|
|
app = Class.new(Rails::Application)
|
2012-08-21 16:35:38 -04:00
|
|
|
app.config.eager_load = false
|
2012-11-02 18:27:51 -04:00
|
|
|
app.config.secret_key_base = "3b7cd727ee24e8444053437c36cc66c4"
|
2012-10-14 06:03:39 -04:00
|
|
|
app.config.session_store :cookie_store, key: "_myapp_session"
|
2010-06-29 15:18:17 -04:00
|
|
|
app.config.active_support.deprecation = :log
|
2010-04-26 03:04:04 -04:00
|
|
|
|
|
|
|
yield app if block_given?
|
|
|
|
app.initialize!
|
|
|
|
|
|
|
|
app.routes.draw do
|
2012-04-24 23:32:09 -04:00
|
|
|
get "/" => "omg#index"
|
2010-04-26 03:04:04 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
require 'rack/test'
|
|
|
|
extend ::Rack::Test::Methods
|
|
|
|
end
|
|
|
|
|
2010-10-02 11:42:36 -04:00
|
|
|
def simple_controller
|
|
|
|
controller :foo, <<-RUBY
|
|
|
|
class FooController < ApplicationController
|
|
|
|
def index
|
2012-10-14 06:03:39 -04:00
|
|
|
render text: "foo"
|
2010-10-02 11:42:36 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
RUBY
|
|
|
|
|
|
|
|
app_file 'config/routes.rb', <<-RUBY
|
|
|
|
AppTemplate::Application.routes.draw do
|
2012-04-24 23:32:09 -04:00
|
|
|
get ':controller(/:action)'
|
2010-10-02 11:42:36 -04:00
|
|
|
end
|
|
|
|
RUBY
|
|
|
|
end
|
|
|
|
|
2009-11-06 20:21:39 -05:00
|
|
|
class Bukkit
|
2010-01-26 08:58:00 -05:00
|
|
|
attr_reader :path
|
|
|
|
|
2009-11-06 20:21:39 -05:00
|
|
|
def initialize(path)
|
|
|
|
@path = path
|
|
|
|
end
|
|
|
|
|
|
|
|
def write(file, string)
|
|
|
|
path = "#{@path}/#{file}"
|
|
|
|
FileUtils.mkdir_p(File.dirname(path))
|
|
|
|
File.open(path, "w") {|f| f.puts string }
|
|
|
|
end
|
|
|
|
|
|
|
|
def delete(file)
|
|
|
|
File.delete("#{@path}/#{file}")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2010-01-26 08:58:00 -05:00
|
|
|
def engine(name)
|
|
|
|
dir = "#{app_path}/random/#{name}"
|
|
|
|
FileUtils.mkdir_p(dir)
|
|
|
|
|
|
|
|
app = File.readlines("#{app_path}/config/application.rb")
|
|
|
|
app.insert(2, "$:.unshift(\"#{dir}/lib\")")
|
|
|
|
app.insert(3, "require #{name.inspect}")
|
|
|
|
|
|
|
|
File.open("#{app_path}/config/application.rb", 'r+') do |f|
|
|
|
|
f.puts app
|
|
|
|
end
|
|
|
|
|
2009-11-06 20:21:39 -05:00
|
|
|
Bukkit.new(dir).tap do |bukkit|
|
|
|
|
yield bukkit if block_given?
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-10-21 18:45:11 -04:00
|
|
|
def script(script)
|
|
|
|
Dir.chdir(app_path) do
|
2010-02-06 11:18:10 -05:00
|
|
|
`#{Gem.ruby} #{app_path}/script/rails #{script}`
|
2009-10-21 18:45:11 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-10-14 19:13:45 -04:00
|
|
|
def add_to_config(str)
|
2009-10-15 17:50:02 -04:00
|
|
|
environment = File.read("#{app_path}/config/application.rb")
|
2009-12-21 19:57:23 -05:00
|
|
|
if environment =~ /(\n\s*end\s*end\s*)\Z/
|
2009-10-15 17:50:02 -04:00
|
|
|
File.open("#{app_path}/config/application.rb", 'w') do |f|
|
2009-10-14 19:13:45 -04:00
|
|
|
f.puts $` + "\n#{str}\n" + $1
|
2011-09-23 19:56:49 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def add_to_env_config(env, str)
|
|
|
|
environment = File.read("#{app_path}/config/environments/#{env}.rb")
|
|
|
|
if environment =~ /(\n\s*end\s*)\Z/
|
|
|
|
File.open("#{app_path}/config/environments/#{env}.rb", 'w') do |f|
|
|
|
|
f.puts $` + "\n#{str}\n" + $1
|
2009-09-29 19:07:29 -04:00
|
|
|
end
|
|
|
|
end
|
2009-09-25 22:32:28 -04:00
|
|
|
end
|
|
|
|
|
2010-11-18 14:07:23 -05:00
|
|
|
def remove_from_config(str)
|
2010-11-18 15:10:37 -05:00
|
|
|
file = "#{app_path}/config/application.rb"
|
|
|
|
contents = File.read(file)
|
|
|
|
contents.sub!(/#{str}/, "")
|
|
|
|
File.open(file, "w+") { |f| f.puts contents }
|
2010-11-18 14:07:23 -05:00
|
|
|
end
|
|
|
|
|
2009-09-25 22:32:28 -04:00
|
|
|
def app_file(path, contents)
|
2009-10-07 18:21:19 -04:00
|
|
|
FileUtils.mkdir_p File.dirname("#{app_path}/#{path}")
|
|
|
|
File.open("#{app_path}/#{path}", 'w') do |f|
|
2009-09-25 22:32:28 -04:00
|
|
|
f.puts contents
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-06-21 10:18:50 -04:00
|
|
|
def remove_file(path)
|
|
|
|
FileUtils.rm_rf "#{app_path}/#{path}"
|
|
|
|
end
|
|
|
|
|
2009-09-25 22:32:28 -04:00
|
|
|
def controller(name, contents)
|
|
|
|
app_file("app/controllers/#{name}_controller.rb", contents)
|
|
|
|
end
|
2009-09-29 19:07:29 -04:00
|
|
|
|
2009-12-22 20:03:23 -05:00
|
|
|
def use_frameworks(arr)
|
|
|
|
to_remove = [:actionmailer,
|
2011-05-15 15:34:36 -04:00
|
|
|
:activerecord] - arr
|
2009-12-22 20:03:23 -05:00
|
|
|
$:.reject! {|path| path =~ %r'/(#{to_remove.join('|')})/' }
|
|
|
|
end
|
|
|
|
|
2009-09-29 19:07:29 -04:00
|
|
|
def boot_rails
|
2010-02-23 20:31:17 -05:00
|
|
|
require File.expand_path('../../../../load_paths', __FILE__)
|
2009-09-29 19:07:29 -04:00
|
|
|
end
|
2009-09-25 22:32:28 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-01-05 20:30:17 -05:00
|
|
|
class ActiveSupport::TestCase
|
2009-09-25 22:32:28 -04:00
|
|
|
include TestHelpers::Paths
|
|
|
|
include TestHelpers::Rack
|
|
|
|
include TestHelpers::Generation
|
|
|
|
end
|
|
|
|
|
|
|
|
# Create a scope and build a fixture rails app
|
|
|
|
Module.new do
|
|
|
|
extend TestHelpers::Paths
|
2012-06-29 09:25:47 -04:00
|
|
|
|
2009-09-25 22:32:28 -04:00
|
|
|
# Build a rails app
|
2012-06-29 09:25:47 -04:00
|
|
|
FileUtils.rm_rf(app_template_path)
|
2012-06-19 17:27:52 -04:00
|
|
|
FileUtils.mkdir(app_template_path)
|
2009-10-21 18:45:11 -04:00
|
|
|
|
2010-02-23 20:31:17 -05:00
|
|
|
environment = File.expand_path('../../../../load_paths', __FILE__)
|
2012-06-29 09:25:47 -04:00
|
|
|
require_environment = "-r #{environment}"
|
2009-10-21 18:45:11 -04:00
|
|
|
|
2012-05-16 07:46:26 -04:00
|
|
|
`#{Gem.ruby} #{require_environment} #{RAILS_FRAMEWORK_ROOT}/railties/bin/rails new #{app_template_path} --skip-gemfile`
|
2012-06-19 17:27:52 -04:00
|
|
|
File.open("#{app_template_path}/config/boot.rb", 'w') do |f|
|
2012-06-29 09:25:47 -04:00
|
|
|
f.puts "require '#{environment}'"
|
2009-12-31 15:28:48 -05:00
|
|
|
f.puts "require 'rails/all'"
|
2009-10-21 18:45:11 -04:00
|
|
|
end
|
2011-06-07 06:16:05 -04:00
|
|
|
end unless defined?(RAILS_ISOLATED_ENGINE)
|