blob: 545ede1eb483ba5cc565b0c31b348730cc0adb04 (
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
53
54
55
56
|
#!/usr/bin/perl
# package "a" is split into "b" and "c",
# where "b" obsoletes/provides "a" and requires "c"
# "c" conflicts with "a" (but can't obsolete it)
#
# package "d" requires "a"
use strict;
use lib '.', 't';
use helper;
use urpm::util;
use urpm::cfg;
use Test::More 'no_plan';
need_root_and_prepare();
my $name = 'obsolete-and-conflict';
urpmi_addmedia("$name $::pwd/media/$name");
test1();
test_with_ad('b c', 'b c d');
test_with_ad('--split-level 1 b c', 'b c d'); # perl-URPM fix for #31969 fixes this too ("d" used to be removed without asking)
# below need promotion of "b" (obsoleting "a") to work
test_with_ad('--auto c', 'b c d');
sub test1 {
urpmi('a');
check_installed_names('a');
test_urpmi("b c", sprintf(<<'EOF', urpm::cfg::get_arch()));
1/2: c
2/2: b
removing package a-1-1.%s
EOF
check_installed_and_remove('b', 'c');
}
sub test_with_ad {
my ($para, $wanted) = @_;
urpmi('a d');
check_installed_names('a', 'd');
urpmi($para);
check_installed_and_remove(split ' ', $wanted);
}
sub test_urpmi {
my ($para, $wanted) = @_;
my $s = run_urpm_cmd("urpmi $para");
$s =~ s/\s*#{40}#*//g;
$s =~ s/.*\nPreparing\.\.\.\n//s;
ok($s eq $wanted, "$wanted in $s");
}
|