aboutsummaryrefslogblamecommitdiffstats
path: root/railties/test/application/rackup_test.rb
blob: 3790de721ca10b023ff705f38078a553b22ce4f4 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                 

                       
                                         

                                             
              
                    

                                                                      

       

               
                





                                            
                                        



                               

       

                                                                               
                                                          
       
 



                                                                 
                                                                           

       


                                                                      


       
require "isolation/abstract_unit"

module ApplicationTests
  class RackupTest < Test::Unit::TestCase
    include ActiveSupport::Testing::Isolation

    def rackup
      require "rack"
      app, options = Rack::Builder.parse_file("#{app_path}/config.ru")
      app
    end

    def setup
      build_app
      boot_rails
    end

    test "rails app is present" do
      assert File.exist?(app_path("config"))
    end

    test "config.ru can be racked up" do
      Dir.chdir app_path do
        @app = rackup
        assert_welcome get("/")
      end
    end

    test "Rails.application is available after config.ru has been racked up" do
      rackup
      assert_kind_of Rails::Application, Rails.application
    end

    # Passenger still uses AC::Dispatcher, so we need to
    # keep it working for now
    test "deprecated ActionController::Dispatcher still works" do
      rackup
      assert_kind_of?  Rails::Application, ActionController::Dispatcher.new
    end

    test "the config object is available on the application object" do
      rackup
      assert_equal 'UTC', Rails.application.config.time_zone
    end
  end
end