aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.travis/bin
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2020-11-29 18:02:57 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2020-11-29 18:20:18 +0300
commit26c76b887098ff039230ab737472c66d25a1cb63 (patch)
tree2a16c535eade0d7b487981d3a09bf92c078b81ef /.travis/bin
parentTravis: even prettier output (diff)
downloadvk-scripts-26c76b887098ff039230ab737472c66d25a1cb63.tar.gz
vk-scripts-26c76b887098ff039230ab737472c66d25a1cb63.zip
bye-bye, Travisno_more_travis
Diffstat (limited to '.travis/bin')
-rwxr-xr-x.travis/bin/main.sh19
-rwxr-xr-x.travis/bin/mutual_friends.sh23
-rwxr-xr-x.travis/bin/online_sessions.sh69
-rwxr-xr-x.travis/bin/show_status.sh22
-rwxr-xr-x.travis/bin/track_status.sh60
5 files changed, 0 insertions, 193 deletions
diff --git a/.travis/bin/main.sh b/.travis/bin/main.sh
deleted file mode 100755
index bfe2052..0000000
--- a/.travis/bin/main.sh
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/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_dir/mutual_friends.sh"
-
-"$script_dir/online_sessions.sh"
-
-"$script_dir/show_status.sh"
-"$script_dir/track_status.sh"
diff --git a/.travis/bin/mutual_friends.sh b/.travis/bin/mutual_friends.sh
deleted file mode 100755
index 4a00fb8..0000000
--- a/.travis/bin/mutual_friends.sh
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/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
-
-test_users() {
- "$script_dir/../lib/test.sh" bin.mutual_friends --format csv "$@"
- "$script_dir/../lib/test.sh" bin.mutual_friends --format json "$@"
-}
-
-main() {
- test_users kreed58 maxkorzh_official
-}
-
-main
diff --git a/.travis/bin/online_sessions.sh b/.travis/bin/online_sessions.sh
deleted file mode 100755
index d64ef2f..0000000
--- a/.travis/bin/online_sessions.sh
+++ /dev/null
@@ -1,69 +0,0 @@
-#!/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" bin.online_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
diff --git a/.travis/bin/show_status.sh b/.travis/bin/show_status.sh
deleted file mode 100755
index c9f8e26..0000000
--- a/.travis/bin/show_status.sh
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/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
-
-test_users() {
- "$script_dir/../lib/test.sh" bin.show_status "$@"
-}
-
-main() {
- test_users egor.tensin
-}
-
-main
diff --git a/.travis/bin/track_status.sh b/.travis/bin/track_status.sh
deleted file mode 100755
index 1a7a7dc..0000000
--- a/.travis/bin/track_status.sh
+++ /dev/null
@@ -1,60 +0,0 @@
-#!/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
-
-dump() {
- local msg
- for msg; do
- echo "$script_name: $msg"
- done
-}
-
-test_users() {
- local log_path
- log_path="$( mktemp )"
- local db_path
- db_path="$( mktemp --dry-run )"
-
- local rm_aux_files
- rm_aux_files="$( printf -- 'rm -f -- %q %q' "$log_path" "$db_path" )"
- trap "$rm_aux_files" RETURN
-
- "$script_dir/../lib/test.sh" bin.track_status "$@" --log "$log_path" --format csv --output "$db_path" &
- local pid="$!"
-
- sleep 3
- dump "Log file path: $log_path"
- dump "DB file path: $db_path"
- dump "PID: $pid"
-
- local timeout=10
- dump "Sleeping for $timeout seconds..."
- sleep "$timeout"
-
- dump 'Terminating track_status.py...'
- kill "$pid"
- dump 'Waiting for track_status.py to terminate...'
- wait "$pid" || true
-
- dump "Log file:"
- cat "$log_path"
- dump "DB:"
- cat "$db_path"
-}
-
-main() {
- test_users egor.tensin
-}
-
-main "$@"