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

fix: report error on double config import

This commit is contained in:
Davide Laezza
2022-01-18 00:48:04 +01:00
committed by deadc0de
parent 296c179f62
commit b54da1f5c0
2 changed files with 124 additions and 2 deletions

111
tests-ng/double-config-import.sh Executable file
View File

@@ -0,0 +1,111 @@
#!/usr/bin/env bash
# author: davla (https://github.com/davla)
# Copyright (c) 2022, deadc0de6
#
# test error report on importing the same sub-config file more than once
#
# exit on first error
set -e
# all this crap to get current path
rl="readlink -f"
if ! ${rl} "${0}" >/dev/null 2>&1; then
rl="realpath"
if ! hash ${rl}; then
echo "\"${rl}\" not found !" && exit 1
fi
fi
cur=$(dirname "$(${rl} "${0}")")
#hash dotdrop >/dev/null 2>&1
#[ "$?" != "0" ] && echo "install dotdrop to run tests" && exit 1
#echo "called with ${1}"
# dotdrop path can be pass as argument
ddpath="${cur}/../"
[ "${1}" != "" ] && ddpath="${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
echo "dotdrop path: ${ddpath}"
echo "pythonpath: ${PYTHONPATH}"
# get the helpers
source ${cur}/helpers
echo -e "$(tput setaf 6)==> RUNNING $(basename $BASH_SOURCE) <==$(tput sgr0)"
################################################################
# this is the test
################################################################
# dotfile source path
src="$(mktemp -d --suffix='-dotdrop-tests' || mktemp -d)"
mkdir -p "${src}/dotfiles"
clear_on_exit "${src}"
# dotfile destination
dst="$(mktemp -d --suffix='-dotdrop-tests' || mktemp -d)"
clear_on_exit "${dst}"
error_log="${dst}/error.log"
# bottom-level
bottom_level_cfg="${src}/bottom-level.yaml"
cat > ${bottom_level_cfg} << _EOF
config:
backup: true
create: true
dotpath: ${src}/dotfiles
dotfiles: []
profiles: []
_EOF
touch "${src}/dotfiles/bottom"
# mid-level
mid_level_cfg="${src}/mid-level.yaml"
cat > ${mid_level_cfg} << _EOF
config:
backup: true
create: true
dotpath: ${src}/dotfiles
import_configs:
- ${bottom_level_cfg}
dotfiles: []
profiles: []
_EOF
# top-level
top_level_cfg="${src}/top-level.yaml"
cat > ${top_level_cfg} << _EOF
config:
backup: true
create: true
dotpath: ${src}/dotfiles
import_configs:
- ${mid_level_cfg}
- ${bottom_level_cfg}
dotfiles: []
profiles: []
_EOF
# install
set +e
cd ${ddpath} | ${bin} install -f -c ${top_level_cfg} -p top-level 2> "${error_log}"
set -e
# checks
grep "${bottom_level_cfg} imported more than once in ${top_level_cfg}" "${error_log}" > /dev/null 2>&1
echo "OK"
exit 0