mirror of
https://github.com/deadc0de6/dotdrop.git
synced 2026-02-04 15:04:43 +00:00
116 lines
3.8 KiB
Bash
Executable File
Vendored
116 lines
3.8 KiB
Bash
Executable File
Vendored
#!/usr/bin/env bash
|
|
# author: jtt9340 (https://github.com/jtt9340)
|
|
# author: deadc0de6
|
|
#
|
|
# test compare negative ignore relative
|
|
# 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
|
|
basedir=$(mktemp -d --suffix='-dotdrop-tests' 2>/dev/null || mktemp -d)
|
|
echo "[+] dotdrop dir: ${basedir}"
|
|
echo "[+] dotpath dir: ${basedir}/dotfiles"
|
|
|
|
# the dotfile to be imported
|
|
tmpd=$(mktemp -d --suffix='-dotdrop-tests' 2>/dev/null || mktemp -d)
|
|
|
|
clear_on_exit "${basedir}"
|
|
clear_on_exit "${tmpd}"
|
|
|
|
# some files
|
|
mkdir -p "${tmpd}"/program/ignore_me
|
|
echo "some data1" > "${tmpd}"/program/a
|
|
echo "some data2" > "${tmpd}"/program/ignore_me/b
|
|
echo "some data3" > "${tmpd}"/program/ignore_me/c
|
|
|
|
# create the config file
|
|
cfg="${basedir}/config.yaml"
|
|
create_conf "${cfg}" # sets token
|
|
|
|
# import
|
|
echo "[+] import"
|
|
cd "${ddpath}" | ${bin} import -f -c "${cfg}" "${tmpd}"/program
|
|
|
|
# make some changes to generate a diff
|
|
echo "changed1" > "${tmpd}"/program/a
|
|
echo "changed2" > "${tmpd}"/program/ignore_me/b
|
|
echo "changed3" > "${tmpd}"/program/ignore_me/c
|
|
|
|
# expects two diffs (no need to test comparing normal - 3 diffs, as that is taken care of in compare-negative-ignore.sh)
|
|
patt0="ignore_me/*"
|
|
patt1="!ignore_me/c"
|
|
echo "[+] comparing with ignore (patterns: ${patt0} and ${patt1}) - expect 2 diffs"
|
|
set +e
|
|
cd "${ddpath}" | ${bin} compare -c "${cfg}" --verbose --ignore="${patt0}" --ignore=${patt1}
|
|
[ "$?" = "0" ] && exit 1
|
|
cnt=$(cd "${ddpath}" | ${bin} compare -c "${cfg}" --ignore="${patt0}" --ignore=${patt1} | grep '^=> diff' | wc -l)
|
|
set -e
|
|
[ "${cnt}" != "2" ] && echo "bad number of diffs (1): ${cnt}/2" && exit 1
|
|
|
|
########################################
|
|
# Test ignores specified in config.yaml
|
|
########################################
|
|
# add some files
|
|
mkdir -p "${tmpd}/.zsh/plugins"
|
|
echo "data1" > "${tmpd}"/.zsh/somefile
|
|
echo "data2" > "${tmpd}"/.zsh/plugins/someplugin
|
|
|
|
echo "[+] import .zsh"
|
|
cd "${ddpath}" | ${bin} import -f -c "${cfg}" "${tmpd}"/.zsh
|
|
|
|
echo "init1" > "${tmpd}"/.zsh/plugins/ignore-1.zsh
|
|
echo "init2" > "${tmpd}"/.zsh/plugins/ignore-2.zsh
|
|
|
|
# adding ignore in config.yaml
|
|
cfg2="${basedir}/config2.yaml"
|
|
sed '/d_zsh:/a\
|
|
\ \ \ \ cmpignore:\
|
|
\ \ \ \ - "plugins/ignore-?.zsh"\
|
|
\ \ \ \ - "!plugins/ignore-2.zsh"
|
|
' "${cfg}" > "${cfg2}"
|
|
|
|
# expects one diff
|
|
patt0="plugins/ignore-?.zsh"
|
|
patt1="!plugins/ignore-2.zsh"
|
|
echo "[+] comparing with ignore (patterns: ${patt0} and ${patt1}) - expect 1 diff"
|
|
set +e
|
|
cd "${ddpath}" | ${bin} compare -c "${cfg}" --verbose -C "${tmpd}"/.zsh --ignore="${patt0}" --ignore=${patt1}
|
|
[ "$?" = "0" ] && exit 1
|
|
cnt=$(cd "${ddpath}" | ${bin} compare -c "${cfg}" -C "${tmpd}"/.zsh --ignore="${patt0}" --ignore=${patt1} | grep 'does not exist in dotdrop$' | wc -l)
|
|
set -e
|
|
|
|
[ "${cnt}" != "1" ] && echo "bad number of diffs (2): ${cnt}/1" && exit 1
|
|
|
|
# expects one diff
|
|
echo "[+] comparing .zsh with ignore in dotfile - expect 1 diff"
|
|
set +e
|
|
cd "${ddpath}" | ${bin} compare -c "${cfg2}" --verbose -C "${tmpd}"/.zsh
|
|
[ "${?}" = "0" ] && exit 1
|
|
cnt=$(cd "${ddpath}" | ${bin} compare -c "${cfg2}" -C "${tmpd}"/.zsh | grep 'does not exist in dotdrop$' | wc -l)
|
|
set -e
|
|
|
|
[ "${cnt}" != "1" ] && echo "bad number of diffs (3): ${cnt}/1" && exit 1
|
|
|
|
echo "OK"
|