X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/694e7cdb8bce9e18ca63fab78c3201232b8aab77..402461a12dbff7d0ec00c8446b925b021aabc2ed:/apps/workbench/test/integration_helper.rb diff --git a/apps/workbench/test/integration_helper.rb b/apps/workbench/test/integration_helper.rb index cd9fa5106a..86162834c7 100644 --- a/apps/workbench/test/integration_helper.rb +++ b/apps/workbench/test/integration_helper.rb @@ -5,6 +5,7 @@ require 'uri' require 'yaml' $ARV_API_SERVER_DIR = File.expand_path('../../../../services/api', __FILE__) +SERVER_PID_PATH = 'tmp/pids/server.pid' class ActionDispatch::IntegrationTest # Make the Capybara DSL available in all integration tests @@ -32,9 +33,10 @@ class ActionDispatch::IntegrationTest end class IntegrationTestRunner < MiniTest::Unit - # Don't try to re-use the current Bundle environment when we launch the - # API server. - @@APIENV = ENV.map { |item| (item[0] =~ /^BUNDLE_/) ? [item[0], nil] : nil }. + # Make a hash that unsets Bundle's environment variables. + # We'll use this environment when we launch Bundle commands in the API + # server. Otherwise, those commands will try to use Workbench's gems, etc. + @@APIENV = ENV.map { |(key, val)| (key =~ /^BUNDLE_/) ? [key, nil] : nil }. compact.to_h def _system(*cmd) @@ -49,12 +51,20 @@ class IntegrationTestRunner < MiniTest::Unit _system('bundle', 'exec', 'rake', 'db:test:load') _system('bundle', 'exec', 'rake', 'db:fixtures:load') _system('bundle', 'exec', 'rails', 'server', '-d') - pid_path = 'tmp/pids/server.pid' - timeout = Time.now.tv_sec + 5 - while (not File.exists? pid_path) and (Time.now.tv_sec < timeout) + timeout = Time.now.tv_sec + 10 + begin sleep 0.2 + begin + server_pid = IO.read(SERVER_PID_PATH).to_i + good_pid = (server_pid > 0) and (Process.kill(0, pid) rescue false) + rescue Errno::ENOENT + good_pid = false + end + end while (not good_pid) and (Time.now.tv_sec < timeout) + if not good_pid + raise RuntimeError, "could not find API server Rails pid" end - IO.read(pid_path).to_i + server_pid end begin super(args)