App-CPAN-Mini-Visit

 view release on metacpan or  search on metacpan

lib/App/CPAN/Mini/Visit.pm  view on Meta::CPAN

182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
sub _visit {
    my ( $archive, @cmd_line ) = @_;
 
    my $tempd = tempd;
 
    my $ae = Archive::Extract->new( archive => $archive );
 
    my $olderr;
 
    # stderr > /dev/null if quiet
    if ( !$Archive::Extract::WARN ) {
        open $olderr, ">&STDERR";
        open STDERR, ">", File::Spec->devnull;
    }
 
    my $extract_ok = $ae->extract;
 
    # restore stderr if quiet
    if ( !$Archive::Extract::WARN ) {
        open STDERR, ">&", $olderr;
        close $olderr;
    }
 
    if ( !$extract_ok ) {
        warn "Couldn't extract '$archive'\n" if $Archive::Extract::WARN;
        return;
    }

t/01-App-CPAN-Mini-Visit.t  view on Meta::CPAN

17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
plan tests => 30;
 
require_ok('App::CPAN::Mini::Visit');
 
#--------------------------------------------------------------------------#
# fixtures
#--------------------------------------------------------------------------#
 
my $exe = basename $0;
my ( $stdout, $stderr );
my $tempdir    = tempdir( CLEANUP => 1 );
my $minicpan   = dir(qw/t CPAN/);
my $archive_re = qr{\.(?:tar\.(?:bz2|gz|Z)|t(?:gz|bz)|zip|pm\.gz)$}i;
 
my @files;
find(
    {
        follow   => 0,
        no_chdir => 1,
        wanted   => sub { push @files, $_ if -f && /\.tar\.gz$/ },

t/01-App-CPAN-Mini-Visit.t  view on Meta::CPAN

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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
#--------------------------------------------------------------------------#
# Option: version
#--------------------------------------------------------------------------#
 
for my $opt (qw/ --version -V /) {
    try eval {
        capture sub {
            App::CPAN::Mini::Visit->run($opt);
          } => \$stdout,
          \$stderr;
    };
    catch my $err;
    is( $stderr, "$exe: $App::CPAN::Mini::Visit::VERSION\n", "[$opt] correct" )
      or diag $err;
}
 
#--------------------------------------------------------------------------#
# Option: help
#--------------------------------------------------------------------------#
 
for my $opt (qw/ --help -h /) {
    try eval {
        capture sub {
            App::CPAN::Mini::Visit->run($opt);
          } => \$stdout,
          \$stderr;
    };
    catch my $err;
    like( $stderr, qr/^Usage:/, "[$opt] correct" ) or diag $err;
}
 
#--------------------------------------------------------------------------#
# minicpan -- no minicpanrc and no --minicpan should fail with error
#--------------------------------------------------------------------------#
 
# homedir for testing
local $ENV{HOME} = $tempdir;
 
# should have error here
{
    my $label = "no minicpan config";
    try eval {
        capture sub {
            App::CPAN::Mini::Visit->run();
          } => \$stdout,
          \$stderr;
    };
    catch my $err;
    like( $stderr, qr/^No minicpan configured/, "[$label] error message correct" )
      or diag $err;
}
 
# missing minicpan directory should have error
my $bad_minicpan = 'doesntexist';
_create_minicpanrc("local: $bad_minicpan");
{
    my $label = "missing minicpan dir";
    try eval {
        capture sub {
            App::CPAN::Mini::Visit->run();
          } => \$stdout,
          \$stderr;
    };
    catch my $err;
    like(
        $stderr,
        qr/^Directory '$bad_minicpan' does not appear to be a CPAN repository/,
        "[$label] error message correct"
    ) or diag $err;
}
 
# badly structured minicpan directory should have error
$bad_minicpan = dir( $tempdir, 'CPAN' );
mkdir $bad_minicpan;
_create_minicpanrc("local: $bad_minicpan");
{
    my $label = "bad minicpan dir";
    try eval {
        capture sub {
            App::CPAN::Mini::Visit->run();
          } => \$stdout,
          \$stderr;
    };
    catch my $err;
    like(
        $stderr,
        qr/^Directory '\Q$bad_minicpan\E' does not appear to be a CPAN repository/,
        "[$label] error message correct"
    ) or diag $err;
}
 
# good minicpan directory (from options -- overrides bad config)
for my $opt (qw/ --minicpan -m /) {
    my $label = "good $opt=...";
    try eval {
        capture sub {
            App::CPAN::Mini::Visit->run("$opt=$minicpan");
          } => \$stdout,
          \$stderr;
    };
    catch my $err;
    is( $stderr, "", "[$label] no error message" ) or diag $err;
}
 
# good minicpan directory (from config only)
_create_minicpanrc("local: $minicpan");
{
    my $label = "good minicpan from config";
    try eval {
        capture sub {
            App::CPAN::Mini::Visit->run();
          } => \$stdout,
          \$stderr;
    };
    catch my $err;
    is( $stderr, "", "[$label] no error message" ) or diag $err;
}
 
# bad minicpan directory (from options -- overrides bad config)
{
    my $label = "bad -m=...";
    try eval {
        capture sub {
            App::CPAN::Mini::Visit->run("-m=$bad_minicpan");
          } => \$stdout,
          \$stderr;
    };
    catch my $err;
    like(
        $stderr,
        qr/^Directory '\Q$bad_minicpan\E' does not appear to be a CPAN repository/,
        "[$label] error message correct"
    ) or diag $err;
}
 
#--------------------------------------------------------------------------#
# default behavior -- list files
#--------------------------------------------------------------------------#
 
{
    my $label = "list files";
    try eval {
        capture sub {
            App::CPAN::Mini::Visit->run();
          } => \$stdout,
          \$stderr;
    };
    catch my $err;
    my @found = split /\n/, $stdout;
    is_deeply( \@found, \@files, "[$label] listing correct" );
}
 
#--------------------------------------------------------------------------#
# run program
#--------------------------------------------------------------------------#
 
{
    my $label = "pwd";
    try eval {
        capture sub {
            App::CPAN::Mini::Visit->run( "--", $^X, '-e',
                'use Cwd qw/abs_path/; print abs_path(".") . "\n"' );
          } => \$stdout,
          \$stderr;
    };
    catch my $err;
    my @found =
      map { dir($_)->relative( dir($_)->parent ) } split /\n/, $stdout;
    my @expect = map {
        my $base = file($_)->basename;
        $base =~ s{$archive_re}{};
        $base;
    } @files;
    ok( length $stdout, "[$label] got stdout" ) or diag $err;
    is_deeply( \@found, \@expect, "[$label] listing correct" )
      or diag "STDOUT:\n$stdout\nSTDERR:\n$stderr\n";
}
 
#--------------------------------------------------------------------------#
# run perl -e
#--------------------------------------------------------------------------#
 
{
    my $label = "perl-e";
    try eval {
        capture sub {
            App::CPAN::Mini::Visit->run( '-e',
                'use Cwd qw/abs_path/; print abs_path(".") . "\n"' );
          } => \$stdout,
          \$stderr;
    };
    catch my $err;
    my @found =
      map { dir($_)->relative( dir($_)->parent ) } split /\n/, $stdout;
    my @expect = map {
        my $base = file($_)->basename;
        $base =~ s{$archive_re}{};
        $base;
    } @files;
    ok( length $stdout, "[$label] got stdout" ) or diag $err;
    is_deeply( \@found, \@expect, "[$label] listing correct" )
      or diag "STDOUT:\n$stdout\nSTDERR:\n$stderr\n";
}
 
#--------------------------------------------------------------------------#
# run perl -E
#--------------------------------------------------------------------------#
 
{
    my $label = "perl-E";
    try eval {
        capture sub {
            App::CPAN::Mini::Visit->run( '-E',
                'use Cwd qw/abs_path/; print abs_path(".") . "\n"' );
          } => \$stdout,
          \$stderr;
    };
    catch my $err;
    my @found =
      map { dir($_)->relative( dir($_)->parent ) } split /\n/, $stdout;
    my @expect = map {
        my $base = file($_)->basename;
        $base =~ s{$archive_re}{};
        $base;
    } @files;
    ok( length $stdout, "[$label] got stdout" ) or diag $err;
    is_deeply( \@found, \@expect, "[$label] listing correct" )
      or diag "STDOUT:\n$stdout\nSTDERR:\n$stderr\n";
}
 
#--------------------------------------------------------------------------#
# --append path
#--------------------------------------------------------------------------#
 
{
    my $label = "path";
    for my $opt (qw/ --append -a /) {
        try eval {
            capture sub {
                App::CPAN::Mini::Visit->run( "$opt=path", "--", $^X, '-e',
                    'print shift(@ARGV) . "\n"' );
              } => \$stdout,
              \$stderr;
        };
        catch my $err;
        my @found = split /\n/, $stdout;
        my @expect = @files;
        ok( length $stdout, "[$label] ($opt) got stdout" ) or diag $err;
        is_deeply( \@found, \@expect, "[$label] ($opt) listing correct" )
          or diag "STDOUT:\n$stdout\nSTDERR:\n$stderr\n";
    }
}
 
#--------------------------------------------------------------------------#
# --append dist
#--------------------------------------------------------------------------#
 
{
    my $label = "dist";
    for my $opt (qw/ --append -a /) {
        try eval {
            capture sub {
                App::CPAN::Mini::Visit->run( "$opt=dist", "--", $^X, '-e',
                    'print shift(@ARGV) . "\n"' );
              } => \$stdout,
              \$stderr;
        };
        catch my $err;
        my @found = split /\n/, $stdout;
        my $prefix = dir( $minicpan, qw/ authors id / )->absolute;
        my @expect = map {
            ( my $file = $_ ) =~ s{$prefix[/\\].[/\\]..[/\\]}{};
            $file;
        } @files;
        ok( length $stdout, "[$label] ($opt) got stdout" ) or diag $err;
        is_deeply( \@found, \@expect, "[$label] ($opt) listing correct" )
          or diag "STDOUT:\n$stdout\nSTDERR:\n$stderr\n";
    }
}
 
#--------------------------------------------------------------------------#
# --output file
#--------------------------------------------------------------------------#
 
{
    my $label    = "output";
    my $tempfile = tmpnam();
    try eval {
        capture sub {
            App::CPAN::Mini::Visit->run("--output=$tempfile");
          } => \$stdout,
          \$stderr;
    };
    catch my $err;
    ok( -f $tempfile, "[$label] output file created" );
    my @found = map { chomp; $_ } do { local @ARGV = ($tempfile); <> };
    is( $stdout, '', "[$label] saw no output on terminal" );
    is_deeply( \@found, \@files, "[$label] listing correct" );
}

xt/author/00-compile.t  view on Meta::CPAN

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
 
open my $stdin, '<', File::Spec->devnull or die "can't open devnull: $!";
 
my @warnings;
for my $lib (@module_files)
{
    # see L<perlfaq8/How can I capture STDERR from an external command?>
    my $stderr = IO::Handle->new;
 
    my $pid = open3($stdin, '>&STDERR', $stderr, $^X, $inc_switch, '-e', "require q[$lib]");
    binmode $stderr, ':crlf' if $^O eq 'MSWin32';
    my @_warnings = <$stderr>;
    waitpid($pid, 0);
    is($?, 0, "$lib loaded ok");
 
    if (@_warnings)
    {
        warn @_warnings;
        push @warnings, @_warnings;
    }
}
 
foreach my $file (@scripts)
{ SKIP: {
    open my $fh, '<', $file or warn("Unable to open $file: $!"), next;
    my $line = <$fh>;
    close $fh and skip("$file isn't perl", 1) unless $line =~ /^#!.*?\bperl\b\s*(.*)$/;
 
    my @flags = $1 ? split(/\s+/, $1) : ();
 
    my $stderr = IO::Handle->new;
 
    my $pid = open3($stdin, '>&STDERR', $stderr, $^X, $inc_switch, @flags, '-c', $file);
    binmode $stderr, ':crlf' if $^O eq 'MSWin32';
    my @_warnings = <$stderr>;
    waitpid($pid, 0);
    is($?, 0, "$file compiled ok");
 
   # in older perls, -c output is simply the file portion of the path being tested
    if (@_warnings = grep { !/\bsyntax OK$/ }
        grep { chomp; $_ ne (File::Spec->splitpath($file))[2] } @_warnings)
    {
        warn @_warnings;
        push @warnings, @_warnings;
    }



( run in 0.603 second using v1.01-cache-2.11-cpan-e5176c747c2 )