2761: file path needs lookup in prevew panel
authorradhika <radhika@curoverse.com>
Thu, 11 Sep 2014 02:26:28 +0000 (22:26 -0400)
committerradhika <radhika@curoverse.com>
Thu, 11 Sep 2014 02:26:28 +0000 (22:26 -0400)
apps/workbench/config/application.default.yml
apps/workbench/test/diagnostics/pipeline_test.rb

index 6199aea8763b45e93d5ffc753e7ea67bfdc01706..b2963af9c9ccacb1745c1e1b4758fcedf8a5c8ff 100644 (file)
@@ -161,13 +161,13 @@ common:
   #diagnostics_testing_user_tokens:
   #  active: eu33jurqntstmwo05h1jr3eblmi961e802703y6657s8zb14r
   #diagnostics_testing_pipeline_fields:
-  #  pipeline with one input:
+  #  pipeline with collection input:
   #    template_uuid: 4xphq-p5p6p-gsw68qb7owx1q2h
   #    input_paths: [qr1hi-4zz18-n1o4i1j5fvz6npu]
   #    max_wait_seconds: 100
-  #  pipeline with two inputs:
+  #  pipeline with file as input:
   #    template_uuid: 4xphq-p5p6p-gsw68qb7owx1q2h
-  #    input_paths: [2051b5d448fbd489ab00bbdedbee1ffa+91, e5e440c9c486df057e1bf6a7feac25be+77/alignment_summary_metrics.txt]
+  #    input_paths: [440e201c0141cb8a551b61fd7d07d2a1+83/qr1hi-8i9sb-j2tp8q1m2uf6a1o.log.txt]
   #    max_wait_seconds: 200
   #  pipeline with no inputs:
   #    template_uuid: 4xphq-p5p6p-gsw68qb7owx1q2h
index 6101791c19763ebecf428a607cb33c674a853e38..d6dc6075e50bb14f1614294975ec93fbf9fbca19 100644 (file)
@@ -44,10 +44,28 @@ class PipelineTest < DiagnosticsTest
 
           inputs_needed[0].click
           within('.modal-dialog') do
+            look_for_uuid = nil
+            look_for_file = nil
             look_for = pipeline_config['input_paths'][index]
-            fill_in('Search', with: look_for, exact: true)
+            if look_for.index('/').andand.>0
+              partitions = look_for.partition('/')
+              look_for_uuid = partitions[0]
+              look_for_file = partitions[2]
+            else
+              look_for_uuid = look_for
+              look_for_file = nil
+            end
+
+            fill_in('Search', with: look_for_uuid, exact: true)
             wait_for_ajax
-            find('.selectable').click
+              selectables = page.all('.selectable')
+              selectables[0].click
+            if look_for_file
+              wait_for_ajax
+              within('.collection_files_name', text: look_for_file) do
+                find('.fa-file').click
+              end
+            end
             find('button', text: 'OK').click
             wait_for_ajax
             index += 1