mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
We're currently creating a "PackageBases" when the "restore" command is executed. This is problematic for pkgbases that never existed before. In those cases it will create the record but fail in the update.py script. Thus it leaves an orphan "PackageBases" record in the DB (which does not have any related "Packages" record(s)) Navigating to such a packages /pkgbase/... URL will result in a crash since it is not foreseen to have "orphan" pkgbase records. We can safely remove the early creation of that record because it'll be taken care of in the update.py script that is being called We'll also fix some tests. Before it was executing a dummy script instead of "update.py" which might be a bit misleading since it did not check the real outcome of our "restore" action. Signed-off-by: moson-mo <mo-son@mailbox.org>
536 lines
16 KiB
Bash
Executable file
536 lines
16 KiB
Bash
Executable file
#!/bin/sh
|
|
|
|
test_description='git-serve tests'
|
|
|
|
. "$(dirname $0)/setup.sh"
|
|
|
|
test_expect_success 'Test interactive shell.' '
|
|
cover "$GIT_SERVE" 2>&1 | grep -q "Interactive shell is disabled."
|
|
'
|
|
|
|
test_expect_success 'Test help.' '
|
|
SSH_ORIGINAL_COMMAND=help cover "$GIT_SERVE" 2>actual &&
|
|
save_IFS=$IFS
|
|
IFS=
|
|
while read -r line; do
|
|
echo $line | grep -q "^Commands:$" && continue
|
|
echo $line | grep -q "^ [a-z]" || return 1
|
|
[ ${#line} -le 80 ] || return 1
|
|
done <actual
|
|
IFS=$save_IFS
|
|
'
|
|
|
|
test_expect_success 'Test maintenance mode.' '
|
|
mv config config.old &&
|
|
sed "s/^\(enable-maintenance = \)0$/\\11/" config.old >config &&
|
|
test_must_fail \
|
|
env SSH_ORIGINAL_COMMAND=help \
|
|
cover "$GIT_SERVE" 2>actual &&
|
|
cat >expected <<-EOF &&
|
|
The AUR is down due to maintenance. We will be back soon.
|
|
EOF
|
|
test_cmp expected actual &&
|
|
mv config.old config
|
|
'
|
|
|
|
test_expect_success 'Test IP address logging.' '
|
|
SSH_ORIGINAL_COMMAND=help AUR_USER=user cover "$GIT_SERVE" 2>actual &&
|
|
cat >expected <<-EOF &&
|
|
1.2.3.4
|
|
EOF
|
|
echo "SELECT LastSSHLoginIPAddress FROM Users WHERE UserName = '"'"'user'"'"';" | \
|
|
sqlite3 aur.db >actual &&
|
|
test_cmp expected actual
|
|
'
|
|
|
|
test_expect_success 'Test IP address bans.' '
|
|
SSH_CLIENT_ORIG="$SSH_CLIENT" &&
|
|
SSH_CLIENT="1.3.3.7 1337 22" &&
|
|
test_must_fail \
|
|
env SSH_ORIGINAL_COMMAND=help \
|
|
cover "$GIT_SERVE" 2>actual &&
|
|
cat >expected <<-EOF &&
|
|
The SSH interface is disabled for your IP address.
|
|
EOF
|
|
test_cmp expected actual &&
|
|
SSH_CLIENT="$SSH_CLIENT_ORIG"
|
|
'
|
|
|
|
test_expect_success 'Test list-repos.' '
|
|
# insert our test packages
|
|
echo "INSERT INTO PackageBases (Name, SubmittedTS, \
|
|
ModifiedTS, SubmitterUID, MaintainerUID, FlaggerComment) \
|
|
VALUES ('"'"'foobar'"'"', 0, 0, 1, 1, '"'"''"'"');" | \
|
|
sqlite3 aur.db
|
|
echo "INSERT INTO PackageBases (Name, SubmittedTS, \
|
|
ModifiedTS, SubmitterUID, MaintainerUID, FlaggerComment) \
|
|
VALUES ('"'"'foobar2'"'"', 0, 0, 2, 2, '"'"''"'"');" | \
|
|
sqlite3 aur.db
|
|
cat >expected <<-EOF &&
|
|
*foobar
|
|
EOF
|
|
SSH_ORIGINAL_COMMAND="list-repos" AUR_USER=user \
|
|
cover "$GIT_SERVE" 2>&1 >actual &&
|
|
test_cmp expected actual
|
|
'
|
|
|
|
test_expect_success 'Test git-receive-pack.' '
|
|
cat >expected <<-EOF &&
|
|
user
|
|
foobar
|
|
foobar
|
|
EOF
|
|
SSH_ORIGINAL_COMMAND="git-receive-pack /foobar.git/" \
|
|
AUR_USER=user AUR_PRIVILEGED=0 \
|
|
cover "$GIT_SERVE" 2>&1 >actual &&
|
|
test_cmp expected actual
|
|
'
|
|
|
|
test_expect_success 'Test git-receive-pack with an invalid repository name.' '
|
|
test_must_fail \
|
|
env SSH_ORIGINAL_COMMAND="git-receive-pack /!.git/" \
|
|
AUR_USER=user AUR_PRIVILEGED=0 \
|
|
cover "$GIT_SERVE" 2>&1 >actual
|
|
'
|
|
|
|
test_expect_success "Test git-upload-pack." '
|
|
cat >expected <<-EOF &&
|
|
user
|
|
foobar
|
|
foobar
|
|
EOF
|
|
SSH_ORIGINAL_COMMAND="git-upload-pack /foobar.git/" \
|
|
AUR_USER=user AUR_PRIVILEGED=0 \
|
|
cover "$GIT_SERVE" 2>&1 >actual &&
|
|
test_cmp expected actual
|
|
'
|
|
|
|
test_expect_success "Try to pull from someone else's repository." '
|
|
cat >expected <<-EOF &&
|
|
user
|
|
foobar2
|
|
foobar2
|
|
EOF
|
|
SSH_ORIGINAL_COMMAND="git-upload-pack /foobar2.git/" \
|
|
AUR_USER=user AUR_PRIVILEGED=0 \
|
|
cover "$GIT_SERVE" 2>&1 >actual &&
|
|
test_cmp expected actual
|
|
'
|
|
|
|
test_expect_success "Try to push to someone else's repository." '
|
|
test_must_fail \
|
|
env SSH_ORIGINAL_COMMAND="git-receive-pack /foobar2.git/" \
|
|
AUR_USER=user AUR_PRIVILEGED=0 \
|
|
cover "$GIT_SERVE" 2>&1
|
|
'
|
|
|
|
test_expect_success "Try to push to someone else's repository as Trusted User." '
|
|
cat >expected <<-EOF &&
|
|
tu
|
|
foobar
|
|
foobar
|
|
EOF
|
|
SSH_ORIGINAL_COMMAND="git-receive-pack /foobar.git/" \
|
|
AUR_USER=tu AUR_PRIVILEGED=1 \
|
|
cover "$GIT_SERVE" 2>&1 >actual &&
|
|
test_cmp expected actual
|
|
'
|
|
|
|
test_expect_success "Test restore." '
|
|
# Delete from DB
|
|
echo "DELETE FROM PackageBases WHERE Name = '"'"'foobar'"'"';" | \
|
|
sqlite3 aur.db &&
|
|
# "Create branch" as if it had been there
|
|
new=$(git -C aur.git rev-parse HEAD^) &&
|
|
echo $new > aur.git/.git/refs/heads/foobar &&
|
|
# Restore deleted package
|
|
SSH_ORIGINAL_COMMAND="restore foobar" AUR_USER=user AUR_PRIVILEGED=0 \
|
|
cover "$GIT_SERVE" 2>&1 &&
|
|
# We should find foobar with a new ID (3) in the DB after restore
|
|
echo "SELECT ID FROM PackageBases WHERE Name = '"'"'foobar'"'"';" | \
|
|
sqlite3 aur.db >actual &&
|
|
cat >expected <<-EOF &&
|
|
3
|
|
EOF
|
|
test_cmp expected actual
|
|
'
|
|
|
|
test_expect_success "Try to restore an existing package base." '
|
|
test_must_fail \
|
|
env SSH_ORIGINAL_COMMAND="restore foobar2"\
|
|
AUR_USER=user AUR_PRIVILEGED=0 \
|
|
cover "$GIT_SERVE" 2>&1
|
|
'
|
|
|
|
test_expect_success "Disown all package bases." '
|
|
SSH_ORIGINAL_COMMAND="disown foobar" AUR_USER=tu AUR_PRIVILEGED=1 \
|
|
cover "$GIT_SERVE" 2>&1 &&
|
|
SSH_ORIGINAL_COMMAND="disown foobar2" AUR_USER=tu AUR_PRIVILEGED=1 \
|
|
cover "$GIT_SERVE" 2>&1 &&
|
|
cat >expected <<-EOF &&
|
|
EOF
|
|
SSH_ORIGINAL_COMMAND="list-repos" AUR_USER=user AUR_PRIVILEGED=0 \
|
|
cover "$GIT_SERVE" 2>&1 >actual &&
|
|
test_cmp expected actual &&
|
|
SSH_ORIGINAL_COMMAND="list-repos" AUR_USER=tu AUR_PRIVILEGED=1 \
|
|
cover "$GIT_SERVE" 2>&1 >actual &&
|
|
test_cmp expected actual
|
|
'
|
|
|
|
test_expect_success "Adopt a package base as a regular user." '
|
|
SSH_ORIGINAL_COMMAND="adopt foobar" AUR_USER=user AUR_PRIVILEGED=0 \
|
|
cover "$GIT_SERVE" 2>&1 &&
|
|
cat >expected <<-EOF &&
|
|
foobar
|
|
EOF
|
|
SSH_ORIGINAL_COMMAND="list-repos" AUR_USER=user AUR_PRIVILEGED=0 \
|
|
cover "$GIT_SERVE" 2>&1 >actual &&
|
|
test_cmp expected actual
|
|
'
|
|
|
|
test_expect_success "Adopt an already adopted package base." '
|
|
test_must_fail \
|
|
env SSH_ORIGINAL_COMMAND="adopt foobar" \
|
|
AUR_USER=user AUR_PRIVILEGED=0 \
|
|
cover "$GIT_SERVE" 2>&1
|
|
'
|
|
|
|
test_expect_success "Adopt a package base as a Trusted User." '
|
|
SSH_ORIGINAL_COMMAND="adopt foobar2" AUR_USER=tu AUR_PRIVILEGED=1 \
|
|
cover "$GIT_SERVE" 2>&1 &&
|
|
cat >expected <<-EOF &&
|
|
*foobar2
|
|
EOF
|
|
SSH_ORIGINAL_COMMAND="list-repos" AUR_USER=tu AUR_PRIVILEGED=1 \
|
|
cover "$GIT_SERVE" 2>&1 >actual &&
|
|
test_cmp expected actual
|
|
'
|
|
|
|
test_expect_success "Disown one's own package base as a regular user." '
|
|
SSH_ORIGINAL_COMMAND="disown foobar" AUR_USER=user AUR_PRIVILEGED=0 \
|
|
cover "$GIT_SERVE" 2>&1 &&
|
|
cat >expected <<-EOF &&
|
|
EOF
|
|
SSH_ORIGINAL_COMMAND="list-repos" AUR_USER=user AUR_PRIVILEGED=0 \
|
|
cover "$GIT_SERVE" 2>&1 >actual &&
|
|
test_cmp expected actual
|
|
'
|
|
|
|
test_expect_success "Disown one's own package base as a Trusted User." '
|
|
SSH_ORIGINAL_COMMAND="disown foobar2" AUR_USER=tu AUR_PRIVILEGED=1 \
|
|
cover "$GIT_SERVE" 2>&1 &&
|
|
cat >expected <<-EOF &&
|
|
EOF
|
|
SSH_ORIGINAL_COMMAND="list-repos" AUR_USER=tu AUR_PRIVILEGED=1 \
|
|
cover "$GIT_SERVE" 2>&1 >actual &&
|
|
test_cmp expected actual
|
|
'
|
|
|
|
test_expect_success "Try to steal another user's package as a regular user." '
|
|
SSH_ORIGINAL_COMMAND="adopt foobar2" AUR_USER=tu AUR_PRIVILEGED=1 \
|
|
cover "$GIT_SERVE" 2>&1 &&
|
|
test_must_fail \
|
|
env SSH_ORIGINAL_COMMAND="adopt foobar2" \
|
|
AUR_USER=user AUR_PRIVILEGED=0 \
|
|
cover "$GIT_SERVE" 2>&1 &&
|
|
cat >expected <<-EOF &&
|
|
EOF
|
|
SSH_ORIGINAL_COMMAND="list-repos" AUR_USER=user AUR_PRIVILEGED=0 \
|
|
cover "$GIT_SERVE" 2>&1 >actual &&
|
|
test_cmp expected actual &&
|
|
cat >expected <<-EOF &&
|
|
*foobar2
|
|
EOF
|
|
SSH_ORIGINAL_COMMAND="list-repos" AUR_USER=tu AUR_PRIVILEGED=1 \
|
|
cover "$GIT_SERVE" 2>&1 >actual &&
|
|
test_cmp expected actual &&
|
|
SSH_ORIGINAL_COMMAND="disown foobar2" AUR_USER=tu AUR_PRIVILEGED=1 \
|
|
cover "$GIT_SERVE" 2>&1
|
|
'
|
|
|
|
test_expect_success "Try to steal another user's package as a Trusted User." '
|
|
SSH_ORIGINAL_COMMAND="adopt foobar" AUR_USER=user AUR_PRIVILEGED=0 \
|
|
cover "$GIT_SERVE" 2>&1 &&
|
|
SSH_ORIGINAL_COMMAND="adopt foobar" AUR_USER=tu AUR_PRIVILEGED=1 \
|
|
cover "$GIT_SERVE" 2>&1 &&
|
|
cat >expected <<-EOF &&
|
|
EOF
|
|
SSH_ORIGINAL_COMMAND="list-repos" AUR_USER=user AUR_PRIVILEGED=0 \
|
|
cover "$GIT_SERVE" 2>&1 >actual &&
|
|
test_cmp expected actual &&
|
|
cat >expected <<-EOF &&
|
|
foobar
|
|
EOF
|
|
SSH_ORIGINAL_COMMAND="list-repos" AUR_USER=tu AUR_PRIVILEGED=1 \
|
|
cover "$GIT_SERVE" 2>&1 >actual &&
|
|
test_cmp expected actual &&
|
|
SSH_ORIGINAL_COMMAND="disown foobar" AUR_USER=tu AUR_PRIVILEGED=1 \
|
|
cover "$GIT_SERVE" 2>&1
|
|
'
|
|
|
|
test_expect_success "Try to disown another user's package as a regular user." '
|
|
SSH_ORIGINAL_COMMAND="adopt foobar2" AUR_USER=tu AUR_PRIVILEGED=1 \
|
|
cover "$GIT_SERVE" 2>&1 &&
|
|
test_must_fail \
|
|
env SSH_ORIGINAL_COMMAND="disown foobar2" \
|
|
AUR_USER=user AUR_PRIVILEGED=0 \
|
|
cover "$GIT_SERVE" 2>&1 &&
|
|
cat >expected <<-EOF &&
|
|
*foobar2
|
|
EOF
|
|
SSH_ORIGINAL_COMMAND="list-repos" AUR_USER=tu AUR_PRIVILEGED=1 \
|
|
cover "$GIT_SERVE" 2>&1 >actual &&
|
|
test_cmp expected actual &&
|
|
SSH_ORIGINAL_COMMAND="disown foobar2" AUR_USER=tu AUR_PRIVILEGED=1 \
|
|
cover "$GIT_SERVE" 2>&1
|
|
'
|
|
|
|
test_expect_success "Try to disown another user's package as a Trusted User." '
|
|
SSH_ORIGINAL_COMMAND="adopt foobar" AUR_USER=user AUR_PRIVILEGED=0 \
|
|
cover "$GIT_SERVE" 2>&1 &&
|
|
SSH_ORIGINAL_COMMAND="disown foobar" AUR_USER=tu AUR_PRIVILEGED=1 \
|
|
cover "$GIT_SERVE" 2>&1 &&
|
|
cat >expected <<-EOF &&
|
|
EOF
|
|
SSH_ORIGINAL_COMMAND="list-repos" AUR_USER=user AUR_PRIVILEGED=0 \
|
|
cover "$GIT_SERVE" 2>&1 >actual &&
|
|
test_cmp expected actual &&
|
|
SSH_ORIGINAL_COMMAND="disown foobar" AUR_USER=tu AUR_PRIVILEGED=1 \
|
|
cover "$GIT_SERVE" 2>&1
|
|
'
|
|
|
|
test_expect_success "Adopt a package base and add co-maintainers." '
|
|
SSH_ORIGINAL_COMMAND="adopt foobar" AUR_USER=user AUR_PRIVILEGED=0 \
|
|
cover "$GIT_SERVE" 2>&1 &&
|
|
SSH_ORIGINAL_COMMAND="set-comaintainers foobar user3 user4" \
|
|
AUR_USER=user AUR_PRIVILEGED=0 \
|
|
cover "$GIT_SERVE" 2>&1 &&
|
|
cat >expected <<-EOF &&
|
|
5|3|1
|
|
6|3|2
|
|
EOF
|
|
echo "SELECT * FROM PackageComaintainers ORDER BY Priority;" | \
|
|
sqlite3 aur.db >actual &&
|
|
test_cmp expected actual
|
|
'
|
|
|
|
test_expect_success "Update package base co-maintainers." '
|
|
SSH_ORIGINAL_COMMAND="set-comaintainers foobar user2 user3 user4" \
|
|
AUR_USER=user AUR_PRIVILEGED=0 \
|
|
cover "$GIT_SERVE" 2>&1 &&
|
|
cat >expected <<-EOF &&
|
|
4|3|1
|
|
5|3|2
|
|
6|3|3
|
|
EOF
|
|
echo "SELECT * FROM PackageComaintainers ORDER BY Priority;" | \
|
|
sqlite3 aur.db >actual &&
|
|
test_cmp expected actual
|
|
'
|
|
|
|
test_expect_success "Try to add co-maintainers to an orphan package base." '
|
|
test_must_fail \
|
|
env SSH_ORIGINAL_COMMAND="set-comaintainers foobar2 user2 user3 user4" \
|
|
AUR_USER=user AUR_PRIVILEGED=0 \
|
|
cover "$GIT_SERVE" 2>&1 &&
|
|
cat >expected <<-EOF &&
|
|
4|3|1
|
|
5|3|2
|
|
6|3|3
|
|
EOF
|
|
echo "SELECT * FROM PackageComaintainers ORDER BY Priority;" | \
|
|
sqlite3 aur.db >actual &&
|
|
test_cmp expected actual
|
|
'
|
|
|
|
test_expect_success "Disown a package base and check (co-)maintainer list." '
|
|
SSH_ORIGINAL_COMMAND="disown foobar" AUR_USER=user AUR_PRIVILEGED=0 \
|
|
cover "$GIT_SERVE" 2>&1 &&
|
|
cat >expected <<-EOF &&
|
|
foobar
|
|
EOF
|
|
SSH_ORIGINAL_COMMAND="list-repos" AUR_USER=user2 AUR_PRIVILEGED=0 \
|
|
cover "$GIT_SERVE" 2>&1 >actual &&
|
|
test_cmp expected actual &&
|
|
cat >expected <<-EOF &&
|
|
5|3|1
|
|
6|3|2
|
|
EOF
|
|
echo "SELECT * FROM PackageComaintainers ORDER BY Priority;" | \
|
|
sqlite3 aur.db >actual &&
|
|
test_cmp expected actual
|
|
'
|
|
|
|
test_expect_success "Force-disown a package base and check (co-)maintainer list." '
|
|
SSH_ORIGINAL_COMMAND="disown foobar" AUR_USER=tu AUR_PRIVILEGED=1 \
|
|
cover "$GIT_SERVE" 2>&1 &&
|
|
cat >expected <<-EOF &&
|
|
EOF
|
|
SSH_ORIGINAL_COMMAND="list-repos" AUR_USER=user3 AUR_PRIVILEGED=0 \
|
|
cover "$GIT_SERVE" 2>&1 >actual &&
|
|
test_cmp expected actual &&
|
|
cat >expected <<-EOF &&
|
|
EOF
|
|
echo "SELECT * FROM PackageComaintainers ORDER BY Priority;" | \
|
|
sqlite3 aur.db >actual &&
|
|
test_cmp expected actual
|
|
'
|
|
|
|
test_expect_success "Check whether package requests are closed when disowning." '
|
|
SSH_ORIGINAL_COMMAND="adopt foobar" AUR_USER=user AUR_PRIVILEGED=0 \
|
|
cover "$GIT_SERVE" 2>&1 &&
|
|
cat <<-EOD | sqlite3 aur.db &&
|
|
INSERT INTO PackageRequests (ID, ReqTypeID, PackageBaseID, PackageBaseName, UsersID, Comments, ClosureComment) VALUES (1, 2, 3, '"'"'foobar'"'"', 4, '"'"''"'"', '"'"''"'"');
|
|
INSERT INTO PackageRequests (ID, ReqTypeID, PackageBaseID, PackageBaseName, UsersID, Comments, ClosureComment) VALUES (2, 3, 3, '"'"'foobar'"'"', 5, '"'"''"'"', '"'"''"'"');
|
|
INSERT INTO PackageRequests (ID, ReqTypeID, PackageBaseID, PackageBaseName, UsersID, Comments, ClosureComment) VALUES (3, 2, 2, '"'"'foobar2'"'"', 6, '"'"''"'"', '"'"''"'"');
|
|
EOD
|
|
>sendmail.out &&
|
|
SSH_ORIGINAL_COMMAND="disown foobar" AUR_USER=user AUR_PRIVILEGED=0 \
|
|
cover "$GIT_SERVE" 2>&1 &&
|
|
cat <<-EOD >expected &&
|
|
Subject: [PRQ#1] Orphan Request for foobar Accepted
|
|
EOD
|
|
grep "^Subject.*PRQ" sendmail.out >sendmail.parts &&
|
|
test_cmp sendmail.parts expected &&
|
|
cat <<-EOD >expected &&
|
|
1|2||The user user disowned the package.
|
|
EOD
|
|
echo "SELECT ID, Status, ClosedUID, ClosureComment FROM PackageRequests WHERE ClosedTS > 0;" | sqlite3 aur.db >actual &&
|
|
test_cmp actual expected
|
|
'
|
|
|
|
test_expect_success "Flag a package base out-of-date." '
|
|
SSH_ORIGINAL_COMMAND="flag foobar Because." AUR_USER=user2 AUR_PRIVILEGED=0 \
|
|
cover "$GIT_SERVE" 2>&1 &&
|
|
cat >expected <<-EOF &&
|
|
1|Because.
|
|
EOF
|
|
echo "SELECT OutOfDateTS IS NOT NULL, FlaggerComment FROM PackageBases WHERE ID = 3;" | \
|
|
sqlite3 aur.db >actual &&
|
|
test_cmp expected actual
|
|
'
|
|
|
|
test_expect_success "Unflag a package base as flagger." '
|
|
SSH_ORIGINAL_COMMAND="unflag foobar" AUR_USER=user2 AUR_PRIVILEGED=0 \
|
|
cover "$GIT_SERVE" 2>&1 &&
|
|
cat >expected <<-EOF &&
|
|
0|Because.
|
|
EOF
|
|
echo "SELECT OutOfDateTS IS NOT NULL, FlaggerComment FROM PackageBases WHERE ID = 3;" | \
|
|
sqlite3 aur.db >actual &&
|
|
test_cmp expected actual
|
|
'
|
|
|
|
test_expect_success "Unflag a package base as maintainer." '
|
|
SSH_ORIGINAL_COMMAND="adopt foobar" AUR_USER=user AUR_PRIVILEGED=0 \
|
|
cover "$GIT_SERVE" 2>&1 &&
|
|
SSH_ORIGINAL_COMMAND="flag foobar Because." AUR_USER=user2 AUR_PRIVILEGED=0 \
|
|
cover "$GIT_SERVE" 2>&1 &&
|
|
SSH_ORIGINAL_COMMAND="unflag foobar" AUR_USER=user AUR_PRIVILEGED=0 \
|
|
cover "$GIT_SERVE" 2>&1 &&
|
|
cat >expected <<-EOF &&
|
|
0|Because.
|
|
EOF
|
|
echo "SELECT OutOfDateTS IS NOT NULL, FlaggerComment FROM PackageBases WHERE ID = 3;" | \
|
|
sqlite3 aur.db >actual &&
|
|
test_cmp expected actual
|
|
'
|
|
|
|
test_expect_success "Unflag a package base as random user." '
|
|
SSH_ORIGINAL_COMMAND="flag foobar Because." AUR_USER=user2 AUR_PRIVILEGED=0 \
|
|
cover "$GIT_SERVE" 2>&1 &&
|
|
SSH_ORIGINAL_COMMAND="unflag foobar" AUR_USER=user3 AUR_PRIVILEGED=0 \
|
|
cover "$GIT_SERVE" 2>&1 &&
|
|
cat >expected <<-EOF &&
|
|
1|Because.
|
|
EOF
|
|
echo "SELECT OutOfDateTS IS NOT NULL, FlaggerComment FROM PackageBases WHERE ID = 3;" | \
|
|
sqlite3 aur.db >actual &&
|
|
test_cmp expected actual
|
|
'
|
|
|
|
test_expect_success "Flag using a comment which is too short." '
|
|
SSH_ORIGINAL_COMMAND="unflag foobar" AUR_USER=user2 AUR_PRIVILEGED=0 \
|
|
cover "$GIT_SERVE" 2>&1 &&
|
|
test_must_fail \
|
|
env SSH_ORIGINAL_COMMAND="flag foobar xx" \
|
|
AUR_USER=user2 AUR_PRIVILEGED=0 \
|
|
cover "$GIT_SERVE" 2>&1 &&
|
|
cat >expected <<-EOF &&
|
|
0|Because.
|
|
EOF
|
|
echo "SELECT OutOfDateTS IS NOT NULL, FlaggerComment FROM PackageBases WHERE ID = 3;" | \
|
|
sqlite3 aur.db >actual &&
|
|
test_cmp expected actual
|
|
'
|
|
|
|
test_expect_success "Vote for a package base." '
|
|
SSH_ORIGINAL_COMMAND="vote foobar" AUR_USER=user AUR_PRIVILEGED=0 \
|
|
cover "$GIT_SERVE" 2>&1 &&
|
|
cat >expected <<-EOF &&
|
|
3|1
|
|
EOF
|
|
echo "SELECT PackageBaseID, UsersID FROM PackageVotes;" | \
|
|
sqlite3 aur.db >actual &&
|
|
test_cmp expected actual &&
|
|
cat >expected <<-EOF &&
|
|
1
|
|
EOF
|
|
echo "SELECT NumVotes FROM PackageBases WHERE Name = '"'"'foobar'"'"';" | \
|
|
sqlite3 aur.db >actual &&
|
|
test_cmp expected actual
|
|
'
|
|
|
|
test_expect_success "Vote for a package base twice." '
|
|
test_must_fail \
|
|
env SSH_ORIGINAL_COMMAND="vote foobar" AUR_USER=user AUR_PRIVILEGED=0 \
|
|
cover "$GIT_SERVE" 2>&1 &&
|
|
cat >expected <<-EOF &&
|
|
3|1
|
|
EOF
|
|
echo "SELECT PackageBaseID, UsersID FROM PackageVotes;" | \
|
|
sqlite3 aur.db >actual &&
|
|
test_cmp expected actual &&
|
|
cat >expected <<-EOF &&
|
|
1
|
|
EOF
|
|
echo "SELECT NumVotes FROM PackageBases WHERE Name = '"'"'foobar'"'"';" | \
|
|
sqlite3 aur.db >actual &&
|
|
test_cmp expected actual
|
|
'
|
|
|
|
test_expect_success "Remove vote from a package base." '
|
|
SSH_ORIGINAL_COMMAND="unvote foobar" AUR_USER=user AUR_PRIVILEGED=0 \
|
|
cover "$GIT_SERVE" 2>&1 &&
|
|
cat >expected <<-EOF &&
|
|
EOF
|
|
echo "SELECT PackageBaseID, UsersID FROM PackageVotes;" | \
|
|
sqlite3 aur.db >actual &&
|
|
test_cmp expected actual &&
|
|
cat >expected <<-EOF &&
|
|
0
|
|
EOF
|
|
echo "SELECT NumVotes FROM PackageBases WHERE Name = '"'"'foobar'"'"';" | \
|
|
sqlite3 aur.db >actual &&
|
|
test_cmp expected actual
|
|
'
|
|
|
|
test_expect_success "Try to remove the vote again." '
|
|
test_must_fail \
|
|
env SSH_ORIGINAL_COMMAND="unvote foobar" \
|
|
AUR_USER=user AUR_PRIVILEGED=0 \
|
|
cover "$GIT_SERVE" 2>&1 &&
|
|
cat >expected <<-EOF &&
|
|
EOF
|
|
echo "SELECT PackageBaseID, UsersID FROM PackageVotes;" | \
|
|
sqlite3 aur.db >actual &&
|
|
test_cmp expected actual &&
|
|
cat >expected <<-EOF &&
|
|
0
|
|
EOF
|
|
echo "SELECT NumVotes FROM PackageBases WHERE Name = '"'"'foobar'"'"';" | \
|
|
sqlite3 aur.db >actual &&
|
|
test_cmp expected actual
|
|
'
|
|
|
|
test_done
|