X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/b1d1c5acf6f237d5e2a02414dd59e92cdb862237..14a6eb786a0d01e86ccae7645e880661caf6f0cb:/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..7b510f2be9 100644 --- a/apps/workbench/test/integration/jobs_test.rb +++ b/apps/workbench/test/integration/jobs_test.rb @@ -1,84 +1,86 @@ +# Copyright (C) The Arvados Authors. All rights reserved. +# +# SPDX-License-Identifier: AGPL-3.0 + require 'fileutils' 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 - - # edit job description - within('.arv-description-as-subtitle') do - find('.fa-pencil').click - 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' - end + [ + ['active', true], + ['job_reader2', false], + ].each do |user, readable| + test "view job with components as #{user} user" do + Rails.configuration.Users.AnonymousUserToken = "" + job = api_fixture('jobs')['running_job_with_components'] + component1 = api_fixture('jobs')['completed_job_in_publicly_accessible_project'] + component2 = api_fixture('pipeline_instances')['running_pipeline_with_complete_job'] + component2_child1 = api_fixture('jobs')['previous_job_run'] + component2_child2 = api_fixture('jobs')['running'] - test "view job log" do - Capybara.current_driver = Capybara.javascript_driver - job = api_fixture('jobs')['job_with_real_log'] + visit page_with_token(user, "/jobs/#{job['uuid']}") + assert page.has_text? job['script_version'] + assert page.has_no_text? 'script_parameters' - visit page_with_token("active", "/jobs/#{job['uuid']}") - assert page.has_text? job['script_version'] + # The job_reader2 is allowed to read job, component2, and component2_child1, + # and component2_child2 only as a component of the pipeline component2 + if readable + assert page.has_link? 'component1' + assert page.has_link? 'component2' + else + assert page.has_no_link? 'component1' + assert page.has_link? 'component2' + end - 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' - end + if readable + click_link('component1') + within('.panel-collapse') do + assert(has_text? component1['uuid']) + assert(has_text? component1['script_version']) + assert(has_text? 'script_parameters') + end + click_link('component1') + end - test 'view partial job log' do - Capybara.current_driver = Capybara.javascript_driver - Rails.configuration.log_viewer_max_bytes = 100 - job = api_fixture('jobs')['job_with_real_log'] + click_link('component2') + within('.panel-collapse') do + assert(has_text? component2['uuid']) + assert(has_text? component2['script_version']) + assert(has_no_text? 'script_parameters') + assert(has_link? 'previous') + assert(has_link? 'running') - visit page_with_token("active", "/jobs/#{job['uuid']}") - assert page.has_text? job['script_version'] + click_link('previous') + within('.panel-collapse') do + assert(has_text? component2_child1['uuid']) + assert(has_text? component2_child1['script_version']) + end + click_link('previous') - click_link 'Log' - wait_for_ajax - assert page.has_text? 'Showing only 100 bytes of this log' + click_link('running') + within('.panel-collapse') do + assert(has_text? component2_child2['uuid']) + if readable + assert(has_text? component2_child2['script_version']) + else + assert(has_no_text? component2_child2['script_version']) + end + end + end + end end end