X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/55f5486de7676b8906066b290ed0420b19f90eda..0e5198142fdba0ce2af6eb2852d45dff46ffb2e2:/apps/workbench/test/test_helper.rb diff --git a/apps/workbench/test/test_helper.rb b/apps/workbench/test/test_helper.rb index 89d15c67d8..72b5a89e58 100644 --- a/apps/workbench/test/test_helper.rb +++ b/apps/workbench/test/test_helper.rb @@ -31,15 +31,17 @@ class ActiveSupport::TestCase # Note: You'll currently still have to declare fixtures explicitly # in integration tests -- they do not yet inherit this setting fixtures :all - def use_token token_name - was = Thread.current[:arvados_api_token] + def use_token(token_name) + user_was = Thread.current[:user] + token_was = Thread.current[:arvados_api_token] auth = api_fixture('api_client_authorizations')[token_name.to_s] Thread.current[:arvados_api_token] = auth['api_token'] if block_given? begin yield ensure - Thread.current[:arvados_api_token] = was + Thread.current[:user] = user_was + Thread.current[:arvados_api_token] = token_was end end end @@ -81,7 +83,7 @@ module ApiFixtureLoader file = file[0, trim_index] if trim_index YAML.load(file) end - keys.inject(@@api_fixtures[name]) { |hash, key| hash[key] } + keys.inject(@@api_fixtures[name]) { |hash, key| hash[key].deep_dup } end end def api_fixture(name, *keys) @@ -176,7 +178,10 @@ class ApiServerForTests # though it doesn't need to start up a new server). env_script = check_output %w(python ./run_test_server.py start --auth admin) check_output %w(python ./run_test_server.py start_arv-git-httpd) + check_output %w(python ./run_test_server.py start_keep-web) check_output %w(python ./run_test_server.py start_nginx) + # This one isn't a no-op, even under run-tests.sh. + check_output %w(python ./run_test_server.py start_keep) end test_env = {} env_script.each_line do |line| @@ -192,9 +197,11 @@ class ApiServerForTests def stop_test_server Dir.chdir PYTHON_TESTS_DIR do + check_output %w(python ./run_test_server.py stop_keep) # These are no-ops if we're running within run-tests.sh check_output %w(python ./run_test_server.py stop_nginx) check_output %w(python ./run_test_server.py stop_arv-git-httpd) + check_output %w(python ./run_test_server.py stop_keep-web) check_output %w(python ./run_test_server.py stop) end @@server_is_running = false @@ -228,12 +235,12 @@ end class ActionController::TestCase setup do - @counter = 0 + @test_counter = 0 end def check_counter action - @counter += 1 - if @counter == 2 + @test_counter += 1 + if @test_counter == 2 assert_equal 1, 2, "Multiple actions in controller test" end end