summaryrefslogtreecommitdiffstats
path: root/t/superuser--obsolete-and-conflict.t
blob: 1494cd9ae5bb436fbe64b6711f7018a13b73e539 (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
57
#!/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 Expect;
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");    

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_names('b', 'c');

urpme('b c');

urpmi('a d');
check_installed_names('a', 'd');
urpmi('b c');
check_installed_names('b', 'c', 'd');

urpme('b c d');

urpmi('a d');
check_installed_names('a', 'd');
urpmi('--split-level 1 b c');
# argh, d is removed :-(
#check_installed_names('b', 'c', 'd');


sub test_urpmi {
    my ($para, $wanted) = @_;
    my $urpmi = urpmi_cmd();
    my $s = `$urpmi $para`;

    $s =~ s/\s*#{40}#*//g;
    $s =~ s/.*\nPreparing\.\.\.\n//s;

    ok($s eq $wanted, "$wanted in $s");
}