X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/55aafbb07904ca24390dd47ea960eae7cb2b909a..35ba053c83b7ad18e1a336d50d3a8d5a53adce9f:/apps/workbench/test/integration/jobs_test.rb diff --git a/apps/workbench/test/integration/jobs_test.rb b/apps/workbench/test/integration/jobs_test.rb index 8a60a84459..5dcdab748f 100644 --- a/apps/workbench/test/integration/jobs_test.rb +++ b/apps/workbench/test/integration/jobs_test.rb @@ -8,8 +8,6 @@ require 'tmpdir' require 'integration_helper' class JobsTest < ActionDispatch::IntegrationTest - include KeepWebConfig - setup do need_javascript end @@ -39,43 +37,31 @@ class JobsTest < ActionDispatch::IntegrationTest assert_selector 'a[href="/"]', text: 'Go to dashboard' end - test "view job log" do - job = api_fixture('jobs')['job_with_real_log'] - - IO.expects(:popen).returns(fakepipe_with_log_data) - - visit page_with_token("active", "/jobs/#{job['uuid']}") - assert page.has_text? job['script_version'] - - find(:xpath, "//a[@href='#Log']").click - wait_for_ajax - assert page.has_text? 'Started at' - assert page.has_text? 'Finished at' - assert page.has_text? 'log message 1' - assert page.has_text? 'log message 2' - assert page.has_text? 'log message 3' - assert page.has_no_text? 'Showing only 100 bytes of this log' - end - test 'view partial job log' do - # This config will be restored during teardown by ../test_helper.rb: - Rails.configuration.log_viewer_max_bytes = 100 - - IO.expects(:popen).returns(fakepipe_with_log_data) - job = api_fixture('jobs')['job_with_real_log'] + need_selenium 'to be able to see the CORS response headers (PhantomJS 1.9.8 does not)' + use_keep_web_config - visit page_with_token("active", "/jobs/#{job['uuid']}") - assert page.has_text? job['script_version'] + # This config will be restored during teardown by ../test_helper.rb: + Rails.configuration.Workbench.LogViewerMaxBytes = 100 - find(:xpath, "//a[@href='#Log']").click + logdata = fakepipe_with_log_data.read + job_uuid = api_fixture('jobs')['running']['uuid'] + logcollection = upload_data_and_get_collection(logdata, 'active', "#{job_uuid}.log.txt") + job = nil + use_token 'active' do + job = Job.find job_uuid + job.update_attributes log: logcollection.portable_data_hash + end + visit page_with_token 'active', '/jobs/'+job.uuid + find('a[href="#Log"]').click wait_for_ajax - assert page.has_text? 'Showing only 100 bytes of this log' + assert_text 'Showing only 100 bytes of this log' end test 'view log via keep-web redirect' do use_keep_web_config - token = api_fixture('api_client_authorizations')['active']['api_token'] + token = api_token('active') logdata = fakepipe_with_log_data.read logblock = `echo -n #{logdata.shellescape} | ARVADOS_API_TOKEN=#{token.shellescape} arv-put --no-progress --raw -`.strip assert $?.success?, $?