-
Notifications
You must be signed in to change notification settings - Fork 0
/
test
executable file
·81 lines (63 loc) · 1.44 KB
/
test
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
#!/bin/bash
reset=\\033[0m
HOOKS=$(cat hooks_dir)
./ghw init $HOOKS
_it() {
echo -e "\033[1;30;43m TEST \033[0m \033[1;4m$test$reset"
}
_commit() {
msg="$test$1"
echo "$msg" >> file
git add file && git commit -avm "$msg"
return $?
}
_passed() {
echo -e "\033[1;30;42m PASSED $reset $@"
}
_failed() {
echo -e "\033[1;41m FAILED $reset $test: \033[1;4m$@$reset";
exit 1;
}
MY_DIR=$(dirname "$(realpath "$0")")
MY_DIR=$(realpath "$MY_DIR/..")
REPO="repo"
rm -rf $REPO
mkdir $REPO
cd $REPO
mkdir $HOOKS
git init
touch file
git add file
test="first commit without hooks"
_it; _commit
[ "$?" == 0 ] && _passed || _failed
test="init"
_it; $MY_DIR/ghw init $HOOKS && _passed || _failed
cp -pf "$MY_DIR/tests/exit0.sh" "$HOOKS/pre-commit"
git add .
git commit -nm "init pre-commit"
test="pre-commit exit0"
_it; _commit
[ $? == 0 ] && _passed || _failed
test="delete file"
rm -rf file
_it
git commit -avm "$test" && (test -e file; [ $? == 1 ])
[ $? == 0 ] && _passed || _failed
test=""
_commit "recover file"
cp -pf "$MY_DIR/tests/exit1.sh" "$HOOKS/pre-commit" || exit 1;
git commit -anm "bad pre-commit"
test="pre-commit exit1"
_it; _commit && _failed || _passed
test="stash pop after fail"
touch "tostash"
_it; _commit
test -e "tostash" && _passed || _failed
test="npm install"
echo "{}" > package.json
_it;
npm install "$MY_DIR" && _passed || _failed
# TODO: it commit interuption;
# TODO: check git log
echo -e "\n\033[1;30;42m DONE \033[0m"