Created
May 16, 2014 18:02
-
-
Save chadbailey59/5daaffa5010a5c62836a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'spec_helper' | |
if defined?(Rails) && Rails::VERSION::MAJOR == 3 | |
include Rails3Generator | |
RACK_TIMEOUT_TIME = 2 | |
describe "Rails 3 Integration", type: :feature do | |
before :all do | |
create_app | |
add_rack_timeout(RACK_TIMEOUT_TIME) | |
set_log_level(:debug) | |
create_sleep_controller | |
start_app | |
end | |
after :all do | |
destroy_app | |
end | |
it "returns 200 for a short request" do | |
time = 1 | |
response_time = Benchmark.realtime { Capybara.visit "/sleep/#{time}" } | |
expect(Capybara.page.status_code).to eq(200) | |
expect(response_time).to be_within(0.5).of(time) | |
end | |
it "returns 500 in the correct amount of time for a long request" do | |
time = 4 | |
timeout_time = RACK_TIMEOUT_TIME | |
response_time = Benchmark.realtime { Capybara.visit "/sleep/#{time}" } | |
expect(Capybara.page.status_code).to eq(500) | |
# allow an extra 0.5s | |
expect(response_time).to be_within(0.5).of(timeout_time) | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment