aboutsummaryrefslogtreecommitdiff
path: root/pipeline/csv-to-html-test.sh
blob: 754d083ff3b92cdccb1fe56c4fb2cd401845235f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#!/bin/bash
#
# Test for csv_to_html.py.
#
# Usage:
#   ./csv-to-html-test.sh <function name>

set -o nounset
set -o pipefail
set -o errexit

test-basic() {
  ./csv_to_html.py <<EOF
a_number,b
1,2
3,4
NA,4
EOF
}

test-col-format() {
  ./csv_to_html.py \
    --col-format 'b <a href="../{b}/metric.html">{b}</a>' <<EOF
a,b
1,2015-05-01
3,2015-05-02
EOF
}

test-var-def() {
  ./csv_to_html.py \
    --def 'v VALUE' \
    --col-format 'b <a href="../{b}/metric.html">{v}</a>' <<EOF
a,b
1,2
3,4
EOF
}

test-as-percent() {
  ./csv_to_html.py \
    --as-percent b <<EOF
a,b
A,0.21
B,0.001
C,0.0009
D,0.0001
EOF
}

if test $# -eq 0; then
  test-basic
  echo '--'
  test-col-format
  echo '--'
  test-var-def
  echo '--'
  test-as-percent
  echo '--'
  echo 'OK'
else
  "$@"
fi