summaryrefslogtreecommitdiffstats
path: root/RPM4/t/09hdlist.t
blob: 17d32f483704dcb514f107f27576b08ee8eae526 (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
# $Id$

use strict;
use Test::More tests => 6;
use FindBin qw($Bin);
use File::Temp qw(tempdir);
use File::Glob;

my $testdir = tempdir( CLEANUP => 1 );

use_ok('RPM4');
use_ok('RPM4::Index');

my @headers;
my $callback = sub { my %arg = @_; defined($arg{header}) and push(@headers, $arg{header}); };

my @rpms = <$Bin/*.rpm>;

RPM4::parserpms(callback => $callback, rpms => [ @rpms ]);
ok(scalar(@headers) == 4, "RPM4::parserpms works");

ok(RPM4::Index::buildhdlist(hdlist => "$testdir/hdlist.cz", rpms => [ @rpms ]), 
    "Creating a hdlist");
ok(RPM4::Index::buildsynthesis(synthesis => "$testdir/synthesis.hdlist.cz", rpms => [ @rpms ]), 
    "Creating a synthesis");
ok(RPM4::Index::buildindex(list => "$testdir/list", rpms => [ @rpms ]), 
    "Creating a list file");