mirror of
https://github.com/deadc0de6/dotdrop.git
synced 2026-02-04 19:09:44 +00:00
115 lines
3.1 KiB
Bash
Executable File
Vendored
115 lines
3.1 KiB
Bash
Executable File
Vendored
#!/usr/bin/env bash
|
|
# author: deadc0de6 (https://github.com/deadc0de6)
|
|
# Copyright (c) 2022, deadc0de6
|
|
#
|
|
# test import to no profile (using ALL keyword)
|
|
#
|
|
|
|
## start-cookie
|
|
set -euo errtrace pipefail
|
|
cur=$(cd "$(dirname "${0}")" && pwd)
|
|
ddpath="${cur}/../"
|
|
PPATH="{PYTHONPATH:-}"
|
|
export PYTHONPATH="${ddpath}:${PPATH}"
|
|
altbin="python3 -m dotdrop.dotdrop"
|
|
if hash coverage 2>/dev/null; then
|
|
mkdir -p coverages/
|
|
altbin="coverage run -p --data-file coverages/coverage --source=dotdrop -m dotdrop.dotdrop"
|
|
fi
|
|
bin="${DT_BIN:-${altbin}}"
|
|
# shellcheck source=tests-ng/helpers
|
|
source "${cur}"/helpers
|
|
echo -e "$(tput setaf 6)==> RUNNING $(basename "${BASH_SOURCE[0]}") <==$(tput sgr0)"
|
|
## end-cookie
|
|
|
|
################################################################
|
|
# 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
|