File Coverage

blib/lib/App/DuckPAN/Cmd/Test.pm
Criterion Covered Total %
statement 12 44 27.2
branch 0 30 0.0
condition 0 6 0.0
subroutine 4 5 80.0
pod 0 1 0.0
total 16 86 18.6


line stmt bran cond sub pod time code
1             package App::DuckPAN::Cmd::Test;
2             our $AUTHORITY = 'cpan:DDG';
3             # ABSTRACT: Command for running the tests of this library
4             $App::DuckPAN::Cmd::Test::VERSION = '1017';
5 1     1   1528 use MooX;
  1         2  
  1         9  
6             with qw( App::DuckPAN::Cmd );
7              
8 1     1   473 use File::Find::Rule;
  1         2  
  1         9  
9              
10 1     1   42 use MooX::Options protect_argv => 0;
  1         1  
  1         8  
11              
12             option full => (
13             is => 'ro',
14             lazy => 1,
15             short => 'f',
16             default => sub { 0 },
17             doc => 'run full test suite via dzil',
18             );
19              
20 1     1   1099 no warnings 'uninitialized';
  1         2  
  1         484  
21              
22             sub run {
23 0     0 0   my ($self, @args) = @_;
24              
25 0           my $ia_type = $self->app->get_ia_type->{name};
26              
27 0           my $ret = 0;
28              
29 0 0         if ($self->full) {
30 0 0         $self->app->emit_error('Could not find dist.ini.') unless -e 'dist.ini';
31 0 0         $self->app->emit_error('Could not begin testing. Is Dist::Zilla installed?') if $ret = system('dzil test');
32             }
33             else {
34 0 0         my @to_test = ('t') unless @args;
35 0           my @cheat_sheet_tests;
36 0           foreach my $ia_name (@args) {
37 0 0         if ($ia_name =~ /_cheat_sheet$/) {
38 0 0         $self->app->emit_and_exit(1, 'Cheat sheets can only be tested in Goodies')
39             unless $ia_type eq 'Goodie';
40 0           $ia_name =~ s/_cheat_sheet$//;
41 0           $ia_name =~ s/_/-/g;
42 0           push @cheat_sheet_tests, $ia_name;
43 0           next;
44             }
45             # Unfortunately we can't just use the name, because some have
46             # spaces - thus we grab the end of the package name.
47 0           my $ia = $self->app->get_ia_by_name($ia_name);
48 0 0         $self->app->emit_and_exit(1, "Could not find an Instant Answer with name '$ia_name'") unless $ia;
49 0           my $id = $ia->{id};
50              
51 0 0         if (my ($perl_module) = $ia->{perl_module} =~ /::(\w+)$/) {
52 0 0         if (-d "t/$perl_module") {
    0          
53 0           push @to_test, "t/$perl_module";
54             }
55             elsif (my @test_file = File::Find::Rule->name("$perl_module.t")->in('t')) {
56 0           push @to_test, "@test_file";
57             }
58             }
59              
60 0 0         if ($ia_type eq 'Fathead') {
61 0           my $path = "lib/fathead/$id/output.txt";
62 0 0         if (-f $path) {
63 0           $ENV{'DDG_TEST_FATHEAD'} = $id;
64 0           push @to_test, "t/validate_fathead.t";
65             } else {
66 0           $self->app->emit_and_exit(1, "Could not find output.txt for $id in $path");
67             }
68             }
69              
70 0 0         $self->app->emit_and_exit(1, "Could not find any tests for $id $ia_type") unless @to_test;
71             };
72 0 0 0       $self->app->emit_error('Tests failed! See output above for details') if @to_test and $ret = system("prove -lr @to_test");
73 0 0 0       $self->app->emit_error('Tests failed! See output above for details') if @cheat_sheet_tests and $ret = system("prove -lr t/CheatSheets/CheatSheetsJSON.t :: @cheat_sheet_tests");
74             }
75              
76 0           return $ret;
77             }
78              
79             1;
80              
81             __END__
82              
83             =pod
84              
85             =head1 NAME
86              
87             App::DuckPAN::Cmd::Test - Command for running the tests of this library
88              
89             =head1 VERSION
90              
91             version 1017
92              
93             =head1 AUTHOR
94              
95             DuckDuckGo <open@duckduckgo.com>, Zach Thompson <zach@duckduckgo.com>, Zaahir Moolla <moollaza@duckduckgo.com>, Torsten Raudssus <torsten@raudss.us> L<https://raudss.us/>
96              
97             =head1 COPYRIGHT AND LICENSE
98              
99             This software is Copyright (c) 2013 by DuckDuckGo, Inc. L<https://duckduckgo.com/>.
100              
101             This is free software, licensed under:
102              
103             The Apache License, Version 2.0, January 2004
104              
105             =cut