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
|
#!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;
use Config;
#--------------------------------------------------------------------------#
# Fixtures
#--------------------------------------------------------------------------#
my $mock_dist = MockCPANDist->new(
pretty_id => "JOHNQP/Bogus-Module-1.23.tar.gz",
prereq_pm => {},
author_id => "JOHNQP",
author_fullname => "John Q. Public",
);
my ($got, $prereq_pm);
my %standard_case_info = (
phase => "test",
command => "$Config{make} test",
);
my @cases = (
{
expected_grade => "pass",
name => "t-Pass",
automated => 0,
comment_txt => 0,
},
{
expected_grade => "fail",
name => "t-Fail",
automated => 0,
comment_txt => 0,
},
{
expected_grade => "unknown",
name => "NoTestFiles",
automated => 0,
comment_txt => 0,
},
{
expected_grade => "na",
name => "t-NoSupport",
automated => 0,
comment_txt => 0,
},
{
expected_grade => "fail",
name => "t-Fail-LongOutput",
automated => 0,
comment_txt => 0,
},
{
expected_grade => "pass",
name => "t-Pass",
automated => 1,
comment_txt => 0,
},
{
expected_grade => "pass",
name => "t-Pass",
automated => 0,
comment_txt => 1,
},
{
expected_grade => "pass",
name => "t-Pass",
automated => 1,
comment_txt => 1,
},
);
plan tests => 1 + test_fake_config_plan()
+ test_report_plan() * @cases;
#--------------------------------------------------------------------------#
# tests
#--------------------------------------------------------------------------#
require_ok('CPAN::Reporter');
test_fake_config( send_report => "yes" );
for my $case ( @cases ) {
local $ENV{AUTOMATED_TESTING} = $case->{automated} || 0;
$case->{label} = $case->{name};
$case->{dist} = $mock_dist;
$case->{$_} = $standard_case_info{$_} for keys %standard_case_info;
test_report( $case );
}
|