blob: c73d747ba7b660c190ef4e00d3435271476e4c60 (
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
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
|
#!./perl
# There are few filetest operators that are portable enough to test.
# See pod/perlport.pod for details.
BEGIN {
chdir 't' if -d 't';
@INC = '../lib';
require './test.pl';
}
use Config;
plan(tests => 28);
ok( -d 'op' );
ok( -f 'TEST' );
ok( !-f 'op' );
ok( !-d 'TEST' );
ok( -r 'TEST' );
# make sure TEST is r-x
eval { chmod 0555, 'TEST' or die "chmod 0555, 'TEST' failed: $!" };
chomp ($bad_chmod = $@);
$oldeuid = $>; # root can read and write anything
eval '$> = 1'; # so switch uid (may not be implemented)
print "# oldeuid = $oldeuid, euid = $>\n";
SKIP: {
if (!$Config{d_seteuid}) {
skip('no seteuid');
}
elsif ($Config{config_args} =~/Dmksymlinks/) {
skip('we cannot chmod symlinks');
}
elsif ($bad_chmod) {
skip( $bad_chmod );
}
else {
ok( !-w 'TEST' );
}
}
# Scripts are not -x everywhere so cannot test that.
eval '$> = $oldeuid'; # switch uid back (may not be implemented)
# this would fail for the euid 1
# (unless we have unpacked the source code as uid 1...)
ok( -r 'op' );
# this would fail for the euid 1
# (unless we have unpacked the source code as uid 1...)
SKIP: {
if ($Config{d_seteuid}) {
ok( -w 'op' );
} else {
skip('no seteuid');
}
}
ok( -x 'op' ); # Hohum. Are directories -x everywhere?
is( "@{[grep -r, qw(foo io noo op zoo)]}", "io op" );
# Test stackability of filetest operators
ok( defined( -f -d 'TEST' ) && ! -f -d _ );
ok( !defined( -e 'zoo' ) );
ok( !defined( -e -d 'zoo' ) );
ok( !defined( -f -e 'zoo' ) );
ok( -f -e 'TEST' );
ok( -e -f 'TEST' );
ok( defined(-d -e 'TEST') );
ok( defined(-e -d 'TEST') );
ok( ! -f -d 'op' );
ok( -x -d -x 'op' );
ok( (-s -f 'TEST' > 1), "-s returns real size" );
ok( -f -s 'TEST' == 1 );
# now with an empty file
my $tempfile = tempfile();
open my $fh, ">", $tempfile;
close $fh;
ok( -f $tempfile );
is( -s $tempfile, 0 );
is( -f -s $tempfile, 0 );
is( -s -f $tempfile, 0 );
unlink $tempfile;
# test that _ is a bareword after filetest operators
-f 'TEST';
ok( -f _ );
sub _ { "this is not a file name" }
ok( -f _ );
|