forked from HariSekhon/DevOps-Bash-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheck_cson.sh
executable file
·77 lines (70 loc) · 2.04 KB
/
check_cson.sh
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
70
71
72
73
74
75
76
77
#!/usr/bin/env bash
# vim:ts=4:sts=4:sw=4:et
#
# Author: Hari Sekhon
# Date: 2019-10-01 17:18:03 +0100 (Tue, 01 Oct 2019)
#
# https://github.com/HariSekhon/DevOps-Bash-tools
#
# License: see accompanying Hari Sekhon LICENSE file
#
# If you're using my code you're welcome to connect with me on LinkedIn and optionally send me feedback to help improve or steer this or other code I publish
#
# https://www.linkedin.com/in/HariSekhon
#
set -euo pipefail
[ -n "${DEBUG:-}" ] && set -x
srcdir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
# shellcheck source=lib/utils.sh
. "$srcdir/lib/utils.sh"
filelist="$(find "${1:-.}" -type f -name '*.cson' | sort)"
if [ -z "$filelist" ]; then
return 0 &>/dev/null ||
exit 0
fi
section "CSON Syntax Checks"
start_time="$(start_timer)"
if [ -n "${NOSYNTAXCHECK:-}" ]; then
echo "\$NOSYNTAXCHECK environment variable set, skipping CSON syntax checks"
echo
elif [ -n "${QUICK:-}" ]; then
echo "\$QUICK environment variable set, skipping CSON syntax checks"
echo
else
if ! command -v python-cson &>/dev/null; then
echo "python-cson not found in \$PATH, not running CSON syntax checks"
return 0 &>/dev/null || exit 0
fi
max_len=0
for x in $filelist; do
if [ "${#x}" -gt "$max_len" ]; then
max_len="${#x}"
fi
done
# to account for the semi colon
((max_len + 1))
for x in $filelist; do
isExcluded "$x" && continue
printf "%-${max_len}s " "$x:"
set +eo pipefail
output="$(python-cson -f /dev/null "$x" 2>/dev/null)"
# shellcheck disable=SC2181
if [ $? -eq 0 ]; then
echo "OK"
else
echo "FAILED"
if [ -z "${QUIET:-}" ]; then
echo
echo "$output"
echo
fi
if [ -z "${NOEXIT:-}" ]; then
return 1 &>/dev/null || exit 1
fi
fi
set -eo pipefail
done
time_taken "$start_time"
section2 "All CSON files passed syntax check"
fi
echo