mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
Important note: Python tests will repeatedly clear out tables that they test against; for this reason, one should always run the shell tests first. The __init__.py file is necessary for coverage to collect data from the tests being run. At this point in FastAPI development, I'd like to encourage a few things going forward: 1. Any time you contribute to the FastAPI codebase, you **must** maintain equal or increased coverage on the overall source. Developers are highly appreciated for adding tests in your specific domain of addition or modification that may be missing coverage. Our goal is 100% coverage, and all newly added files **must** have 100% coverage through tests. 2. All source should be formatted with the autopep8 tool and kept within an 80 column width, with the exception of HTML templates. Signed-off-by: Kevin Morris <kevr@0cost.org>
227 lines
7.6 KiB
Bash
227 lines
7.6 KiB
Bash
TOPLEVEL="$(cd "$(dirname "$0")/.." && pwd)"
|
|
|
|
. "$TOPLEVEL/test/sharness.sh"
|
|
|
|
# Configure python search path.
|
|
PYTHONPATH="$TOPLEVEL"
|
|
export PYTHONPATH
|
|
|
|
# Configure paths to the Git interface scripts.
|
|
GIT_AUTH="$TOPLEVEL/aurweb/git/auth.py"
|
|
GIT_SERVE="$TOPLEVEL/aurweb/git/serve.py"
|
|
GIT_UPDATE="$TOPLEVEL/aurweb/git/update.py"
|
|
MKPKGLISTS="$TOPLEVEL/aurweb/scripts/mkpkglists.py"
|
|
TUVOTEREMINDER="$TOPLEVEL/aurweb/scripts/tuvotereminder.py"
|
|
PKGMAINT="$TOPLEVEL/aurweb/scripts/pkgmaint.py"
|
|
USERMAINT="$TOPLEVEL/aurweb/scripts/usermaint.py"
|
|
AURBLUP="$TOPLEVEL/aurweb/scripts/aurblup.py"
|
|
NOTIFY="$TOPLEVEL/aurweb/scripts/notify.py"
|
|
RENDERCOMMENT="$TOPLEVEL/aurweb/scripts/rendercomment.py"
|
|
|
|
# We reuse some of these scripts when running `env`, so add
|
|
# it to PATH; that way, env can pick up the script when loaded.
|
|
PATH="${PATH}:${TOPLEVEL}/test/scripts"
|
|
export PATH
|
|
|
|
# Create the configuration file and a dummy notification script.
|
|
cat >config <<-EOF
|
|
[database]
|
|
backend = sqlite
|
|
name = aur.db
|
|
|
|
[options]
|
|
aur_location = https://aur.archlinux.org
|
|
aur_request_ml = aur-requests@archlinux.org
|
|
enable-maintenance = 0
|
|
maintenance-exceptions = 127.0.0.1
|
|
commit_uri = https://aur.archlinux.org/cgit/aur.git/log/?h=%s&id=%s
|
|
localedir = $TOPLEVEL/web/locale/
|
|
|
|
[notifications]
|
|
notify-cmd = $NOTIFY
|
|
sendmail = ./sendmail.sh
|
|
sender = notify@aur.archlinux.org
|
|
reply-to = noreply@aur.archlinux.org
|
|
|
|
[auth]
|
|
valid-keytypes = ssh-rsa ssh-dss ecdsa-sha2-nistp256 ecdsa-sha2-nistp384 ecdsa-sha2-nistp521 ssh-ed25519
|
|
username-regex = [a-zA-Z0-9]+[.\-_]?[a-zA-Z0-9]+$
|
|
git-serve-cmd = $GIT_SERVE
|
|
ssh-options = restrict
|
|
|
|
[serve]
|
|
repo-path = ./aur.git/
|
|
repo-regex = [a-z0-9][a-z0-9.+_-]*$
|
|
git-shell-cmd = ./git-shell.sh
|
|
git-update-cmd = ./update.sh
|
|
ssh-cmdline = ssh aur@aur.archlinux.org
|
|
|
|
[update]
|
|
max-blob-size = 256000
|
|
|
|
[aurblup]
|
|
db-path = $(pwd)/sync/
|
|
sync-dbs = test
|
|
server = file://$(pwd)/remote/
|
|
|
|
[mkpkglists]
|
|
packagesfile = packages.gz
|
|
pkgbasefile = pkgbase.gz
|
|
userfile = users.gz
|
|
EOF
|
|
|
|
cat >sendmail.sh <<-\EOF
|
|
#!/bin/sh
|
|
cat >>sendmail.out
|
|
EOF
|
|
chmod +x sendmail.sh
|
|
|
|
cat >git-shell.sh <<-\EOF
|
|
#!/bin/sh
|
|
echo $AUR_USER
|
|
echo $AUR_PKGBASE
|
|
echo $GIT_NAMESPACE
|
|
EOF
|
|
chmod +x git-shell.sh
|
|
|
|
cat >update.sh <<-\EOF
|
|
#!/bin/sh
|
|
echo $AUR_USER
|
|
echo $AUR_PKGBASE
|
|
EOF
|
|
chmod +x update.sh
|
|
|
|
AUR_CONFIG=config
|
|
export AUR_CONFIG
|
|
|
|
# Create SSH public keys which will be used by the test users later.
|
|
AUTH_KEYTYPE_USER=ssh-rsa
|
|
AUTH_KEYTEXT_USER=AAAAB3NzaC1yc2EAAAADAQABAAABAQCeUafDK4jqUiRHNQfwHcYjBKLZ4Rc1sNUofHApBP6j91nIvDHZe2VUqeBmFUhBz7kXK4VbXD9nlHMun2HeshL8hXnMzymZ8Wk7+IKefj61pajJkIdttw9Tnayfg7uhg5RbFy9zpEjmGjnIVjSzOXKCwppNT+CNujpKM5FD8gso/Z+l3fD+IwrPwS1SzF1Z99nqI9n2FM/JWZqluvTqnW9WdAvBDfutXxp0R5ZiLI5TAKL2Ssp5rpL70pkLXhv+9sK545zKKlXUFmw6Pi2iVBdqdRsk9ocl49dLiNIh8CYDCO3CRQn+8EnpBhTor2TKQxGJI3mzoBwWJJxoKhD/XlYJ
|
|
AUTH_FINGERPRINT_USER=SHA256:F/OFtYAy0JCytAGUi4RUZnOsThhQtFMK7fH1YvFBCpo
|
|
|
|
AUTH_KEYTYPE_TU=ssh-rsa
|
|
AUTH_KEYTEXT_TU=AAAAB3NzaC1yc2EAAAADAQABAAABAQC4Q2Beg6jf2r1LZ4vwT5y10dK8+/c5RaNyTwv77wF2OSLXh32xW0ovhE2lW2gqoakdGsxgM2fTtqMTl29WOsAxlGF7x9XbWhFXFUT88Daq1fAeuihkiRjfBbInSW/WcrFZ+biLBch67addtfkkd4PmAafDeeCtszAXqza+ltBG1oxAGiTXgI3LOhA1/GtLLxsi5sPUO3ZlhvwDn4Sy0aXYx8l9hop/PU4Cjn82hyRa9r+SRxQ3KtjKxcVMnZ8IyXOrBwXTukgSBR/6nSdEmO0JPkYUFuNwh3UGFKuNkrPguL5T+4YDym6czYmZJzQ7NNl2pLKYmYgBwBe5rORlWfN5
|
|
AUTH_FINGERPRINT_TU=SHA256:xQGC6j/U1Q3NDXLl04pm+Shr1mjYUXbGMUzlm9vby4k
|
|
|
|
AUTH_KEYTYPE_MISSING=sha-rsa
|
|
AUTH_KEYTEXT_MISSING=AAAAB3NzaC1yc2EAAAADAQABAAABAQC9UTpssBunuTBCT3KFtv+yb+cN0VmI2C9O9U7wHlkEZWxNBK8is6tnDHXBxRuvRk0LHILkTidLLFX22ZF0+TFgSz7uuEvGZVNpa2Fn2+vKJJYMvZEvb/f8VHF5/Jddt21VOyu23royTN/duiT7WIZdCtEmq5C9Y43NPfsB8FbUc+FVSYT2Lq7g1/bzvFF+CZxwCrGjC3qC7p3pshICfFR8bbWgRN33ClxIQ7MvkcDtfNu38dLotJqdfEa7NdQgba5/S586f1A4OWKc/mQJFyTaGhRBxw/cBSjqonvO0442VYLHFxlrTHoUunKyOJ8+BJfKgjWmfENC9ESY3mL/IEn5
|
|
AUTH_FINGERPRINT_MISSING=SHA256:uB0B+30r2WA1TDMUmFcaEBjosjnFGzn33XFhiyvTL9w
|
|
|
|
# Setup fake SSH environment.
|
|
SSH_CLIENT='1.2.3.4 1234 22'
|
|
SSH_CONNECTION='1.2.3.4 1234 4.3.2.1 22'
|
|
SSH_TTY=/dev/pts/0
|
|
export SSH_CLIENT SSH_CONNECTION SSH_TTY
|
|
|
|
# Initialize the test database.
|
|
python -m aurweb.initdb --no-alembic
|
|
|
|
echo "INSERT INTO Users (ID, UserName, Passwd, Email, LangPreference, AccountTypeID) VALUES (1, 'user', '!', 'user@localhost', 'en', 1);" | sqlite3 aur.db
|
|
echo "INSERT INTO Users (ID, UserName, Passwd, Email, LangPreference, AccountTypeID) VALUES (2, 'tu', '!', 'tu@localhost', 'en', 2);" | sqlite3 aur.db
|
|
echo "INSERT INTO Users (ID, UserName, Passwd, Email, LangPreference, AccountTypeID) VALUES (3, 'dev', '!', 'dev@localhost', 'en', 3);" | sqlite3 aur.db
|
|
echo "INSERT INTO Users (ID, UserName, Passwd, Email, LangPreference, AccountTypeID) VALUES (4, 'user2', '!', 'user2@localhost', 'en', 1);" | sqlite3 aur.db
|
|
echo "INSERT INTO Users (ID, UserName, Passwd, Email, LangPreference, AccountTypeID) VALUES (5, 'user3', '!', 'user3@localhost', 'en', 1);" | sqlite3 aur.db
|
|
echo "INSERT INTO Users (ID, UserName, Passwd, Email, LangPreference, AccountTypeID) VALUES (6, 'user4', '!', 'user4@localhost', 'en', 1);" | sqlite3 aur.db
|
|
echo "INSERT INTO Users (ID, UserName, Passwd, Email, LangPreference, AccountTypeID) VALUES (7, 'tu2', '!', 'tu2@localhost', 'en', 2);" | sqlite3 aur.db
|
|
echo "INSERT INTO Users (ID, UserName, Passwd, Email, LangPreference, AccountTypeID) VALUES (8, 'tu3', '!', 'tu3@localhost', 'en', 2);" | sqlite3 aur.db
|
|
echo "INSERT INTO Users (ID, UserName, Passwd, Email, LangPreference, AccountTypeID) VALUES (9, 'tu4', '!', 'tu4@localhost', 'en', 2);" | sqlite3 aur.db
|
|
|
|
echo "INSERT INTO SSHPubKeys (UserID, Fingerprint, PubKey) VALUES (1, '$AUTH_FINGERPRINT_USER', '$AUTH_KEYTYPE_USER $AUTH_KEYTEXT_USER');" | sqlite3 aur.db
|
|
echo "INSERT INTO SSHPubKeys (UserID, Fingerprint, PubKey) VALUES (2, '$AUTH_FINGERPRINT_TU', '$AUTH_KEYTYPE_TU $AUTH_KEYTEXT_TU');" | sqlite3 aur.db
|
|
|
|
echo "INSERT INTO Bans (IPAddress, BanTS) VALUES ('1.3.3.7', 0);" | sqlite3 aur.db
|
|
|
|
echo "INSERT INTO PackageBlacklist (Name) VALUES ('forbidden');" | sqlite3 aur.db
|
|
echo "INSERT INTO OfficialProviders (Name, Repo, Provides) VALUES ('official', 'core', 'official');" | sqlite3 aur.db
|
|
|
|
# Initialize a Git repository and test packages.
|
|
GIT_AUTHOR_EMAIL=author@example.com
|
|
GIT_AUTHOR_NAME='A U Thor'
|
|
GIT_COMMITTER_EMAIL=committer@example.com
|
|
GIT_COMMITTER_NAME='C O Mitter'
|
|
export GIT_AUTHOR_EMAIL GIT_AUTHOR_NAME
|
|
export GIT_COMMITTER_EMAIL GIT_COMMITTER_NAME
|
|
|
|
(
|
|
mkdir aur.git
|
|
cd aur.git
|
|
git init -q
|
|
|
|
git checkout -q --orphan refs/namespaces/foobar/refs/heads/master
|
|
|
|
cat >PKGBUILD <<-EOF
|
|
pkgname=foobar
|
|
pkgver=1
|
|
pkgrel=1
|
|
pkgdesc='aurweb test package.'
|
|
url='https://aur.archlinux.org/'
|
|
license=('GPL')
|
|
arch=('any')
|
|
depends=('python-pygit2')
|
|
source=()
|
|
md5sums=()
|
|
|
|
package() {
|
|
echo 'Hello world!'
|
|
}
|
|
EOF
|
|
|
|
cat >.SRCINFO <<-EOF
|
|
pkgbase = foobar
|
|
pkgdesc = aurweb test package.
|
|
pkgver = 1
|
|
pkgrel = 1
|
|
url = https://aur.archlinux.org/
|
|
arch = any
|
|
license = GPL
|
|
depends = python-pygit2
|
|
|
|
pkgname = foobar
|
|
EOF
|
|
|
|
git add PKGBUILD .SRCINFO
|
|
git commit -q -m 'Initial import'
|
|
|
|
sed 's/\(pkgrel.*\)1/\12/' PKGBUILD >PKGBUILD.new
|
|
sed 's/\(pkgrel.*\)1/\12/' .SRCINFO >.SRCINFO.new
|
|
mv PKGBUILD.new PKGBUILD
|
|
mv .SRCINFO.new .SRCINFO
|
|
git commit -q -am 'Bump pkgrel'
|
|
|
|
git checkout -q --orphan refs/namespaces/foobar2/refs/heads/master
|
|
|
|
cat >PKGBUILD <<-EOF
|
|
pkgname=foobar2
|
|
pkgver=1
|
|
pkgrel=1
|
|
pkgdesc='aurweb test package.'
|
|
url='https://aur.archlinux.org/'
|
|
license=('MIT')
|
|
arch=('any')
|
|
depends=('python-pygit2')
|
|
source=()
|
|
md5sums=()
|
|
|
|
package() {
|
|
echo 'Hello world!'
|
|
}
|
|
EOF
|
|
|
|
cat >.SRCINFO <<-EOF
|
|
pkgbase = foobar2
|
|
pkgdesc = aurweb test package.
|
|
pkgver = 1
|
|
pkgrel = 1
|
|
url = https://aur.archlinux.org/
|
|
arch = any
|
|
license = MIT
|
|
depends = python-pygit2
|
|
|
|
pkgname = foobar2
|
|
EOF
|
|
|
|
git add PKGBUILD .SRCINFO
|
|
git commit -q -m 'Initial import'
|
|
|
|
git checkout -q refs/namespaces/foobar/refs/heads/master
|
|
)
|