summaryrefslogtreecommitdiffstats
path: root/t/01history.t
blob: 92175fc5baf879f2c9eaad4301d0732873e8fb72 (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
#!/usr/bin/perl

# $Id: 01distribconf.t 56934 2006-08-21 10:16:29Z nanardon $

use strict;
use Test::More;
use MDV::Distribconf;

my @testdpath = grep { ! /SRPMS/ } glob('testdata/history/*/*/*');

plan tests => 6 * scalar(@testdpath);

foreach my $path (@testdpath) {
    ok(
        my $dconf = MDV::Distribconf->new($path),
        "Can get new MDV::Distribconf"
    );
    ok($dconf->load(), "can load $path");
    ok($dconf->listmedia(), "can list media");
    SKIP: {
        my $arch = $dconf->getvalue(undef, "arch");
        skip "undefined arch for in case", 2 unless(defined($arch));
    like($arch, '/.+/', "can get arch");
    like($dconf->getvalue(undef, "platform"), "/^$arch" . '-(mandriva|mandrake)-linux-gnu$/', "can get arch");
    }
    my $foundhd = 0;
    my $medias = 0;
    foreach my $m ($dconf->listmedia()) {
        $medias++;
        if (-f $dconf->getfullpath($m, 'hdlist')) {
            $foundhd++;
        } else {
            print STDERR "$m " . $dconf->getfullpath($m, 'hdlist') . " not found\n";
        }
    }
    SKIP: {
        skip "Test not completed", 1 unless(0);
    is($foundhd, $medias, "All hdlists can be found");
    }
}