From 39da0198cd132bbb72be234b584bc62c88db33b6 Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Tue, 3 Jun 2008 21:22:49 -0500 Subject: Add PGP signature support to pactest Allow pkg.pgpsig to end up in the created sync databases. Signed-off-by: Dan McGee --- test/pacman/pmdb.py | 4 ++++ test/pacman/pmpkg.py | 1 + 2 files changed, 5 insertions(+) (limited to 'test') diff --git a/test/pacman/pmdb.py b/test/pacman/pmdb.py index b31498a7..fefb135a 100755 --- a/test/pacman/pmdb.py +++ b/test/pacman/pmdb.py @@ -150,6 +150,8 @@ class pmdb(object): pkg.size = int(fd.readline().strip("\n")) elif line == "%MD5SUM%": pkg.md5sum = fd.readline().strip("\n") + elif line == "%PGPSIG%": + pkg.pgpsig = fd.readline().strip("\n") elif line == "%REPLACES%": pkg.replaces = _getsection(fd) elif line == "%DEPENDS%": @@ -241,6 +243,8 @@ class pmdb(object): data.append(_mksection("CSIZE", pkg.csize)) if pkg.md5sum: data.append(_mksection("MD5SUM", pkg.md5sum)) + if pkg.pgpsig: + data.append(_mksection("PGPSIG", pkg.pgpsig)) if data: data.append("") filename = os.path.join(path, "desc") diff --git a/test/pacman/pmpkg.py b/test/pacman/pmpkg.py index 73156ab2..ec51e5d4 100755 --- a/test/pacman/pmpkg.py +++ b/test/pacman/pmpkg.py @@ -47,6 +47,7 @@ class pmpkg(object): self.csize = 0 self.reason = 0 self.md5sum = "" # sync only + self.pgpsig = "" # sync only self.replaces = [] self.depends = [] self.optdepends = [] -- cgit v1.2.3-70-g09d2 From cedc63375758cf1c2a821dd5a78d960b34b44f28 Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Sun, 7 Dec 2008 11:58:44 -0600 Subject: Add a few pactests for PGP integration Signed-off-by: Dan McGee --- test/pacman/tests/sign001.py | 9 +++++++++ test/pacman/tests/smoke004.py | 11 +++++++++++ 2 files changed, 20 insertions(+) create mode 100644 test/pacman/tests/sign001.py create mode 100644 test/pacman/tests/smoke004.py (limited to 'test') diff --git a/test/pacman/tests/sign001.py b/test/pacman/tests/sign001.py new file mode 100644 index 00000000..447cea1e --- /dev/null +++ b/test/pacman/tests/sign001.py @@ -0,0 +1,9 @@ +self.description = "Add a signature to a package DB" + +sp = pmpkg("pkg1") +sp.pgpsig = "asdfasdfsdfasdfsdafasdfsdfasd" +self.addpkg2db("sync", sp) + +self.args = "-Ss" + +self.addrule("PACMAN_RETCODE=0") diff --git a/test/pacman/tests/smoke004.py b/test/pacman/tests/smoke004.py new file mode 100644 index 00000000..1f9b883d --- /dev/null +++ b/test/pacman/tests/smoke004.py @@ -0,0 +1,11 @@ +self.description = "Read a package DB with several PGP signatures" + +for i in range(1000): + sp = pmpkg("pkg%03d" % i) + sp.desc = "test description for package %d" % i + sp.pgpsig = "asdfasdfsdfasdfsdafasdfsdfasd" + self.addpkg2db("sync", sp) + +self.args = "-Ss" + +self.addrule("PACMAN_RETCODE=0") -- cgit v1.2.3-70-g09d2