mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
Add tests for tuvotereminder
Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
This commit is contained in:
parent
a48f8ccb13
commit
cd2d90612b
2 changed files with 29 additions and 1 deletions
|
@ -12,6 +12,7 @@ GIT_AUTH="$TOPLEVEL/git-interface/git-auth.py"
|
||||||
GIT_SERVE="$TOPLEVEL/git-interface/git-serve.py"
|
GIT_SERVE="$TOPLEVEL/git-interface/git-serve.py"
|
||||||
GIT_UPDATE="$TOPLEVEL/git-interface/git-update.py"
|
GIT_UPDATE="$TOPLEVEL/git-interface/git-update.py"
|
||||||
MKPKGLISTS="$TOPLEVEL/scripts/mkpkglists.py"
|
MKPKGLISTS="$TOPLEVEL/scripts/mkpkglists.py"
|
||||||
|
TUVOTEREMINDER="$TOPLEVEL/scripts/tuvotereminder.py"
|
||||||
|
|
||||||
# Create the configuration file and a dummy notification script.
|
# Create the configuration file and a dummy notification script.
|
||||||
cat >config <<-EOF
|
cat >config <<-EOF
|
||||||
|
@ -47,8 +48,9 @@ packagesfile = packages.gz
|
||||||
pkgbasefile = pkgbase.gz
|
pkgbasefile = pkgbase.gz
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
cat >notify.sh <<-EOF
|
cat >notify.sh <<-\EOF
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
echo $* >>notify.out
|
||||||
EOF
|
EOF
|
||||||
chmod +x notify.sh
|
chmod +x notify.sh
|
||||||
|
|
||||||
|
|
26
test/t2200-tuvotereminder.sh
Executable file
26
test/t2200-tuvotereminder.sh
Executable file
|
@ -0,0 +1,26 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
test_description='tuvotereminder tests'
|
||||||
|
|
||||||
|
. ./setup.sh
|
||||||
|
|
||||||
|
test_expect_success 'Test Trusted User vote reminders.' '
|
||||||
|
now=$(date -d now +%s) &&
|
||||||
|
tomorrow=$(date -d tomorrow +%s) &&
|
||||||
|
threedays=$(date -d "3 days" +%s) &&
|
||||||
|
cat <<-EOD | sqlite3 aur.db &&
|
||||||
|
INSERT INTO TU_VoteInfo (ID, Agenda, User, Submitted, End, Quorum, SubmitterID) VALUES (1, "Lorem ipsum.", "user", 0, $now, 0.00, 2);
|
||||||
|
INSERT INTO TU_VoteInfo (ID, Agenda, User, Submitted, End, Quorum, SubmitterID) VALUES (2, "Lorem ipsum.", "user", 0, $tomorrow, 0.00, 2);
|
||||||
|
INSERT INTO TU_VoteInfo (ID, Agenda, User, Submitted, End, Quorum, SubmitterID) VALUES (3, "Lorem ipsum.", "user", 0, $tomorrow, 0.00, 2);
|
||||||
|
INSERT INTO TU_VoteInfo (ID, Agenda, User, Submitted, End, Quorum, SubmitterID) VALUES (4, "Lorem ipsum.", "user", 0, $threedays, 0.00, 2);
|
||||||
|
EOD
|
||||||
|
>notify.out &&
|
||||||
|
"$TUVOTEREMINDER" &&
|
||||||
|
cat <<-EOD >expected &&
|
||||||
|
tu-vote-reminder 2
|
||||||
|
tu-vote-reminder 3
|
||||||
|
EOD
|
||||||
|
test_cmp notify.out expected
|
||||||
|
'
|
||||||
|
|
||||||
|
test_done
|
Loading…
Add table
Reference in a new issue