8 echo "./$0 build_number file_to_parse output_dir"
9 echo "this script will use the build output to generate *csv and *txt"
10 echo "for jenkins plugin plot https://github.com/jenkinsci/plot-plugin/"
22 echo "$file doesn't exist! exiting"
25 if [ ! -w $outputdir ]
28 echo "$outputdir isn't writeable! exiting"
32 #------------------------------
33 ## MAXLINE is the amount of lines that will read after the pattern
34 ## is match (the logfile could be hundred thousands lines long).
35 ## 1000 should be safe enough to capture all the output of the individual test
38 ## TODO: check $build and $file make sense
41 test_Create_and_show_large_collection_with_manifest_text_of_20000000 \
42 test_Create,_show,_and_update_description_for_large_collection_with_manifest_text_of_100000 \
43 test_Create_one_large_collection_of_20000000_and_one_small_collection_of_10000_and_combine_them
45 cleaned_test=$(echo $test | tr -d ",.:;/")
46 (zgrep -i -E -A$MAXLINES "^[A-Za-z0-9]+Test: $test" $file && echo "----") | tail -n +1 | tail --lines=+3|grep -B$MAXLINES -E "^-*$" -m1 > $outputdir/$cleaned_test-$build.txt
50 echo processing $outputdir/$cleaned_test-$build.txt creating $outputdir/$cleaned_test.csv
51 echo $(grep ^Completed $outputdir/$cleaned_test-$build.txt | perl -n -e '/^Completed (.*) in [0-9]+ms.*$/;print "".++$line."-$1,";' | perl -p -e 's/,$//g'|tr " " "_" ) > $outputdir/$cleaned_test.csv
52 echo $(grep ^Completed $outputdir/$cleaned_test-$build.txt | perl -n -e '/^Completed.*in ([0-9]+)ms.*$/;print "$1,";' | perl -p -e 's/,$//g' ) >> $outputdir/$cleaned_test.csv
53 #echo URL=https://ci.curoverse.com/view/job/arvados-api-server/ws/apps/workbench/log/$cleaned_test-$build.txt/*view*/ >> $outputdir/$test.properties
55 echo "$test was't found on $file"
56 cleaned_test=$(echo $test | tr -d ",.:;/")
57 > $outputdir/$cleaned_test.csv