main_marking2/danube_test.sh
changeset 463 0315d9983cd0
parent 462 34feeb53c0ba
child 464 73ced118f73d
equal deleted inserted replaced
462:34feeb53c0ba 463:0315d9983cd0
     1 #!/bin/zsh
       
     2 
       
     3 # to make the script fail safely
       
     4 set -euo pipefail
       
     5 
       
     6 
       
     7 out=${1:-output}
       
     8 
       
     9 echo "" > $out
       
    10 
       
    11 echo -e `date` >> $out
       
    12 echo -e  "" >> $out
       
    13 echo -e  "Below is the feedback and provisional marks for your submission" >> $out
       
    14 echo -e  "of the Main Part 2 (Scala).  Please note all marks are provisional until" >> $out
       
    15 echo -e  "ratified by the assessment board -- this is not an official" >> $out
       
    16 echo -e  "results transcript." >> $out
       
    17 echo -e  "" >> $out
       
    18 
       
    19 # marks for core CW7
       
    20 marks=$(( 0.0 ))
       
    21 
       
    22 
       
    23 # compilation tests
       
    24 
       
    25 function scala_compile {
       
    26   (ulimit -t 30; JAVA_OPTS="-Xmx1g" scala -Xprint:parser "$1" 2> c$out 1> c$out)
       
    27 }
       
    28 
       
    29 # functional tests
       
    30 
       
    31 function scala_assert {
       
    32   (ulimit -t 30; JAVA_OPTS="-Xmx1g" scala -i "$1" -- "$2" -e "" 2> /dev/null 1> /dev/null)
       
    33 }
       
    34 
       
    35 function scala_assert_thirty {
       
    36   (ulimit -t 40; JAVA_OPTS="-Xmx1g" scala -i "$1" -- "$2" -e "" 2> /dev/null 1> /dev/null)  
       
    37 }
       
    38 
       
    39 # purity test
       
    40 function scala_vars {
       
    41    (sed 's/immutable/ok/g' c$out > cb$out;
       
    42     egrep '\bvar\b|\breturn\b|\.par\.|\.par |ListBuffer|AtomicInteger|mutable|util.control|new Array' cb$out 2> /dev/null 1> /dev/null)
       
    43 }
       
    44 
       
    45 
       
    46 echo -e "" >> $out
       
    47 echo -e  "Below is the feedback for your submission danube.scala" >> $out
       
    48 echo -e  "" >> $out
       
    49 
       
    50 
       
    51 
       
    52 
       
    53 ### compilation test
       
    54 
       
    55 echo -e  "danube.scala runs?" | tee -a $out
       
    56 
       
    57 if (scala_compile danube.scala)
       
    58 then
       
    59     echo -e  "  --> success" | tee -a $out
       
    60     tsts=$(( 0 ))
       
    61 else
       
    62     echo -e  "  --> SCALA DID NOT RUN danube.scala" | tee -a $out
       
    63     tsts=$(( 1 )) 
       
    64 fi
       
    65 
       
    66 
       
    67 # var, .par return, ListBuffer test
       
    68 #
       
    69 
       
    70 if [ $tsts -eq 0 ]
       
    71 then 
       
    72       echo -e  "danube.scala does not contain VARS, RETURNS etc?" | tee -a $out
       
    73 
       
    74       if (scala_vars danube.scala)
       
    75       then
       
    76 	  echo -e  "  --> TEST FAILED\n" | tee -a $out
       
    77 	  tsts=$(( 1 ))  
       
    78       else
       
    79 	  echo -e  "  --> success" | tee -a $out
       
    80 	  tsts=$(( 0 )) 
       
    81       fi
       
    82 else
       
    83     tsts=$(( 1 ))  
       
    84 fi
       
    85 
       
    86 
       
    87 
       
    88 ### danube get_cvs_url tests
       
    89 
       
    90 if [ $tsts -eq 0 ]
       
    91 then
       
    92   echo -e  "danube.scala tests:" | tee -a $out
       
    93   echo -e  "  val movies_url = \"\"\"https://nms.kcl.ac.uk/christian.urban/movies.csv\"\"\"" | tee -a $out
       
    94   echo -e  "  get_csv_url(movies_url).length == 9742" | tee -a $out
       
    95 
       
    96   if (scala_assert "danube.scala" "danube_test1.scala")
       
    97   then
       
    98       echo -e  "  --> success" | tee -a $out
       
    99       marks=$(( marks + 1.0 ))
       
   100   else
       
   101       echo -e  "  --> TEST FAILED\n" | tee -a $out
       
   102   fi
       
   103 fi
       
   104 
       
   105 ### danube processing tests
       
   106 
       
   107 if [ $tsts -eq 0 ]
       
   108 then
       
   109   echo -e  "  val good_ratings = process_ratings(ratings)" | tee -a $out
       
   110   echo -e  "  val movie_names = process_movies(movies)" | tee -a $out  
       
   111   echo -e  "  " | tee -a $out
       
   112   echo -e  "  good_ratings.length == 48580 " | tee -a $out
       
   113   echo -e  "  movie_names.length == 9742 " | tee -a $out
       
   114   echo -e  "  "  | tee -a $out
       
   115   echo -e  "  val r_elems = List((\"1\",\"1\"), (\"1\",\"3\"), (\"1\",\"6\"), (\"1\",\"47\")) " | tee -a $out
       
   116   echo -e  "  r_elems.forall(good_ratings.contains(_)) == true" | tee -a $out
       
   117 
       
   118   if (scala_assert "danube.scala" "danube_test2.scala") 
       
   119   then
       
   120       echo -e  "  --> success" | tee -a $out
       
   121       marks=$(( marks + 1.0 ))
       
   122   else
       
   123       echo -e  "  --> ONE OF THE TESTS FAILED\n" | tee -a $out
       
   124   fi
       
   125 fi
       
   126 
       
   127 ### danube groupById test
       
   128 
       
   129 if [ $tsts -eq 0 ]
       
   130 then
       
   131   echo -e  "  val ls1 = List((\"1\", \"a\"), (\"2\", \"a\"), (\"1\", \"c\"), (\"2\", \"a\"), (\"1\", \"c\"))" | tee -a $out
       
   132   echo -e  "  val ls2 = List((\"1\", \"a\"), (\"1\", \"b\"), (\"2\", \"x\"), (\"3\", \"a\"), (\"2\", \"y\"), (\"3\", \"c\"))" | tee -a $out
       
   133   echo -e  "  groupById(ls1, Map()) == Map(1 -> List(c, c, a), 2 -> List(a, a))" | tee -a $out
       
   134   echo -e  "  groupById(ls2, Map()) == Map(1 -> List(b, a), 2 -> List(x, y), 3 -> List(c, a))" | tee -a $out
       
   135   echo -e  "      where the order in the lists is unimportant" | tee -a $out
       
   136   echo -e  "  val ls3 = (11 to 1000 by 5).map(_.toString).toList" | tee -a $out
       
   137   echo -e  "  val ls4 = ls3 zip ls3.tail" | tee -a $out
       
   138   echo -e  "  val ls5 = ls4 ::: ls4.reverse" | tee -a $out
       
   139   echo -e  "  groupById(ls5, Map()) == Map(11 -> List(16,16), 16 -> List(21,21), ....)" | tee -a $out
       
   140 
       
   141   if (scala_assert "danube.scala" "danube_test3.scala")
       
   142   then
       
   143       echo -e  -e "  --> success" | tee -a $out
       
   144       marks=$(( marks + 1.0 ))
       
   145   else
       
   146       echo -e  -e "  --> ONE OF THE TESTS FAILED\n" | tee -a $out
       
   147   fi
       
   148 fi
       
   149 
       
   150 ### danube favourites tests
       
   151 
       
   152 if [ $tsts -eq 0 ]
       
   153 then
       
   154   echo -e  "  val good_ratings = process_ratings(ratings)" | tee -a $out
       
   155   echo -e  "  val ratings_map = groupById(good_ratings, Map())" | tee -a $out
       
   156   echo -e  "  favourites(ratings_map, \"912\").length  == 80 " | tee -a $out
       
   157   echo -e  "  favourites(ratings_map, \"858\").length  == 158 " | tee -a $out
       
   158   echo -e  "  favourites(ratings_map, \"260\").length  == 201 " | tee -a $out  
       
   159 
       
   160   if (scala_assert "danube.scala" "danube_test4.scala") 
       
   161   then
       
   162     echo -e  "  --> success" | tee -a $out
       
   163     marks=$(( marks + 1.0 ))
       
   164   else
       
   165     echo -e  "  --> ONE OF THE TESTS FAILED\n" | tee -a $out
       
   166   fi
       
   167 fi
       
   168 
       
   169 ### danube suggestions tests
       
   170 
       
   171 if [ $tsts -eq 0 ]
       
   172 then
       
   173   echo -e  "  val good_ratings = process_ratings(ratings)" | tee -a $out
       
   174   echo -e  "  val ratings_map = groupById(good_ratings, Map())" | tee -a $out
       
   175   echo -e  "  suggestions(ratings_map, \"912\").length  == 4110 " | tee -a $out
       
   176   echo -e  "  suggestions(ratings_map, \"858\").length  == 4883 " | tee -a $out
       
   177   echo -e  "  suggestions(ratings_map, \"260\").length  == 4970 " | tee -a $out  
       
   178 
       
   179   if (scala_assert "danube.scala" "danube_test5.scala") 
       
   180   then
       
   181     echo -e  "  --> success" | tee -a $out
       
   182     marks=$(( marks + 1.0 ))
       
   183   else
       
   184     echo -e  "  --> ONE OF THE TESTS FAILED\n" | tee -a $out
       
   185   fi
       
   186 fi
       
   187 
       
   188 ### danube recommendation tests
       
   189 
       
   190 if [ $tsts -eq 0 ]
       
   191 then
       
   192   echo -e  "  recommendations(ratings_map, movies_map, \"1\").length  == 2 " | tee -a $out
       
   193   echo -e  "  recommendations(ratings_map, movies_map, \"2\").length  == 2 " | tee -a $out
       
   194   echo -e  "  recommendations(ratings_map, movies_map, \"3\").length  == 2 " | tee -a $out
       
   195   echo -e  "  recommendations(ratings_map, movies_map, \"4\").length  == 0 " | tee -a $out
       
   196   echo -e  "  recommendations(ratings_map, movies_map, \"5\").length  == 2 " | tee -a $out
       
   197 
       
   198   if (scala_assert "danube.scala" "danube_test6.scala") 
       
   199   then
       
   200     echo -e  "  --> success" | tee -a $out
       
   201     marks=$(( marks + 1.0 ))
       
   202   else
       
   203     echo -e  "  --> ONE OF THE TESTS FAILED\n" | tee -a $out
       
   204   fi
       
   205 fi
       
   206 
       
   207 
       
   208 
       
   209 ## final marks
       
   210 echo -e "Overall mark for Main Part 2 (Scala)" | tee -a $out
       
   211 printf " %0.1f\n" $marks | tee -a $out
       
   212 
       
   213