X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/2fcc6fabb45befcc2ee4fe237744d6e3df5c4e39..cd1f6c0fd2f9a91b88659b90a6fd9faee576a557:/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 f84ab77ce1..29bccd9d76 100644 --- a/apps/workbench/test/integration/jobs_test.rb +++ b/apps/workbench/test/integration/jobs_test.rb @@ -4,38 +4,21 @@ require 'tmpdir' require 'integration_helper' class JobsTest < ActionDispatch::IntegrationTest - - def setup - # Set up KEEP_LOCAL_STORE with a file that satisfies - # the log collection for job 'job_with_real_log' - # TODO: figure out a better way to store this test data - # (e.g. in a dummy test fixture) - # - ENV['KEEP_LOCAL_STORE'] ||= Dir.mktmpdir - keepdir = ENV['KEEP_LOCAL_STORE'] - open(File.join(keepdir, 'cdd549ae79fe6640fa3d5c6261d8303c'), 'w') do |f| - f.write("2014-01-01_12:00:01 zzzzz-8i9sb-0vsrcqi7whchuil 0 log message 1\n") - f.write("2014-01-01_12:00:02 zzzzz-8i9sb-0vsrcqi7whchuil 0 log message 2\n") - f.write("2014-01-01_12:00:03 zzzzz-8i9sb-0vsrcqi7whchuil 0 log message 3\n") - end - - @log_viewer_max_bytes = Rails.configuration.log_viewer_max_bytes + setup do + need_javascript end - def teardown - keepdir = ENV.delete 'KEEP_LOCAL_STORE' - FileUtils.rm_rf(keepdir) if keepdir - Rails.configuration.log_viewer_max_bytes = @log_viewer_max_bytes + 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") - - # go to job running the script "doesnotexist" - within first('tr', text: 'doesnotexist') do - find("a").click - end + job = api_fixture('jobs')['nearly_finished_job'] + visit page_with_token("active", "/jobs/#{job['uuid']}") # edit job description within('.arv-description-as-subtitle') do @@ -43,20 +26,18 @@ class JobsTest < ActionDispatch::IntegrationTest find('.editable-input textarea').set('*Textile description for job* - "Go to dashboard":/') find('.editable-submit').click end - wait_for_ajax # Verify edited description - assert page.has_no_text? '*Textile description for job*' - assert page.has_text? 'Textile description for job' - assert page.has_link? 'Go to dashboard' - click_link 'Go to dashboard' - assert page.has_text? 'Active pipelines' + assert_no_text '*Textile description for job*' + assert_text 'Textile description for job' + assert_selector 'a[href="/"]', text: 'Go to dashboard' 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'] @@ -67,11 +48,14 @@ class JobsTest < ActionDispatch::IntegrationTest 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']}") @@ -81,4 +65,43 @@ class JobsTest < ActionDispatch::IntegrationTest wait_for_ajax assert page.has_text? 'Showing only 100 bytes of this log' end + + [ + ['foobar', false, false], + ['job_with_latest_version', true, false], + ['job_with_latest_version', true, true], + ].each do |job_name, expect_options, use_latest| + test "Rerun #{job_name} job, expect options #{expect_options}, + and use latest version option #{use_latest}" do + job = api_fixture('jobs')[job_name] + visit page_with_token 'active', '/jobs/'+job['uuid'] + + if expect_options + assert_text 'supplied_script_version: master' + else + assert_text 'supplied_script_version: (none)' + end + + assert_triggers_dom_event 'shown.bs.modal' do + find('a,button', text: 'Re-run job...').click + end + within('.modal-dialog') do + assert_selector 'a,button', text: 'Cancel' + if use_latest + page.choose("job_script_version_#{job['supplied_script_version']}") + end + click_on "Run now" + end + + # Re-running jobs doesn't currently work because the test API + # server has no git repository to check against. For now, check + # that the correct script version is mentioned in the + # Fiddlesticks error message. + if expect_options && use_latest + assert_text "Script version #{job['supplied_script_version']} does not resolve to a commit" + else + assert_text "Script version #{job['script_version']} does not resolve to a commit" + end + end + end end