1
0
mirror of https://github.com/deadc0de6/dotdrop.git synced 2026-02-06 05:33:02 +00:00

add ability to import to no profile with ALL

This commit is contained in:
deadc0de6
2022-09-03 08:44:47 +02:00
committed by deadc0de
parent 2ed28ceeda
commit 7974939e68
5 changed files with 180 additions and 15 deletions

View File

@@ -99,7 +99,7 @@ cd ${ddpath} | ${bin} import -f --verbose -c ${cfg} -p p2 \
# count dotfiles for p2
cnt=`cd ${ddpath} | ${bin} files --verbose -c ${cfg} -p p2 -b | grep '^f_' | wc -l`
[ "${cnt}" != "4" ] && exit 1
[ "${cnt}" != "4" ] && echo "bad count for p2: ${cnt} != 4" && exit 1
echo "OK"
exit 0

133
tests-ng/import-to-no-profile.sh vendored Executable file
View File

@@ -0,0 +1,133 @@
#!/usr/bin/env bash
# author: deadc0de6 (https://github.com/deadc0de6)
# Copyright (c) 2022, deadc0de6
#
# test import to no profile (using ALL keyword)
#
# 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
################################################################
# the dotfile source
tmps=`mktemp -d --suffix='-dotdrop-tests' || mktemp -d`
mkdir -p ${tmps}/dotfiles
# the dotfile destination
tmpd=`mktemp -d --suffix='-dotdrop-tests' || mktemp -d`
#echo "dotfile destination: ${tmpd}"
clear_on_exit "${tmps}"
clear_on_exit "${tmpd}"
# create the dotfile
echo "file1" > ${tmpd}/file1
echo "file2" > ${tmpd}/file2
# create the config file
cfg="${tmps}/config.yaml"
cat > ${cfg} << _EOF
config:
backup: true
create: true
dotpath: dotfiles
dotfiles:
profiles:
_EOF
#cat ${cfg}
noprofile="ALL"
##################################
# import with profile from arg
cd ${ddpath} | ${bin} import -f -c ${cfg} -p "${noprofile}" -V ${tmpd}/file1
cat ${cfg}
# ensure exists and is not link
[ ! -e ${tmps}/dotfiles/${tmpd}/file1 ] && echo "file not imported" && exit 1
# ensure present in config
cat ${cfg} | grep ${tmpd}/file1 >/dev/null 2>&1
nb=`cat ${cfg} | grep f_file1 | wc -l`
[ "${nb}" != "1" ] && echo 'bad config' && exit 1
cntpre=`find ${tmps}/dotfiles -type f | wc -l`
# reimport
set +e
cd ${ddpath} | ${bin} import -f -c ${cfg} -p "${noprofile}" -V ${tmpd}/file1
set -e
cat ${cfg}
cntpost=`find ${tmps}/dotfiles -type f | wc -l`
[ "${cntpost}" != "${cntpre}" ] && echo "imported twice" && exit 1
nb=`cat ${cfg} | grep "dst: ${tmpd}/file1" | wc -l`
[ "${nb}" != "1" ] && echo 'imported twice in config' && exit 1
##################################
# import with profile from env
export DOTDROP_PROFILE="${noprofile}"
cd ${ddpath} | ${bin} import -f -c ${cfg} -V ${tmpd}/file2
cat ${cfg}
# ensure exists and is not link
[ ! -e ${tmps}/dotfiles/${tmpd}/file2 ] && echo "file not imported" && exit 1
# ensure present in config
cat ${cfg} | grep ${tmpd}/file2 >/dev/null 2>&1
nb=`cat ${cfg} | grep f_file2 | wc -l`
[ "${nb}" != "1" ] && echo 'bad config' && exit 1
cntpre=`find ${tmps}/dotfiles -type f | wc -l`
# reimport
set +e
cd ${ddpath} | ${bin} import -f -c ${cfg} -V ${tmpd}/file2
set -e
cat ${cfg}
cntpost=`find ${tmps}/dotfiles -type f | wc -l`
[ "${cntpost}" != "${cntpre}" ] && echo "imported twice" && exit 1
nb=`cat ${cfg} | grep "dst: ${tmpd}/file2" | wc -l`
[ "${nb}" != "1" ] && echo 'imported twice in config' && exit 1
echo "OK"
exit 0