blob: 91b4c9c9692b01ed72661c3c5f61965179fc8da7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
#!/usr/bin/perl
use strict;
use lib '.', 't';
use helper;
use urpm::util;
use Test::More 'no_plan';
need_root_and_prepare();
my $medium_name = 'README-urpmi';
urpmi_addmedia("$medium_name $::pwd/media/$medium_name");
test_a();
test_b();
test_c();
test_d();
sub test_a {
test_urpmi('a', 'installing/upgrading a');
check_installed_and_remove('a');
}
sub test_b {
system_("rpm --root $::pwd/root -i media/$medium_name/b-1-*.rpm");
test_urpmi('b-2', 'upgrading b', 'upgrading b 2');
test_urpmi('b', 'upgrading b');
check_installed_and_remove('b');
}
sub test_c {
test_urpmi('c', 'installing c');
check_installed_and_remove('c');
}
sub test_d {
test_urpmi('d', 'installing/upgrading d');
test_urpmi('d_', 'installing d_'); # what is the valid answer?
check_installed_and_remove('d_');
}
sub test_urpmi {
my ($para, @wanted) = @_;
my $s = run_urpm_cmd("urpmi $para");
print $s;
my @msgs = $s =~ /\nMore information on package[^\n]*\n(.*?)\n\n-{70}/msg;
my $msg = join(" -- ", sort @msgs);
my $wanted = join(" -- ", sort @wanted);
ok($msg eq $wanted, "wanted:$wanted, got:$msg");
}
|