summaryrefslogtreecommitdiff
path: root/gnu/usr.bin/perl/dist/PathTools/t/cwd_enoent.t
blob: 05b30b37ded4ffa4646eb7871cd1be4175bd169d (plain)
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
use warnings;
use strict;

use Config;
use Errno qw();
use File::Temp qw(tempdir);
use Test::More;

if($^O eq "cygwin") {
    # This test skipping should be removed when the Cygwin bug is fixed.
    plan skip_all => "getcwd() fails to fail on Cygwin [perl #132733]";
}

my $tmp = tempdir(CLEANUP => 1);
unless(mkdir("$tmp/testdir") && chdir("$tmp/testdir") && rmdir("$tmp/testdir")){
    plan skip_all => "can't be in non-existent directory";
}

plan tests => 8;
require Cwd;

my @acceptable_errnos = (&Errno::ENOENT, (defined &Errno::ESTALE ? &Errno::ESTALE : ()));
foreach my $type (qw(regular perl)) {
    SKIP: {
	skip "_perl_abs_path() not expected to work", 4
	    if $type eq "perl" &&
		!(($Config{prefix} =~ m/\//) && $^O ne "cygwin");

        # https://github.com/Perl/perl5/issues/16525
        # https://bugs.dragonflybsd.org/issues/3250
        my @vlist = ($Config{osvers} =~ /(\d+)/g);
        my $osver = sprintf("%d%03d", map { defined() ? $_ : '0' } @vlist[0,1]);
	skip "getcwd() doesn't fail on non-existent directories on this platform", 4
	    if $type eq 'regular' && $^O eq 'dragonfly' && $osver < 6002;

	skip "getcwd() doesn't fail on non-existent directories on this platform", 4
	    if $type eq 'regular' && $^O eq 'haiku';

	no warnings "redefine";
	local *Cwd::abs_path = \&Cwd::_perl_abs_path if $type eq "perl";
	local *Cwd::getcwd = \&Cwd::_perl_getcwd if $type eq "perl";
	my($res, $eno);
	$! = 0;
	$res = Cwd::getcwd();
	$eno = 0+$!;
	is $res, undef, "$type getcwd result on non-existent directory";
	ok((grep { $eno == $_ } @acceptable_errnos), "$type getcwd errno on non-existent directory")
	    or diag "Got errno code $eno, expected " . join(", ", @acceptable_errnos);
	$! = 0;
	$res = Cwd::abs_path(".");
	$eno = 0+$!;
	is $res, undef, "$type abs_path result on non-existent directory";
	ok((grep { $eno == $_ } @acceptable_errnos), "$type abs_path errno on non-existent directory")
	    or diag "Got errno code $eno, expected " . join(", ", @acceptable_errnos);
    }
}

chdir $tmp or die "$tmp: $!";

END { chdir $tmp; }

1;