From 94b5e394073642314e8aa0023ceb65a1c31b0f90 Mon Sep 17 00:00:00 2001 From: Aaron Griffin Date: Mon, 5 Mar 2007 18:06:45 +0000 Subject: Added this test to check the XferCommand functionality --- pactest/tests/xfercommand001.py | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 pactest/tests/xfercommand001.py diff --git a/pactest/tests/xfercommand001.py b/pactest/tests/xfercommand001.py new file mode 100644 index 00000000..a9c41d8c --- /dev/null +++ b/pactest/tests/xfercommand001.py @@ -0,0 +1,20 @@ +self.description = "Quick check for using XferCommand" + +# this setting forces us to download packages +self.cachepkgs = False +#wget doesn't support file:// urls. curl does +self.option['xfercommand'] = ['/usr/bin/curl %u > %o'] + +numpkgs = 10 +pkgnames = [] +for i in xrange(numpkgs): + name = "pkg_%s" % i + pkgnames.append(name) + p = pmpkg(name) + p.files = ["usr/bin/foo-%s" % i] + self.addpkg2db("sync", p) + +self.args = "-S %s" % ' '.join(pkgnames) + +for name in pkgnames: + self.addrule("PKG_EXIST=%s" % name) -- cgit v1.2.3-24-g4f1b