blob: 7a01dc3c230aba9a6c09b58c08d93f990cc819a5 (
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
#!/usr/bin/env bash
# Copyright (c) 2019 Egor Tensin <Egor.Tensin@gmail.com>
# This file is part of the "VK scripts" project.
# For details, see https://github.com/egor-tensin/vk-scripts.
# Distributed under the MIT License.
set -o errexit -o nounset -o pipefail
script_dir="$( dirname -- "${BASH_SOURCE[0]}" )"
script_dir="$( cd -- "$script_dir" && pwd )"
readonly script_dir
script_name="$( basename -- "${BASH_SOURCE[0]}" )"
readonly script_name
readonly db_path="$script_dir/../share/test_db.csv"
dump() {
local msg
for msg; do
echo "$script_name: $msg"
done
}
test_output() {
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
"$script_dir/../lib/test.sh" vk.tracking.sessions "$@" "$db_path" "$output_path"
if file --brief --dereference --mime -- "$output_path" | grep --quiet -- 'charset=binary$'; then
dump 'Output is a binary file, not going to show that'
return 0
fi
cat "$output_path"
}
group_by() {
test_output --output-format csv --group-by "$@"
test_output --output-format json --group-by "$@"
test_output --output-format plot --group-by "$@"
}
online_sessions() {
group_by user
group_by hour
group_by date
group_by weekday
}
fix_matplotlib() {
# Get rid of:
# tkinter.TclError: no display name and no $DISPLAY environment variable
mkdir -p -- ~/.config/matplotlib
echo 'backend: Agg' > ~/.config/matplotlib/matplotlibrc
}
main() {
fix_matplotlib
online_sessions
}
main
|