diff options
author | gramanas <anastasis.gramm2@gmail.com> | 2018-10-23 17:42:28 +0300 |
---|---|---|
committer | gramanas <anastasis.gramm2@gmail.com> | 2018-10-23 17:42:28 +0300 |
commit | 46421fedf6fe291bfcb63482f3bfa9bb2c7fdff6 (patch) | |
tree | 53d85f05c362230a428ca5593125ba1a1341799d /test/03_delete | |
parent | 410bb2715ce7c9f8d796704395cb44d76e2e884c (diff) | |
download | ck-46421fedf6fe291bfcb63482f3bfa9bb2c7fdff6.tar.gz ck-46421fedf6fe291bfcb63482f3bfa9bb2c7fdff6.tar.bz2 ck-46421fedf6fe291bfcb63482f3bfa9bb2c7fdff6.zip |
Remove site clutter and rename test folder (tests -> test)
Diffstat (limited to 'test/03_delete')
-rw-r--r-- | test/03_delete | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/test/03_delete b/test/03_delete new file mode 100644 index 0000000..1668576 --- /dev/null +++ b/test/03_delete @@ -0,0 +1,55 @@ +#!/bin/bash + +init delete + +# setup test configs +path1=$BIN/test1.conf +path2=$BIN/test2.conf +path3=$BIN/test3.conf +path4=$BIN/test4.conf + +add_config prog1 $path1 +add_config prog1 $path2 + +add_config prog2 $path3 +add_config prog2 $path4 + +# delete path1 +exec $BIN/ck -c $BIN del -c $path1 > /dev/null & +wait $! + +for i in $($BIN/ck -c $BIN list paths); do + if [[ "$i" == "$path1" ]]; then + err "Couldn't delete path." + exit 1 + fi +done + +# delete path2 (also prog1) +exec $BIN/ck -c $BIN del -c $path2 > /dev/null & +wait $! + +for i in $($BIN/ck -c $BIN list programs); do + if [[ "$i" == "prog1" ]]; then + err "Removing all configs should delete the correspondig program." + fi +done + +# delete prog2 +exec $BIN/ck -c $BIN del prog2 > /dev/null & +wait $! + +for i in $($BIN/ck -c $BIN list paths); do + if [[ "$i" == "$path3" ]] || [[ "$i" == "$path4" ]]; then + err "Removing the program should delete all it's configs." + fi +done + +for i in $($BIN/ck -c $BIN list programs); do + if [[ "$i" == "prog1" ]]; then + err "Couldn't remove program." + fi +done + +clear_tests +echo -e $PASS |