Test for the directory structure

Ensure that calcurse uses the right data and configuration directories
depending on the conditions.

Helped-by: Lars Henriksen <LarsHenriksen@get2net.dk>
Signed-off-by: Lukas Fleischer <lfleischer@calcurse.org>
This commit is contained in:
Nitroretro 2019-12-21 04:16:40 +02:00 committed by Lukas Fleischer
parent 992cf45dc9
commit 4a2f5e2183
7 changed files with 74 additions and 0 deletions

View File

@ -4,6 +4,12 @@ TESTS = \
true-001.sh \
run-test-001.sh \
run-test-002.sh \
io-001.sh \
io-002.sh \
io-003.sh \
io-004.sh \
io-005.sh \
io-006.sh \
todo-001.sh \
todo-002.sh \
todo-003.sh \

10
test/io-001.sh Executable file
View File

@ -0,0 +1,10 @@
#!/bin/sh
. "${TEST_INIT:-./test-init.sh}"
data=$(mktemp -d)
"$CALCURSE" -a -D "$data"
[ -f "$data/apts" ] && [ -f "$data/conf" ] && failed=0 || failed=1
rm -rf "$data"
exit "$failed"

11
test/io-002.sh Executable file
View File

@ -0,0 +1,11 @@
#!/bin/sh
. "${TEST_INIT:-./test-init.sh}"
data=$(mktemp -d)
conf=$(mktemp -d)
"$CALCURSE" -a -D "$data" -C "$conf"
[ -f "$data/apts" ] && [ -f "$conf/conf" ] && failed=0 || failed=1
rm -rf "$data" "$conf"
exit "$failed"

12
test/io-003.sh Executable file
View File

@ -0,0 +1,12 @@
#!/bin/sh
. "${TEST_INIT:-./test-init.sh}"
home=$(mktemp -d)
data="$home/.calcurse"
mkdir "$data"
HOME="$home" "$CALCURSE" -a
[ -f "$data/apts" ] && [ -f "$data/conf" ] && failed=0 || failed=1
rm -rf "$home"
exit "$failed"

12
test/io-004.sh Executable file
View File

@ -0,0 +1,12 @@
#!/bin/sh
. "${TEST_INIT:-./test-init.sh}"
home=$(mktemp -d)
data=$(mktemp -d)
conf=$(mktemp -d)
HOME="$home" XDG_DATA_HOME="$data" XDG_CONFIG_HOME="$conf" "$CALCURSE" -a
[ -f "$data/calcurse/apts" ] && [ -f "$conf/calcurse/conf" ] && failed=0 || failed=1
rm -rf "$home" "$data" "$conf"
exit "$failed"

11
test/io-005.sh Executable file
View File

@ -0,0 +1,11 @@
#!/bin/sh
. "${TEST_INIT:-./test-init.sh}"
home=$(mktemp -d)
CALCURSE=$(readlink -f "$CALCURSE")
(unset -v XDG_DATA_HOME XDG_CONFIG_HOME; HOME="$home" "$CALCURSE" -a)
[ -f "$home/.local/share/calcurse/apts" ] && [ -f "$home/.config/calcurse/conf" ] && failed=0 || failed=1
rm -rf "$home"
exit "$failed"

12
test/io-006.sh Executable file
View File

@ -0,0 +1,12 @@
#!/bin/sh
. "${TEST_INIT:-./test-init.sh}"
dir=$(mktemp -d)
CALCURSE=$(readlink -f "$CALCURSE")
cd "$dir"
(unset -v HOME XDG_DATA_HOME XDG_CONFIG_HOME; "$CALCURSE" -a)
[ -f "$dir/.calcurse/apts" ] && [ -f "$dir/.calcurse/conf" ] && failed=0 || failed=1
rm -rf "$dir"
exit "$failed"