mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
Since commit 09cb61a
(schema: Remove invalid default values for TEXT
columns, 2017-04-15), the PackageBases.FlaggerComment field no longer
has a default value. Initialize this field explicitly whenever a new row
is added to the PackageBases table.
Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
33 lines
1.5 KiB
Bash
Executable file
33 lines
1.5 KiB
Bash
Executable file
#!/bin/sh
|
|
|
|
test_description='notify tests'
|
|
|
|
. ./setup.sh
|
|
|
|
test_expect_success 'Test out-of-date notifications.' '
|
|
cat <<-EOD | sqlite3 aur.db &&
|
|
INSERT INTO PackageBases (ID, Name, MaintainerUID, SubmittedTS, ModifiedTS, FlaggerComment) VALUES (1, "foobar", 1, 0, 0, "");
|
|
INSERT INTO PackageBases (ID, Name, MaintainerUID, SubmittedTS, ModifiedTS, FlaggerComment) VALUES (2, "foobar2", 2, 0, 0, "");
|
|
INSERT INTO PackageBases (ID, Name, MaintainerUID, SubmittedTS, ModifiedTS, FlaggerComment) VALUES (3, "foobar3", NULL, 0, 0, "");
|
|
INSERT INTO PackageBases (ID, Name, MaintainerUID, SubmittedTS, ModifiedTS, FlaggerComment) VALUES (4, "foobar4", 1, 0, 0, "");
|
|
INSERT INTO PackageComaintainers (PackageBaseID, UsersID, Priority) VALUES (1, 2, 1);
|
|
INSERT INTO PackageComaintainers (PackageBaseID, UsersID, Priority) VALUES (1, 4, 2);
|
|
INSERT INTO PackageComaintainers (PackageBaseID, UsersID, Priority) VALUES (2, 3, 1);
|
|
INSERT INTO PackageComaintainers (PackageBaseID, UsersID, Priority) VALUES (2, 5, 2);
|
|
INSERT INTO PackageComaintainers (PackageBaseID, UsersID, Priority) VALUES (3, 4, 1);
|
|
EOD
|
|
>sendmail.out &&
|
|
"$NOTIFY" flag 1 1 &&
|
|
cat <<-EOD >expected &&
|
|
Subject: AUR Out-of-date Notification for foobar
|
|
To: tu@localhost
|
|
Subject: AUR Out-of-date Notification for foobar
|
|
To: user2@localhost
|
|
Subject: AUR Out-of-date Notification for foobar
|
|
To: user@localhost
|
|
EOD
|
|
grep "^\(Subject\|To\)" sendmail.out >sendmail.parts &&
|
|
test_cmp sendmail.parts expected
|
|
'
|
|
|
|
test_done
|