1
0
mirror of https://github.com/deadc0de6/dotdrop.git synced 2026-02-04 16:49:42 +00:00
Files
dotdrop/tests-ng/compare-profile-check.sh
2023-11-09 11:30:05 +01:00

134 lines
3.1 KiB
Bash
Executable File
Vendored

#!/usr/bin/env bash
# author: deadc0de6 (https://github.com/deadc0de6)
# Copyright (c) 2021, deadc0de6
#
# test compare dotfile from different profile
# returns 1 in case of error
#
## start-cookie
set -eu -o errtrace -o 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
################################################################
# dotdrop directory
tmps=$(mktemp -d --suffix='-dotdrop-tests-source' || mktemp -d)
dt="${tmps}/dotfiles"
mkdir -p "${dt}"
xori="profile x"
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
clear_on_exit "${tmps}"
clear_on_exit "${tmpd}"
# create the config file
cfg="${tmps}/config.yaml"
cat > "${cfg}" << _EOF
config:
backup: false
create: true
dotpath: dotfiles
dotfiles:
f_file_x:
dst: ${tmpd}/file
src: file_x
f_file_y:
dst: ${tmpd}/file
src: file_y
profiles:
x:
dotfiles:
- f_file_x
y:
dotfiles:
- f_file_y
_EOF
cat "${cfg}"
# reset
echo "${xori}" > "${dt}"/file_x
echo "${yori}" > "${dt}"/file_y
echo "test compare profile x (ok)"
echo "${xori}" > "${tmpd}"/file
set +e
cd "${ddpath}" | ${bin} compare -c "${cfg}" --verbose -p x -C "${tmpd}"/file
[ "$?" != "0" ] && exit 1
set -e
echo "test compare profile x (not ok)"
echo "${yori}" > "${tmpd}"/file
set +e
cd "${ddpath}" | ${bin} compare -c "${cfg}" --verbose -p x -C "${tmpd}"/file
[ "$?" = "0" ] && exit 1
set -e
echo "test compare profile y (ok)"
echo "${yori}" > "${tmpd}"/file
set +e
cd "${ddpath}" | ${bin} compare -c "${cfg}" --verbose -p y -C "${tmpd}"/file
[ "$?" != "0" ] && exit 1
set -e
echo "test compare profile y (not ok)"
echo "${xori}" > "${tmpd}"/file
set +e
cd "${ddpath}" | ${bin} compare -c "${cfg}" --verbose -p y -C "${tmpd}"/file
[ "$?" = "0" ] && exit 1
set -e
echo "test compare profile x generic (ok)"
echo "${xori}" > "${tmpd}"/file
set +e
cd "${ddpath}" | ${bin} compare -c "${cfg}" --verbose -p x
[ "$?" != "0" ] && exit 1
set -e
echo "test compare profile x generic (not ok)"
echo "${yori}" > "${tmpd}"/file
set +e
cd "${ddpath}" | ${bin} compare -c "${cfg}" --verbose -p x
[ "$?" = "0" ] && exit 1
set -e
echo "test compare profile y generic (ok)"
echo "${yori}" > "${tmpd}"/file
set +e
cd "${ddpath}" | ${bin} compare -c "${cfg}" --verbose -p y
[ "$?" != "0" ] && exit 1
set -e
echo "test compare profile y generic (not ok)"
echo "${xori}" > "${tmpd}"/file
set +e
cd "${ddpath}" | ${bin} compare -c "${cfg}" --verbose -p y
[ "$?" = "0" ] && exit 1
set -e
echo "OK"
exit 0