[aur-dev] [PATCH 17/17] Add tests for aurblup

Lukas Fleischer lfleischer at archlinux.org
Mon Sep 26 07:25:01 UTC 2016


Signed-off-by: Lukas Fleischer <lfleischer at archlinux.org>
---
 test/setup.sh         |  6 ++++++
 test/t2400-aurblup.sh | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 59 insertions(+)
 create mode 100755 test/t2400-aurblup.sh

diff --git a/test/setup.sh b/test/setup.sh
index 622aab0..e379ada 100644
--- a/test/setup.sh
+++ b/test/setup.sh
@@ -14,6 +14,7 @@ GIT_UPDATE="$TOPLEVEL/git-interface/git-update.py"
 MKPKGLISTS="$TOPLEVEL/scripts/mkpkglists.py"
 TUVOTEREMINDER="$TOPLEVEL/scripts/tuvotereminder.py"
 PKGMAINT="$TOPLEVEL/scripts/pkgmaint.py"
+AURBLUP="$TOPLEVEL/scripts/aurblup.py"
 
 # Create the configuration file and a dummy notification script.
 cat >config <<-EOF
@@ -44,6 +45,11 @@ ssh-cmdline = ssh aur at 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
diff --git a/test/t2400-aurblup.sh b/test/t2400-aurblup.sh
new file mode 100755
index 0000000..708281c
--- /dev/null
+++ b/test/t2400-aurblup.sh
@@ -0,0 +1,53 @@
+#!/bin/sh
+
+test_description='aurblup tests'
+
+. ./setup.sh
+
+test_expect_success 'Test official provider update script.' '
+	mkdir -p remote/test/foobar-1.0-1 &&
+	cat <<-EOD >remote/test/foobar-1.0-1/desc &&
+	%FILENAME%
+	foobar-1.0-any.pkg.tar.xz
+
+	%NAME%
+	foobar
+
+	%VERSION%
+	1.0-1
+
+	%ARCH%
+	any
+	EOD
+	mkdir -p remote/test/foobar2-1.0-1 &&
+	cat <<-EOD >remote/test/foobar2-1.0-1/desc &&
+	%FILENAME%
+	foobar2-1.0-any.pkg.tar.xz
+
+	%NAME%
+	foobar2
+
+	%VERSION%
+	1.0-1
+
+	%ARCH%
+	any
+
+	%PROVIDES%
+	foobar3
+	foobar4
+	EOD
+	( cd remote/test && bsdtar -czf ../test.db * ) &&
+	mkdir sync &&
+	"$AURBLUP" &&
+	cat <<-EOD >expected &&
+	foobar|test|foobar
+	foobar2|test|foobar2
+	foobar2|test|foobar3
+	foobar2|test|foobar4
+	EOD
+	echo "SELECT Name, Repo, Provides FROM OfficialProviders ORDER BY Provides;" | sqlite3 aur.db >actual &&
+	test_cmp actual expected
+'
+
+test_done
-- 
2.10.0


More information about the aur-dev mailing list