1
0
mirror of https://github.com/deadc0de6/dotdrop.git synced 2026-02-09 11:49:14 +00:00

improve tests

This commit is contained in:
user
2025-05-21 21:49:29 +02:00
parent f67f054773
commit a8c06d0b8b

80
tests-ng/install-dir-as-block.sh vendored Normal file → Executable file
View File

@@ -95,12 +95,12 @@ cd "${ddpath}" | ${bin} install -f -c "${cfg}" --verbose -p p1
# Remove a file from blockme1, reinstall, and check it is restored (block behavior)
rm -f "${instroot}/blockme1/file1.txt"
cd "${ddpath}" | ${bin} install -f -c "${cfg}" --verbose -p p1
[ -f "${instroot}/blockme1/file1.txt" ] || (echo "blockme1 not restored as block" && exit 1)
[ -f "${instroot}/blockme1/file1.txt" ] || (echo "blockme1 not restored" && exit 1)
# Remove a file from noblock, reinstall, and check it is NOT restored (not a block)
# Remove a file from noblock, reinstall, and check it is restored
rm -f "${instroot}/noblock/file4.txt"
cd "${ddpath}" | ${bin} install -f -c "${cfg}" --verbose -p p1
[ ! -f "${instroot}/noblock/file4.txt" ] || (echo "noblock should not be restored as block" && exit 1)
[ -f "${instroot}/noblock/file4.txt" ] || (echo "noblock not restored" && exit 1)
# Check that blockme2 was installed as a block
rm -f "${instroot}/blockme2/file3.txt"
@@ -124,5 +124,79 @@ rm -f "${instroot}/blockme1/nomatchsub/subfile2.txt"
cd "${ddpath}" | ${bin} install -f -c "${cfg}" --verbose -p p1
[ ! -f "${instroot}/blockme1/nomatchsub/subfile2.txt" ] || (echo "blockme1/nomatchsub should not be restored as block" && exit 1)
# Check confirmation prompts for block and non-block directories
# Remove -f to enable confirmation prompts
# Function to count confirmation prompts in output
count_prompts() {
grep -c "Do you want to continue" "$1"
}
# Test: blockme1 (should prompt ONCE for the whole dir)
rm -rf "${instroot}/blockme1"
# Use script to simulate 'y' input and capture output
script -q -c "cd \"${ddpath}\" && ${bin} install -c \"${cfg}\" --verbose -p p1" blockme1.out <<<'y'
blockme1_prompts=$(count_prompts blockme1.out)
if [ "$blockme1_prompts" -ne 1 ]; then
echo "blockme1: expected 1 prompt, got $blockme1_prompts" && exit 1
fi
# Test: noblock (should prompt for each file)
rm -rf "${instroot}/noblock"
script -q -c "cd \"${ddpath}\" && ${bin} install -c \"${cfg}\" --verbose -p p1" noblock.out <<<'y
y'
noblock_prompts=$(count_prompts noblock.out)
# There is only one file, so expect 1 prompt
if [ "$noblock_prompts" -ne 1 ]; then
echo "noblock: expected 1 prompt, got $noblock_prompts" && exit 1
fi
# Test: blockme1 with multiple files (should still prompt ONCE)
rm -rf "${instroot}/blockme1"
# Add another file to blockme1
echo "fileX" > "${dotpath}/blockme1/fileX.txt"
script -q -c "cd \"${ddpath}\" && ${bin} install -c \"${cfg}\" --verbose -p p1" blockme1_multi.out <<<'y'
blockme1_multi_prompts=$(count_prompts blockme1_multi.out)
if [ "$blockme1_multi_prompts" -ne 1 ]; then
echo "blockme1 (multi): expected 1 prompt, got $blockme1_multi_prompts" && exit 1
fi
# Test: blockme1/nomatchsub (should prompt for each file in non-block subdir)
rm -rf "${instroot}/blockme1/nomatchsub"
script -q -c "cd \"${ddpath}\" && ${bin} install -c \"${cfg}\" --verbose -p p1" nomatchsub.out <<<'y'
nomatchsub_prompts=$(count_prompts nomatchsub.out)
# Only one file, so expect 1 prompt
if [ "$nomatchsub_prompts" -ne 1 ]; then
echo "nomatchsub: expected 1 prompt, got $nomatchsub_prompts" && exit 1
fi
# Test: blockme1/matchsub (should prompt ONCE for the whole subdir)
rm -rf "${instroot}/blockme1/matchsub"
script -q -c "cd \"${ddpath}\" && ${bin} install -c \"${cfg}\" --verbose -p p1" matchsub.out <<<'y'
matchsub_prompts=$(count_prompts matchsub.out)
if [ "$matchsub_prompts" -ne 1 ]; then
echo "matchsub: expected 1 prompt, got $matchsub_prompts" && exit 1
fi
# Check confirmation prompt count for block directory
rm -f "${instroot}/blockme1/file1.txt"
# Run install interactively and capture output
prompt_output_block=$(cd "${ddpath}" && echo y | ${bin} install -c "${cfg}" --verbose -p p1 2>&1)
# Count confirmation prompts (look for 'Overwrite' or 'replace' or similar)
prompt_count_block=$(echo "$prompt_output_block" | grep -E -i 'overwrite|replace|confirm' | wc -l)
if [ "$prompt_count_block" -ne 1 ]; then
echo "Expected 1 confirmation prompt for block directory, got $prompt_count_block" && exit 1
fi
# Check confirmation prompt count for non-block directory
rm -f "${instroot}/noblock/file4.txt"
# Run install interactively and capture output
prompt_output_noblock=$(cd "${ddpath}" && echo y | ${bin} install -c "${cfg}" --verbose -p p1 2>&1)
# Count confirmation prompts (should be at least 1 for the file, could be more if more files)
prompt_count_noblock=$(echo "$prompt_output_noblock" | grep -E -i 'overwrite|replace|confirm' | wc -l)
if [ "$prompt_count_noblock" -lt 1 ]; then
echo "Expected at least 1 confirmation prompt for non-block directory, got $prompt_count_noblock" && exit 1
fi
echo "OK"
exit 0