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 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
|
#!perl
use strict;
BEGIN{ if (not $] < 5.006) { require warnings; warnings->import } }
select(STDERR); $|=1;
select(STDOUT); $|=1;
use Test::More;
use lib 't/lib';
use MockCPANDist;
use Helper;
use Frontend;
#--------------------------------------------------------------------------#
# Fixtures
#--------------------------------------------------------------------------#
my %mock_dist_info = (
pretty_id => "PLACEHOLDER",
prereq_pm => {},
author_id => "JOHNQP",
author_fullname => "John Q. Public",
);
my %standard_case_info = (
name => "t-Fail",
grade => "fail",
phase => "test",
command => "make test",
);
my @cases = (
{
label => "proper distribution name (tar.gz)",
pretty_id => "JOHNQP/Bogus-Module-1.21.tar.gz",
will_send => 1,
},
{
label => "proper distribution name (tar.bz2)",
pretty_id => "JOHNQP/Bogus-Module-1.22.tar.gz",
will_send => 1,
},
{
label => "proper distribution name (tgz)",
pretty_id => "JOHNQP/Bogus-Module-1.23.tgz",
will_send => 1,
},
{
label => "proper distribution name (zip)",
pretty_id => "JOHNQP/Bogus-Module-1.24.zip",
will_send => 1,
},
{
label => "proper distribution name (ZIP)",
pretty_id => "JOHNQP/Bogus-Module-1.25.ZIP",
will_send => 1,
},
{
label => "proper distribution name (v1.23)",
pretty_id => "JOHNQP/Bogus-Module-v1.26.tgz",
will_send => 1,
},
{
label => "proper distribution name (1.2_01)",
pretty_id => "JOHNQP/Bogus-Module-1.2_01.tgz",
will_send => 1,
},
{
label => "proper distribution name (v1.2a)",
pretty_id => "JOHNQP/Bogus-Module-v1.2a.tgz",
will_send => 1,
},
{
label => "proper distribution name (v1.2_01)",
pretty_id => "JOHNQP/Bogus-Module-v1.2_02.tgz",
will_send => 1,
},
{
label => "missing extension",
pretty_id => "JOHNQP/Bogus-Module-1.31",
will_send => 0,
},
{
label => "missing version",
pretty_id => "JOHNQP/Bogus-Module.tgz",
will_send => 0,
},
{
label => "raw pm file",
pretty_id => "JOHNQP/Module.pm",
will_send => 0,
},
);
plan tests => 2 + test_fake_config_plan()
+ (1 + test_dispatch_plan()) * @cases;
#--------------------------------------------------------------------------#
# tests
#--------------------------------------------------------------------------#
require_ok('CPAN::Reporter');
require_ok('CPAN::Reporter::History');
test_fake_config();
for my $case ( @cases ) {
$case->{dist} = MockCPANDist->new( %mock_dist_info );
$case->{dist}{pretty_id} = $case->{pretty_id};
$case->{$_} = $standard_case_info{$_} for keys %standard_case_info;
test_dispatch( $case, will_send => $case->{will_send} );
my $hist_grade = $case->{will_send} ? 'FAIL' : 'DISCARD';
ok( scalar CPAN::Reporter::History::have_tested(
dist => $case->{dist}->base_id,
grade => $hist_grade,
),
$case->{dist}->pretty_id . " seen in history as $hist_grade"
);
}
|