11167: Re-added jobs integration test, adjusted to work with keep-web.
authorLucas Di Pentima <lucas@curoverse.com>
Wed, 26 Jul 2017 20:34:58 +0000 (17:34 -0300)
committerLucas Di Pentima <lucas@curoverse.com>
Wed, 26 Jul 2017 20:34:58 +0000 (17:34 -0300)
Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima <lucas@curoverse.com>

apps/workbench/test/integration/jobs_test.rb

index f427537abb8df48426351ab450b0bd09cc04a2ef..8e49aaf273d6c2e997d76aa39e322b3781221a05 100644 (file)
@@ -39,6 +39,30 @@ class JobsTest < ActionDispatch::IntegrationTest
     assert_selector 'a[href="/"]', text: 'Go to dashboard'
   end
 
+  test 'view partial job log' do
+    use_keep_web_config
+
+    # This config will be restored during teardown by ../test_helper.rb:
+    Rails.configuration.log_viewer_max_bytes = 100
+
+    token = api_fixture('api_client_authorizations')['active']['api_token']
+    logdata = fakepipe_with_log_data.read
+    logblock = `echo -n #{logdata.shellescape} | ARVADOS_API_TOKEN=#{token.shellescape} arv-put --no-progress --raw -`.strip
+    assert $?.success?, $?
+
+    job = nil
+    use_token 'active' do
+      job = Job.find api_fixture('jobs')['running']['uuid']
+      mtxt = ". #{logblock} 0:#{logdata.length}:#{job.uuid}.log.txt\n"
+      logcollection = Collection.create(manifest_text: mtxt)
+      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_text 'Showing only 100 bytes of this log'
+  end
+
   test 'view log via keep-web redirect' do
     use_keep_web_config