summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2007-09-27 12:14:19 +0000
committerPascal Rigaux <pixel@mandriva.com>2007-09-27 12:14:19 +0000
commitbca32182ad43ddbcab36eefb467822f14fd77cef (patch)
treec987a7bee49ac7595cf2b8c1d5f56e3672f76b1e
parent5d9dc5e7611430e4b3fe7f16c0060cd47c31fa2e (diff)
downloadurpmi-bca32182ad43ddbcab36eefb467822f14fd77cef.tar
urpmi-bca32182ad43ddbcab36eefb467822f14fd77cef.tar.gz
urpmi-bca32182ad43ddbcab36eefb467822f14fd77cef.tar.bz2
urpmi-bca32182ad43ddbcab36eefb467822f14fd77cef.tar.xz
urpmi-bca32182ad43ddbcab36eefb467822f14fd77cef.zip
- move some test from superuser--media_info_dir.t into superuser--rpm.t
- add a test
-rw-r--r--t/data/SPECS/rpm-query-in-scriptlet.spec31
-rw-r--r--t/superuser--media_info_dir.t9
-rw-r--r--t/superuser--rpm.t25
3 files changed, 56 insertions, 9 deletions
diff --git a/t/data/SPECS/rpm-query-in-scriptlet.spec b/t/data/SPECS/rpm-query-in-scriptlet.spec
new file mode 100644
index 00000000..dc331998
--- /dev/null
+++ b/t/data/SPECS/rpm-query-in-scriptlet.spec
@@ -0,0 +1,31 @@
+Summary: x
+Name: rpm-query-in-scriptlet
+Version: 1
+Release: 1
+License: x
+Group: x
+Url: x
+BuildRoot: %{_tmppath}/%{name}
+
+%description
+x
+
+%install
+rm -rf %buildroot
+echo > list
+for i in sh rpm; do
+ bin=`which $i`
+ echo $bin >> list
+ ldd $bin | sed -e 's/^[ \t]*//' -e 's/.* => //' -e 's/ .*//' >> list
+done
+grep '/' list | (cd / ; cpio -pumd --dereference %buildroot)
+
+find %buildroot
+
+%post
+echo "RPMLOCK_NOWAIT is '$RPMLOCK_NOWAIT'"
+rpm -q foo
+true
+
+%files
+/*
diff --git a/t/superuser--media_info_dir.t b/t/superuser--media_info_dir.t
index 7ba9f0c9..7d2a18d2 100644
--- a/t/superuser--media_info_dir.t
+++ b/t/superuser--media_info_dir.t
@@ -26,8 +26,6 @@ sub rpm_v3 {
system_("rpm --root $::pwd/root -i --noscripts media/rpm-v3/*.i386.rpm");
check_installed_names(@names);
- rebuilddb(); # why here? well, why not
- check_installed_names(@names);
system_("rpm --root $::pwd/root -e --noscripts " . join(' ', @names));
is(`rpm -qa --root $::pwd/root`, '');
@@ -53,10 +51,3 @@ sub rpm_v3 {
is($arch, $wanted_arch, "$fullname should have arch $wanted_arch (found $arch)");
}
}
-
-sub rebuilddb {
- # testing rebuilddb (could be done elsewhere, but here is
- system_("rpm --root $::pwd/root --rebuilddb");
- my ($dir) = glob("$::pwd/root/var/lib/rpmrebuilddb*");
- is($dir, undef, "$dir should not be there");
-}
diff --git a/t/superuser--rpm.t b/t/superuser--rpm.t
new file mode 100644
index 00000000..4930d30d
--- /dev/null
+++ b/t/superuser--rpm.t
@@ -0,0 +1,25 @@
+#!/usr/bin/perl
+
+use strict;
+use lib '.', 't';
+use helper;
+use Test::More 'no_plan';
+
+my $name = 'rpm-query-in-scriptlet';
+
+need_root_and_prepare();
+test_rpm_query_in_scriptlet();
+
+sub test_rpm_query_in_scriptlet {
+ system_("rpm --root $::pwd/root -i media/$name/$name*.rpm --nodeps");
+ check_installed_names($name);
+ rebuilddb();
+ check_installed_names($name);
+}
+
+sub rebuilddb {
+ # testing rebuilddb (could be done elsewhere, but here is
+ system_("rpm --root $::pwd/root --rebuilddb");
+ my ($dir) = glob("$::pwd/root/var/lib/rpmrebuilddb*");
+ is($dir, undef, "$dir should not be there");
+}