aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEileen M. Uchitelle <eileencodes@users.noreply.github.com>2017-03-03 07:52:56 -0500
committerGitHub <noreply@github.com>2017-03-03 07:52:56 -0500
commitcf11ea0f0de1d1befda8a9b266bb764497b6c4fb (patch)
treeafa18f2d8349c41916088605e45685f05e074c6f
parentc9bc4de19850ce3e66d0bf1f9ef70468c0366670 (diff)
parent5edbdca5c0db00b0724bc0c9202c83194b688ae8 (diff)
downloadrails-cf11ea0f0de1d1befda8a9b266bb764497b6c4fb.tar.gz
rails-cf11ea0f0de1d1befda8a9b266bb764497b6c4fb.tar.bz2
rails-cf11ea0f0de1d1befda8a9b266bb764497b6c4fb.zip
Merge pull request #28223 from mtsmfm/fix-random-fail-on-system-test-with-ajax
Fix random failure on system test with ajax
-rw-r--r--actionpack/lib/action_dispatch/system_testing/test_helpers/setup_and_teardown.rb2
-rw-r--r--railties/test/application/test_runner_test.rb28
2 files changed, 29 insertions, 1 deletions
diff --git a/actionpack/lib/action_dispatch/system_testing/test_helpers/setup_and_teardown.rb b/actionpack/lib/action_dispatch/system_testing/test_helpers/setup_and_teardown.rb
index 1c89bfacfa..187ba2cc5f 100644
--- a/actionpack/lib/action_dispatch/system_testing/test_helpers/setup_and_teardown.rb
+++ b/actionpack/lib/action_dispatch/system_testing/test_helpers/setup_and_teardown.rb
@@ -11,8 +11,8 @@ module ActionDispatch
def after_teardown
take_failed_screenshot
- super
Capybara.reset_sessions!
+ super
end
end
end
diff --git a/railties/test/application/test_runner_test.rb b/railties/test/application/test_runner_test.rb
index e773b52dbb..3705448081 100644
--- a/railties/test/application/test_runner_test.rb
+++ b/railties/test/application/test_runner_test.rb
@@ -576,6 +576,34 @@ module ApplicationTests
capture(:stderr) { run_test_command("test/models/warnings_test.rb -w") })
end
+ def test_reset_sessions_before_rollback_on_system_tests
+ app_file "test/system/reset_session_before_rollback_test.rb", <<-RUBY
+ require "application_system_test_case"
+
+ class ResetSessionBeforeRollbackTest < ApplicationSystemTestCase
+ def teardown_fixtures
+ puts "rollback"
+ super
+ end
+
+ Capybara.singleton_class.prepend(Module.new do
+ def reset_sessions!
+ puts "reset sessions"
+ super
+ end
+ end)
+
+ test "dummy" do
+ end
+ end
+ RUBY
+
+ run_test_command("test/system/reset_session_before_rollback_test.rb").tap do |output|
+ assert_match "reset sessions\nrollback", output
+ assert_match "1 runs, 0 assertions, 0 failures, 0 errors, 0 skips", output
+ end
+ end
+
private
def run_test_command(arguments = "test/unit/test_test.rb")
Dir.chdir(app_path) { `bin/rails t #{arguments}` }