Upgrade to CGI.pm-3.40
[p5sagit/p5-mst-13.2.git] / lib / Shell.t
CommitLineData
e66df073 1#!./perl
2
dfcfdb64 3BEGIN {
ff5c8f2a 4 if( $ENV{PERL_CORE} ) {
ad9da128 5 chdir 't' if -d 't';
6 @INC = '../lib';
ff5c8f2a 7 }
dfcfdb64 8}
9
51947a20 10use Test::More tests => 7;
e66df073 11
12BEGIN { use_ok('Shell'); }
13
51947a20 14my $so = Shell->new;
15ok($so, 'Shell->new');
16
e66df073 17my $Is_VMS = $^O eq 'VMS';
18my $Is_MSWin32 = $^O eq 'MSWin32';
19my $Is_NetWare = $^O eq 'NetWare';
20
51947a20 21$Shell::capture_stderr = 1;
e66df073 22
23# Now test that that works ..
24
25my $tmpfile = 'sht0001';
51947a20 26while ( -f $tmpfile ) {
27 $tmpfile++;
e66df073 28}
51947a20 29END { -f $tmpfile && (open STDERR, '>&SAVERR' and unlink $tmpfile) }
e66df073 30
ad9da128 31no warnings 'once';
32# no false warning about Name "main::SAVERR" used only once: possible typo
e66df073 33
51947a20 34open(SAVERR, ">&STDERR");
e66df073 35open(STDERR, ">$tmpfile");
36
670c206d 37xXx_not_there(); # Ok someone could have a program called this :(
e66df073 38
dfcfdb64 39# On os2 the warning is on by default...
51947a20 40ok(($^O eq 'os2' xor !(-s $tmpfile)), '$Shell::capture_stderr');
e66df073 41
51947a20 42$Shell::capture_stderr = 0;
e66df073 43
75ff0aab 44# Trying to do two repeated C<ls>s in t in core and expecting the same output
45# is a race condition when tests are running in parallel, and using it as a
46# temporary directory. So go somewhere quieter.
47chdir 'uni' if $ENV{PERL_CORE} && -d 'uni';
48
e66df073 49# someone will have to fill in the blanks for other platforms
50
51947a20 51if ($Is_VMS) {
52 ok(directory(), 'Execute command');
72c157b0 53 my @files = directory('*.*');
51947a20 54 ok(@files, 'Quoted arguments');
55
56 ok(eq_array(\@files, [$so->directory('*.*')]), 'object method');
57 eval { $so->directory };
58 ok(!$@, '2 methods calls');
59} elsif ($Is_MSWin32) {
60 ok(dir(), 'Execute command');
61 my @files = dir('*.*');
62 ok(@files, 'Quoted arguments');
63
64 ok(eq_array(\@files, [$so->dir('*.*')]), 'object method');
65 eval { $so->dir };
66 ok(!$@, '2 methods calls');
67} else {
68 ok(ls(), 'Execute command');
69 my @files = ls('*');
70 ok(@files, 'Quoted arguments');
71
72 ok(eq_array(\@files, [$so->ls('*')]), 'object method');
73 eval { $so->ls };
74 ok(!$@, '2 methods calls');
e66df073 75
76}
51947a20 77open(STDERR, ">&SAVERR") ;