-
Notifications
You must be signed in to change notification settings - Fork 346
/
Copy pathtest_validate_ldap_ldif.sh
executable file
·126 lines (102 loc) · 3.63 KB
/
test_validate_ldap_ldif.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
#!/usr/bin/env bash
# vim:ts=4:sts=4:sw=4:et
#
# Author: Hari Sekhon
# Date: 2017-08-20 12:56:43 +0100 (Sun, 20 Aug 2017)
#
# https://github.com/HariSekhon/DevOps-Python-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 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 )"
cd "$srcdir/..";
# shellcheck disable=SC1091
. ./tests/utils.sh
section "Testing validate_ldap_ldif.py"
if [ $# -gt 0 ]; then
echo "validate_ldap_ldif.py $*"
./validate_ldap_ldif.py "$@"
echo
fi
exclude='/tests/spark-\d+\.\d+.\d+-bin-hadoop\d+.\d+$|broken|error'
data_dir="tests/data"
broken_dir="tests/broken_ldif"
rm -fr "$broken_dir" || :
mkdir "$broken_dir"
export TIMEOUT=5
./validate_ldap_ldif.py --exclude "$exclude" .
echo
echo "checking directory recursion (mixed with explicit file given)"
./validate_ldap_ldif.py "$data_dir/add_ou.ldif" .
echo
echo "checking symlink handling"
ln -sfv "add_ou.ldif" "$data_dir/testlink.ldif"
./validate_ldap_ldif.py "$data_dir/testlink.ldif"
rm "$data_dir/testlink.ldif"
echo
echo "checking ldif file without an extension"
cp -iv "$(find "${1:-.}" -iname '*.ldif' | grep -v -e '/spark-.*-bin-hadoop.*/' -e 'broken' -e 'error' | head -n1)" "$broken_dir/no_extension_testfile"
./validate_ldap_ldif.py "$broken_dir/no_extension_testfile"
echo
echo "testing stdin"
./validate_ldap_ldif.py - < "$data_dir/add_ou.ldif"
./validate_ldap_ldif.py < "$data_dir/add_ou.ldif"
# shellcheck disable=SC2094
./validate_ldap_ldif.py "$data_dir/add_ou.ldif" - < "$data_dir/add_ou.ldif"
echo
echo "testing multiple entry ldif"
cat "$data_dir/add_ou.ldif" >> "$broken_dir/multi-broken.ldif"
cat "$data_dir/add_ou.ldif" >> "$broken_dir/multi-broken.ldif"
./validate_ldap_ldif.py "$broken_dir/multi-broken.ldif"
echo
echo "testing print mode"
[ "$(./validate_ldap_ldif.py -p "$data_dir/add_ou.ldif" | cksum)" = "$(cksum < "$data_dir/add_ou.ldif")" ] || { echo "print test failed!"; exit 1; }
echo "successfully passed out test ldif to stdout"
echo
echo "testing stdin print mode"
[ "$(./validate_ldap_ldif.py -p - < "$data_dir/add_ou.ldif" | cksum)" = "$(cksum < "$data_dir/add_ou.ldif")" ] || { echo "print stdin test failed!"; exit 1; }
echo "successfully passed out stdin test ldif to stdout"
echo
check_broken(){
local filename="$1"
local expected_exitcode="${2:-2}"
local options="${*:3}"
set +e
# shellcheck disable=SC2086
./validate_ldap_ldif.py $options "$filename"
exitcode=$?
set -e
if [ "$exitcode" = "$expected_exitcode" ]; then
echo "successfully detected broken ldif in '$filename', returned exit code $exitcode"
echo
#elif [ $exitcode != 0 ]; then
# echo "returned unexpected non-zero exit code $exitcode for broken ldif in '$filename'"
# exit 1
else
echo "FAILED, returned unexpected exit code $exitcode for broken ldif in '$filename'"
exit 1
fi
}
echo > "$broken_dir/blank.ldif"
check_broken "$broken_dir/blank.ldif"
# break by replacing dn field
sed 's/^dn:/replaceddn:/' "$data_dir/add_ou.ldif" > "$broken_dir/missing_dn.ldif"
check_broken "$broken_dir/missing_dn.ldif"
{ echo "notdnfirst: test"; sed 's/#.*//' "$data_dir/add_ou.ldif"; } > "$broken_dir/first_entry_not_dn.ldif"
check_broken "$broken_dir/first_entry_not_dn.ldif"
check_broken_sample_files ldif
echo "checking for non-existent file"
check_broken nonexistentfile 2
echo
rm -fr "$broken_dir"
echo "======="
echo "SUCCESS"
echo "======="
echo
echo