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

shellcheck fixes

This commit is contained in:
deadc0de6
2023-01-27 16:44:19 +01:00
committed by deadc0de
parent fd26eb89b3
commit 2f1bbeacee
135 changed files with 4083 additions and 3950 deletions

View File

@@ -23,19 +23,22 @@ cur=$(dirname "$(${rl} "${0}")")
# dotdrop path can be pass as argument
ddpath="${cur}/../"
[ "${1}" != "" ] && ddpath="${1}"
[ ! -d ${ddpath} ] && echo "ddpath \"${ddpath}\" is not a directory" && exit 1
[ ! -d "${ddpath}" ] && echo "ddpath \"${ddpath}\" is not a directory" && exit 1
export PYTHONPATH="${ddpath}:${PYTHONPATH}"
bin="python3 -m dotdrop.dotdrop"
hash coverage 2>/dev/null && bin="coverage run -a --source=dotdrop -m dotdrop.dotdrop" || true
if hash coverage 2>/dev/null; then
bin="coverage run -a --source=dotdrop -m dotdrop.dotdrop"
fi
echo "dotdrop path: ${ddpath}"
echo "pythonpath: ${PYTHONPATH}"
# get the helpers
source ${cur}/helpers
# shellcheck source=tests-ng/helpers
source "${cur}"/helpers
echo -e "$(tput setaf 6)==> RUNNING $(basename $BASH_SOURCE) <==$(tput sgr0)"
echo -e "$(tput setaf 6)==> RUNNING $(basename "${BASH_SOURCE[0]}") <==$(tput sgr0)"
################################################################
# this is the test
@@ -49,25 +52,25 @@ grep_or_fail()
}
# dotdrop directory
tmps=`mktemp -d --suffix='-dotdrop-tests-source' || mktemp -d`
tmps=$(mktemp -d --suffix='-dotdrop-tests-source' || mktemp -d)
dt="${tmps}/dotfiles"
mkdir -p ${dt}
mkdir -p "${dt}"
xori="profile x"
xori="profile y"
echo "${xori}" > ${dt}/file_x
echo "${yori}" > ${dt}/file_y
yori="profile y"
echo "${xori}" > "${dt}"/file_x
echo "${yori}" > "${dt}"/file_y
# fs dotfiles
tmpd=`mktemp -d --suffix='-dotdrop-tests-dest' || mktemp -d`
touch ${tmpd}/file
tmpd=$(mktemp -d --suffix='-dotdrop-tests-dest' || mktemp -d)
touch "${tmpd}"/file
clear_on_exit "${tmps}"
clear_on_exit "${tmpd}"
# create the config file
cfg="${tmps}/config.yaml"
cat > ${cfg} << _EOF
cat > "${cfg}" << _EOF
config:
backup: false
create: true
@@ -87,81 +90,81 @@ profiles:
dotfiles:
- f_file_y
_EOF
cat ${cfg}
cat "${cfg}"
# reset
echo "${xori}" > ${dt}/file_x
echo "${yori}" > ${dt}/file_y
echo "${xori}" > "${dt}"/file_x
echo "${yori}" > "${dt}"/file_y
# test with key
echo "test update x from key"
n="patched content for X"
echo "${n}" > ${tmpd}/file
cd ${ddpath} | ${bin} update -f -c ${cfg} --verbose --profile=x --key f_file_x
echo "${n}" > "${tmpd}"/file
cd "${ddpath}" | ${bin} update -f -c "${cfg}" --verbose --profile=x --key f_file_x
grep_or_fail "${n}" "${dt}/file_x"
grep_or_fail "${yori}" "${dt}/file_y"
# reset
echo "${xori}" > ${dt}/file_x
echo "${yori}" > ${dt}/file_y
echo "${xori}" > "${dt}"/file_x
echo "${yori}" > "${dt}"/file_y
# test with key
echo "test update y from key"
n="patched content for Y"
echo "${n}" > ${tmpd}/file
cd ${ddpath} | ${bin} update -f -c ${cfg} --verbose --profile=y --key f_file_y
echo "${n}" > "${tmpd}"/file
cd "${ddpath}" | ${bin} update -f -c "${cfg}" --verbose --profile=y --key f_file_y
grep_or_fail "${n}" "${dt}/file_y"
grep_or_fail "${xori}" "${dt}/file_x"
# reset
echo "${xori}" > ${dt}/file_x
echo "${yori}" > ${dt}/file_y
echo "${xori}" > "${dt}"/file_x
echo "${yori}" > "${dt}"/file_y
# test with path
echo "test update x from path"
n="patched content for X"
echo "${n}" > ${tmpd}/file
cd ${ddpath} | ${bin} update -f -c ${cfg} --verbose --profile=x "${tmpd}/file"
echo "${n}" > "${tmpd}"/file
cd "${ddpath}" | ${bin} update -f -c "${cfg}" --verbose --profile=x "${tmpd}/file"
grep_or_fail "${n}" "${dt}/file_x"
grep_or_fail "${yori}" "${dt}/file_y"
# reset
echo "${xori}" > ${dt}/file_x
echo "${yori}" > ${dt}/file_y
echo "${xori}" > "${dt}"/file_x
echo "${yori}" > "${dt}"/file_y
# test with path
echo "test update y from path"
n="patched content for Y"
echo "${n}" > ${tmpd}/file
cd ${ddpath} | ${bin} update -f -c ${cfg} --verbose --profile=y "${tmpd}/file"
echo "${n}" > "${tmpd}"/file
cd "${ddpath}" | ${bin} update -f -c "${cfg}" --verbose --profile=y "${tmpd}/file"
grep_or_fail "${n}" "${dt}/file_y"
grep_or_fail "${xori}" "${dt}/file_x"
## make sure it fails when wrong dotfile
# reset
echo "${xori}" > ${dt}/file_x
echo "${yori}" > ${dt}/file_y
echo "${xori}" > "${dt}"/file_x
echo "${yori}" > "${dt}"/file_y
# test with key
echo "test wrong key for x"
n="patched content for X"
echo "${n}" > ${tmpd}/file
echo "${n}" > "${tmpd}"/file
set +e
cd ${ddpath} | ${bin} update -f -c ${cfg} --verbose --profile=x --key f_file_y
cd "${ddpath}" | ${bin} update -f -c "${cfg}" --verbose --profile=x --key f_file_y
set -e
grep_or_fail "${xori}" "${dt}/file_x"
grep_or_fail "${yori}" "${dt}/file_y"
# reset
echo "${xori}" > ${dt}/file_x
echo "${yori}" > ${dt}/file_y
echo "${xori}" > "${dt}"/file_x
echo "${yori}" > "${dt}"/file_y
# test with key
echo "test wrong key for y"
n="patched content for Y"
echo "${n}" > ${tmpd}/file
echo "${n}" > "${tmpd}"/file
set +e
cd ${ddpath} | ${bin} update -f -c ${cfg} --verbose --profile=y --key f_file_x
cd "${ddpath}" | ${bin} update -f -c "${cfg}" --verbose --profile=y --key f_file_x
set -e
grep_or_fail "${xori}" "${dt}/file_x"
grep_or_fail "${yori}" "${dt}/file_y"