aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.travis/online_sessions.sh
blob: 112b46ef460802b48a3628b58b5cdf9936b89d84 (plain) (blame)
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
#!/usr/bin/env bash

set -o errexit -o nounset -o pipefail

readonly db_path='.travis/test_db.csv'

_online_sessions() {
    local output_path
    output_path="$( mktemp --dry-run )"

    local rm_aux_files
    rm_aux_files="$( printf -- 'rm -f -- %q' "$output_path" )"

    trap "$rm_aux_files" RETURN

    echo "Running online_sessions.py..."
    python3 -m bin.online_sessions "$@" "$db_path" "$output_path"

    if file --brief --dereference --mime -- "$output_path" | grep --quiet -- 'charset=binary$'; then
        echo 'Output is a binary file, not going to show that'
        return 0
    fi

    echo "Output:"
    cat "$output_path"
}

online_sessions() {
    # Get rid of:
    # tkinter.TclError: no display name and no $DISPLAY environment variable
    mkdir -p -- ~/.config/matplotlib
    echo 'backend: Agg' > ~/.config/matplotlib/matplotlibrc

    _online_sessions --group-by user --output-format csv
    _online_sessions --group-by user --output-format json

    _online_sessions --group-by user --output-format plot
    _online_sessions --group-by hour --output-format plot
    _online_sessions --group-by date --output-format plot
    _online_sessions --group-by weekday --output-format plot
}

main() {
    online_sessions
}

main "$@"