1
0
mirror of https://github.com/deadc0de6/dotdrop.git synced 2026-02-04 18:34:48 +00:00

add tests cleaning

This commit is contained in:
deadc0de6
2021-10-19 22:18:39 +02:00
parent f9c318679a
commit f4cff17f1b
110 changed files with 413 additions and 355 deletions

View File

@@ -56,6 +56,9 @@ echo "dotfiles source (dotpath): ${tmps}"
tmpd=`mktemp -d --suffix='-dotdrop-tests' || mktemp -d`
echo "dotfiles destination: ${tmpd}"
clear_on_exit "${tmps}"
clear_on_exit "${tmpd}"
# create the config file
cfg="${tmps}/config.yaml"
@@ -110,6 +113,7 @@ echo 'marker' > ${tmps}/dotfiles/def
# create the compressed dotfile
tmpx=`mktemp -d --suffix='-dotdrop-tests' || mktemp -d`
clear_on_exit "${tmpx}"
mkdir -p ${tmpx}/{a,b,c}
mkdir -p ${tmpx}/a/{dir1,dir2}
# ambiguous redirect ??
@@ -205,6 +209,7 @@ tar -tf ${tmps}/dotfiles/ghi | grep './a/dir1/otherfile' || (echo "otherfile not
set -e
tmpy=`mktemp -d --suffix='-dotdrop-tests' || mktemp -d`
clear_on_exit "${tmpy}"
tar -xf ${tmps}/dotfiles/ghi -C ${tmpy}
content=`cat ${tmpy}/a/somefile`
[ "${content}" != "${touched}" ] && echo "bad content" && exit 1
@@ -212,8 +217,5 @@ content=`cat ${tmpy}/a/somefile`
# check canary dotfile
[ ! -e ${tmps}/dotfiles/def ] && echo "def not found" && exit 1
## CLEANING
rm -rf ${tmps} ${tmpd} ${tmpx} ${tmpy}
echo "OK"
exit 0