X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/53ce9b61336c5385eb2250267efa69613b5eaec7..e4e38ac6a304e7f81c27975a8b26acf774bceace:/apps/workbench/test/test_helper.rb diff --git a/apps/workbench/test/test_helper.rb b/apps/workbench/test/test_helper.rb index 60dadec61d..a71d0b4614 100644 --- a/apps/workbench/test/test_helper.rb +++ b/apps/workbench/test/test_helper.rb @@ -26,7 +26,7 @@ end require File.expand_path('../../config/environment', __FILE__) require 'rails/test_help' -require 'mocha/mini_test' +require 'mocha/minitest' class ActiveSupport::TestCase # Setup all fixtures in test/fixtures/*.(yml|csv) for all tests in @@ -39,7 +39,7 @@ class ActiveSupport::TestCase 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'] + Thread.current[:arvados_api_token] = "v2/#{auth['uuid']}/#{auth['api_token']}" if block_given? begin yield @@ -92,10 +92,16 @@ module ApiFixtureLoader keys.inject(@@api_fixtures[name]) { |hash, key| hash[key] }.deep_dup end end + def api_fixture(name, *keys) self.class.api_fixture(name, *keys) end + def api_token(name) + auth = api_fixture('api_client_authorizations')[name] + "v2/#{auth['uuid']}/#{auth['api_token']}" + end + def find_fixture(object_class, name) object_class.find(api_fixture(object_class.to_s.pluralize.underscore, name, "uuid")) @@ -146,8 +152,9 @@ end class ActiveSupport::TestCase include ApiFixtureLoader def session_for api_client_auth_name + auth = api_fixture('api_client_authorizations')[api_client_auth_name.to_s] { - arvados_api_token: api_fixture('api_client_authorizations')[api_client_auth_name.to_s]['api_token'] + arvados_api_token: "v2/#{auth['uuid']}/#{auth['api_token']}" } end def json_response @@ -177,38 +184,14 @@ class ApiServerForTests end def run_test_server - env_script = nil Dir.chdir PYTHON_TESTS_DIR do - # These are no-ops if we're running within run-tests.sh (except - # that we do get a useful env_script back from "start", even - # 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| - line = line.chomp - if 0 == line.index('export ') - toks = line.sub('export ', '').split '=', 2 - $stderr.puts "run_test_server.py: #{toks[0]}=#{toks[1]}" - test_env[toks[0]] = toks[1] - end - end - test_env end 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 end @@ -223,9 +206,9 @@ class ApiServerForTests stop_test_server end - test_env = run_test_server - $application_config['arvados_login_base'] = "https://#{test_env['ARVADOS_API_HOST']}/login" - $application_config['arvados_v1_base'] = "https://#{test_env['ARVADOS_API_HOST']}/arvados/v1" + run_test_server + $application_config['arvados_login_base'] = "https://#{ENV['ARVADOS_API_HOST']}/login" + $application_config['arvados_v1_base'] = "https://#{ENV['ARVADOS_API_HOST']}/arvados/v1" $application_config['arvados_insecure_host'] = true ActiveSupport::TestCase.reset_application_config @@ -309,7 +292,7 @@ class ActiveSupport::TestCase def after_teardown if self.class.want_reset_api_fixtures[:after_each_test] and - @want_reset_api_fixtures != false + (!defined?(@want_reset_api_fixtures) or @want_reset_api_fixtures != false) self.class.reset_api_fixtures_now end super @@ -326,7 +309,7 @@ class ActiveSupport::TestCase return unless Rails.env == 'test' auth = api_fixture('api_client_authorizations')['admin_trustedclient'] - Thread.current[:arvados_api_token] = auth['api_token'] + Thread.current[:arvados_api_token] = "v2/#{auth['uuid']}/#{auth['api_token']}" ArvadosApiClient.new.api(nil, '../../database/reset', {}) Thread.current[:arvados_api_token] = nil end