X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Fop%2Fstat.t;h=70ab5a321c675c3fb3695e11f868bd71d935281f;hb=01b3578752f17209014eae7d693a93093779daac;hp=2f387198f075905776ecc35b41cbdcb9a298a68d;hpb=5c9aa243fcc1509167c9708b74c0f9451983e63b;p=p5sagit%2Fp5-mst-13.2.git diff --git a/t/op/stat.t b/t/op/stat.t index 2f38719..70ab5a3 100755 --- a/t/op/stat.t +++ b/t/op/stat.t @@ -9,22 +9,29 @@ BEGIN { use Config; use File::Spec; -plan tests => 74; +plan tests => 82; my $Perl = which_perl(); $Is_Amiga = $^O eq 'amigaos'; $Is_Cygwin = $^O eq 'cygwin'; +$Is_Darwin = $^O eq 'darwin'; $Is_Dos = $^O eq 'dos'; +$Is_MacOS = $^O eq 'MacOS'; $Is_MPE = $^O eq 'mpeix'; $Is_MSWin32 = $^O eq 'MSWin32'; $Is_NetWare = $^O eq 'NetWare'; $Is_OS2 = $^O eq 'os2'; $Is_Solaris = $^O eq 'solaris'; $Is_VMS = $^O eq 'VMS'; +$Is_DGUX = $^O eq 'dgux'; +$Is_MPRAS = $^O =~ /svr4/ && -f '/etc/.relid'; +$Is_Rhapsody= $^O eq 'rhapsody'; $Is_Dosish = $Is_Dos || $Is_OS2 || $Is_MSWin32 || $Is_NetWare || $Is_Cygwin; +$Is_UFS = $Is_Darwin && (() = `df -t ufs .`) == 2; + my($DEV, $INO, $MODE, $NLINK, $UID, $GID, $RDEV, $SIZE, $ATIME, $MTIME, $CTIME, $BLKSIZE, $BLOCKS) = (0..12); @@ -35,7 +42,7 @@ my $tmpfile = 'Op_stat.tmp'; my $tmpfile_link = $tmpfile.'2'; -unlink $tmpfile; +1 while unlink $tmpfile; open(FOO, ">$tmpfile") || DIE("Can't open temp test file: $!"); close FOO; @@ -50,7 +57,7 @@ SKIP: { SKIP: { skip "mtime and ctime not reliable", 2 - if $Is_MSWin32 or $Is_NetWare or $Is_Cygwin or $Is_Dos; + if $Is_MSWin32 or $Is_NetWare or $Is_Cygwin or $Is_Dos or $Is_MacOS; ok( $mtime, 'mtime' ); is( $mtime, $ctime, 'mtime == ctime' ); @@ -64,7 +71,7 @@ sleep 3 if $funky_FAT_timestamps; print FOO "Now is the time for all good men to come to.\n"; close(FOO); -sleep 2 unless $funky_FAT_timestamps; +sleep 2; SKIP: { @@ -99,13 +106,18 @@ SKIP: { # no ctime concept $ctime is ALWAYS == $mtime # expect netware to be the same ... skip "No ctime concept on this OS", 2 - if $Is_MSWin32; + if $Is_MSWin32 || + ($Is_Darwin && $Is_UFS); + if( !ok($mtime, 'hard link mtime') || !isnt($mtime, $ctime, 'hard link ctime != mtime') ) { - print <('b', '-b'); $try->('c', '-c'); $try->('s', '-S'); + } ok(! -b $Curdir, '!-b cwd'); ok(! -c $Curdir, '!-c cwd'); ok(! -S $Curdir, '!-S cwd'); +} + SKIP: { my($cnt, $uid); $cnt = $uid = 0; @@ -284,7 +309,7 @@ SKIP: { SKIP: { skip "These tests require a TTY", 4 if $ENV{PERL_SKIP_TTY_TEST}; - my $TTY = $^O eq 'rhapsody' ? "/dev/ttyp0" : "/dev/tty"; + my $TTY = $Is_Rhapsody ? "/dev/ttyp0" : "/dev/tty"; SKIP: { skip "Test uses unixisms", 2 if $Is_MSWin32 || $Is_NetWare; @@ -316,14 +341,18 @@ SKIP: { # These aren't strictly "stat" calls, but so what? +my $statfile = File::Spec->catfile($Curdir, 'op', 'stat.t'); +ok( -T $statfile, '-T'); +ok(! -B $statfile, '!-B'); -ok(-T 'op/stat.t', '-T'); -ok(! -B 'op/stat.t', '!-B'); - +SKIP: { + skip("DG/UX", 1) if $Is_DGUX; ok(-B $Perl, '-B'); +} + ok(! -T $Perl, '!-T'); -open(FOO,'op/stat.t'); +open(FOO,$statfile); SKIP: { eval { -T FOO; }; skip "-T/B on filehandle not implemented", 15 if $@ =~ /not implemented/; @@ -334,14 +363,14 @@ SKIP: { ok(! -B FOO, ' !-B'); $_ = ; - ok(/perl/, 'after readline'); + like($_, qr/perl/, 'after readline'); ok(-T FOO, ' still -T'); ok(! -B FOO, ' still -B'); close(FOO); - open(FOO,'op/stat.t'); + open(FOO,$statfile); $_ = ; - ok(/perl/, 'reopened and after readline'); + like($_, qr/perl/, 'reopened and after readline'); ok(-T FOO, ' still -T'); ok(! -B FOO, ' still !-B'); @@ -374,24 +403,26 @@ ok(-f(), ' -f() "'); unlink $tmpfile or print "# unlink failed: $!\n"; # bug id 20011101.069 -my @r = \stat("."); +my @r = \stat($Curdir); is(scalar @r, 13, 'stat returns full 13 elements'); +stat $0; +eval { lstat _ }; +like( $@, qr/^The stat preceding lstat\(\) wasn't an lstat/, + 'lstat _ croaks after stat' ); +eval { -l _ }; +like( $@, qr/^The stat preceding -l _ wasn't an lstat/, + '-l _ croaks after stat' ); + +lstat $0; +eval { lstat _ }; +is( "$@", "", "lstat _ ok after lstat" ); +eval { -l _ }; +is( "$@", "", "-l _ ok after lstat" ); + SKIP: { skip "No lstat", 2 unless $Config{d_lstat}; - stat $0; - eval { lstat _ }; - ok( $@ =~ /^The stat preceding lstat\(\) wasn't an lstat/, - 'lstat _ croaks after stat' ); - eval { -l _ }; - ok( $@ =~ /^The stat preceding -l _ wasn't an lstat/, - '-l _ croaks after stat' ); - - eval { lstat STDIN }; - ok( $@ =~ /^The stat preceding lstat\(\) wasn't an lstat/, - 'lstat FILEHANDLE croaks' ); - # bug id 20020124.004 # If we have d_lstat, we should have symlink() my $linkname = 'dolzero'; @@ -399,10 +430,41 @@ SKIP: { lstat $linkname; -T _; eval { lstat _ }; - ok( $@ =~ /^The stat preceding lstat\(\) wasn't an lstat/, + like( $@, qr/^The stat preceding lstat\(\) wasn't an lstat/, 'lstat croaks after -T _' ); eval { -l _ }; - ok( $@ =~ /^The stat preceding -l _ wasn't an lstat/, + like( $@, qr/^The stat preceding -l _ wasn't an lstat/, '-l _ croaks after -T _' ); unlink $linkname or print "# unlink $linkname failed: $!\n"; } + +print "# Zzz...\n"; +sleep(3); +my $f = 'tstamp.tmp'; +unlink $f; +ok (open(S, "> $f"), 'can create tmp file'); +close S or die; +my @a = stat $f; +print "# time=$^T, stat=(@a)\n"; +my @b = (-M _, -A _, -C _); +print "# -MAC=(@b)\n"; +ok( (-M _) < 0, 'negative -M works'); +ok( (-A _) < 0, 'negative -A works'); +ok( (-C _) < 0, 'negative -C works'); +ok(unlink($f), 'unlink tmp file'); + +{ + ok(open(F, ">", $tmpfile), 'can create temp file'); + close F; + chmod 0077, $tmpfile; + my @a = stat($tmpfile); + my $s1 = -s _; + -T _; + my $s2 = -s _; + is($s1, $s2, q(-T _ doesn't break the statbuffer)); + unlink $file; +} + +END { + 1 while unlink $tmpfile; +}