| 125 |      1 | #!/bin/bash
 | 
|  |      2 | 
 | 
|  |      3 | # to make the script fail safely
 | 
|  |      4 | set -euo pipefail
 | 
|  |      5 | 
 | 
|  |      6 | 
 | 
|  |      7 | out=${1:-output}
 | 
|  |      8 | 
 | 
|  |      9 | echo "" > $out
 | 
|  |     10 | 
 | 
| 128 |     11 | echo "Below is the feedback for your submission for alcohol.scala" >> $out
 | 
| 125 |     12 | echo "" >> $out
 | 
|  |     13 | 
 | 
|  |     14 | 
 | 
|  |     15 | # compilation tests
 | 
|  |     16 | 
 | 
|  |     17 | function scala_compile {
 | 
| 127 |     18 |   (ulimit -t 30 -m 1024000 ; scala "$1" 2>> $out 1>> $out) 
 | 
| 125 |     19 | }
 | 
|  |     20 | 
 | 
|  |     21 | # functional tests
 | 
|  |     22 | 
 | 
|  |     23 | function scala_assert {
 | 
| 147 |     24 |   (ulimit -t 30 -m 1024000 ; scala -i "$1" "$2" -e "") #2> /dev/null 1> /dev/null)
 | 
| 125 |     25 | }
 | 
|  |     26 | 
 | 
|  |     27 | # purity test
 | 
|  |     28 | 
 | 
|  |     29 | function scala_vars {
 | 
|  |     30 |    (egrep '\bvar\b|\breturn\b|\.par|ListBuffer|mutable' "$1" 2> /dev/null 1> /dev/null)
 | 
|  |     31 | }
 | 
|  |     32 | 
 | 
|  |     33 | 
 | 
|  |     34 | # var, .par return, ListBuffer test
 | 
|  |     35 | #
 | 
| 128 |     36 | echo "alcohol.scala does not contain vars, returns etc?" >> $out
 | 
| 125 |     37 | 
 | 
| 128 |     38 | if (scala_vars alcohol.scala)
 | 
| 125 |     39 | then
 | 
|  |     40 |   echo "  --> fail" >> $out
 | 
|  |     41 |   tsts0=$(( 1 ))
 | 
|  |     42 | else
 | 
| 127 |     43 |   echo "  --> success" >> $out
 | 
| 125 |     44 |   tsts0=$(( 0 )) 
 | 
|  |     45 | fi
 | 
|  |     46 | 
 | 
|  |     47 | ### compilation test
 | 
|  |     48 | 
 | 
|  |     49 | 
 | 
|  |     50 | if  [ $tsts0 -eq 0 ]
 | 
|  |     51 | then 
 | 
| 128 |     52 |   echo "alcohol.scala runs?" >> $out
 | 
| 125 |     53 | 
 | 
| 128 |     54 |   if (scala_compile alcohol.scala)
 | 
| 125 |     55 |   then
 | 
|  |     56 |     echo "  --> success" >> $out
 | 
|  |     57 |     tsts=$(( 0 ))
 | 
|  |     58 |   else
 | 
| 128 |     59 |     echo "  --> scala did not run alcohol.scala" >> $out
 | 
| 125 |     60 |     tsts=$(( 1 )) 
 | 
|  |     61 |   fi
 | 
|  |     62 | else
 | 
|  |     63 |   tsts=$(( 1 ))     
 | 
|  |     64 | fi
 | 
|  |     65 | 
 | 
| 128 |     66 | ### alcohol tests
 | 
| 125 |     67 | 
 | 
|  |     68 | if [ $tsts -eq 0 ]
 | 
|  |     69 | then
 | 
| 128 |     70 |   echo "get_csv tests:" >> $out
 | 
|  |     71 |   echo "  get_csv_page(url_alcohol).size == 194" >> $out
 | 
|  |     72 |   echo "  get_csv_file(file_population).size == 216" >> $out
 | 
| 125 |     73 | 
 | 
| 128 |     74 |   if (scala_assert "alcohol.scala" "alcohol_test1.scala")
 | 
| 125 |     75 |   then
 | 
|  |     76 |     echo "  --> success" >> $out
 | 
|  |     77 |   else
 | 
|  |     78 |     echo "  --> one of the tests failed" >> $out
 | 
|  |     79 |   fi
 | 
|  |     80 | fi
 | 
|  |     81 | 
 | 
| 128 |     82 | ### alcohol processing tests
 | 
| 125 |     83 | 
 | 
|  |     84 | if [ $tsts -eq 0 ]
 | 
|  |     85 | then
 | 
| 128 |     86 |   echo "processing tests:" >> $out  
 | 
|  |     87 |   echo "  process_alcs(alcs_list.drop(1))(0) == (\"Afghanistan\", 0.0)" >> $out
 | 
|  |     88 |   echo "  process_pops(pops_list.drop(1))(\"Micronesia\") == 104015" >> $out
 | 
| 125 |     89 | 
 | 
| 128 |     90 |   if (scala_assert "alcohol.scala" "alcohol_test2.scala") 
 | 
| 125 |     91 |   then
 | 
|  |     92 |     echo "  --> success" >> $out
 | 
|  |     93 |   else
 | 
|  |     94 |     echo "  --> one of the tests failed" >> $out
 | 
|  |     95 |   fi
 | 
|  |     96 | fi
 | 
|  |     97 | 
 | 
| 128 |     98 | ### alcohol percentage tests
 | 
| 125 |     99 | 
 | 
| 128 |    100 | if [ $tsts -eq 0 ]
 | 
|  |    101 | then
 | 
|  |    102 |   echo "calculation tests:" >> $out  
 | 
|  |    103 |   echo "  sorted_country_consumption().size == 177" >> $out
 | 
|  |    104 |   echo "  sorted_country_consumption()(9) == (\"United Kingdom\", 671976864)" >> $out
 | 
|  |    105 |   echo "  percentage(164) == (28771558364L, 28771558364L, 100.0)" >> $out
 | 
|  |    106 |   
 | 
|  |    107 |   if (scala_assert "alcohol.scala" "alcohol_test3.scala") 
 | 
|  |    108 |   then
 | 
|  |    109 |     echo "  --> success" >> $out
 | 
|  |    110 |   else
 | 
|  |    111 |     echo "  --> one of the tests failed" >> $out
 | 
|  |    112 |   fi
 | 
|  |    113 | fi
 | 
|  |    114 | 
 |