X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/aee63d7cbb2f8e39b417baebc145889d6290315e..b0001b6d784024885d8b90277e4a9b5a2955a9b4:/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 b5fc56a4f3..d1f5e78093 100644 --- a/apps/workbench/test/integration/jobs_test.rb +++ b/apps/workbench/test/integration/jobs_test.rb @@ -1,6 +1,18 @@ +require 'fileutils' +require 'tmpdir' + require 'integration_helper' class JobsTest < ActionDispatch::IntegrationTest + + def fakepipe_with_log_data + content = + "2014-01-01_12:00:01 zzzzz-8i9sb-0vsrcqi7whchuil 0 log message 1\n" + + "2014-01-01_12:00:02 zzzzz-8i9sb-0vsrcqi7whchuil 0 log message 2\n" + + "2014-01-01_12:00:03 zzzzz-8i9sb-0vsrcqi7whchuil 0 log message 3\n" + StringIO.new content, 'r' + end + test "add job description" do Capybara.current_driver = Capybara.javascript_driver visit page_with_token("active", "/jobs") @@ -23,7 +35,41 @@ class JobsTest < ActionDispatch::IntegrationTest assert page.has_text? 'Textile description for job' assert page.has_link? 'Go to dashboard' click_link 'Go to dashboard' - assert page.has_text? 'My projects' - assert page.has_text? 'Projects shared with me' + assert page.has_text? 'Active pipelines' + end + + test "view job log" do + Capybara.current_driver = Capybara.javascript_driver + 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'] + + click_link 'Log' + 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 + Capybara.current_driver = Capybara.javascript_driver + # 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'] + + visit page_with_token("active", "/jobs/#{job['uuid']}") + assert page.has_text? job['script_version'] + + click_link 'Log' + wait_for_ajax + assert page.has_text? 'Showing only 100 bytes of this log' end end