CPAN-Site

 view release on metacpan or  search on metacpan

t/30cpan_path.t  view on Meta::CPAN

#!/usr/bin/env perl
# Verify generated CHECKCUMS has an appropriate 'cpan_path' member
#-------------------------------------------------------------------------------
use strict;
use warnings;

use Test::More;

# This tests attempts to load the maintainers file from cpan,
# which is blocked by cpantesters... which makes all its nice
# regression tests fail.
plan skip_all => "Running in cpantesters"
    if $ENV{NO_NETWORK_TESTING};

plan tests => 4;

use FindBin               qw($Bin);
use Test::TempDir::Tiny   qw(tempdir);
use File::Spec::Functions qw(catdir catfile);
use File::Path            qw(make_path);
use File::Copy            qw(copy);

# use Log::Report 'cpan-site', mode => 'DEBUG';

use_ok 'CPAN::Site::Index';
CPAN::Site::Index->import('cpan_index');

test_cpan_path_generation();

exit;

#-------------------------------------------------------------------------------

sub test_cpan_path_generation {
    my $distro = 'Distro-With-Multi-Package-Module.tar.gz';

    my $tmpdir = tempdir();
    $tmpdir && -d $tmpdir or die "Something went horribly wrong!";

    my $mycpan  = catdir($tmpdir, 'site');
    my $distdir = catdir($mycpan, qw(authors id L LO LOCAL));

    make_path($distdir)
        or return diag "Failed to create temp directory";

    copy(catdir($Bin, 'test_data', $distro), $distdir)
        or return diag "Failed to copy distribution to temp directory: $!";

    #XXX Jason: I don't know if there's a way to avoid pulling data
	#XXX from cpan.org in this test or not...
    cpan_index($mycpan, 'https://cpan.org/',
		lazy => 0, fallback => 0, undefs => 0,
	);

    -r catfile($distdir, "CHECKSUMS")
        or return diag "No CHECKSUMS file";

    open my $fh, '<', catfile($distdir, "CHECKSUMS")
        or return diag "Failed to open CHECKSUMS";

    read $fh, my $cksum, -s $fh
        or return diag "Failed to read CHECKSUMS";
    close $fh;

    $cksum = eval $cksum
        or return diag "Failed to eval CHECKSUMS";

    isa_ok $cksum, 'HASH';
	isa_ok $cksum->{$distro}, 'HASH';
    is +($cksum->{$distro}->{cpan_path} // ''), 'L/LO/LOCAL';
}



( run in 1.827 second using v1.01-cache-2.11-cpan-99c4e6809bf )