integrate change#2852 from maint-5.005; integrate cfgperl contents;
[p5sagit/p5-mst-13.2.git] / t / op / filetest.t
CommitLineData
42e55ab1 1#!./perl
2
3# There are few filetest operators that are portable enough to test.
4# See pod/perlport.pod for details.
5
6BEGIN {
7 chdir 't' if -d 't';
8}
9
10print "1..10\n";
11
12print "not " unless -d 'op';
13print "ok 1\n";
14
15print "not " unless -f 'TEST';
16print "ok 2\n";
17
18print "not " if -f 'op';
19print "ok 3\n";
20
21print "not " if -d 'TEST';
22print "ok 4\n";
23
24print "not " unless -r 'TEST';
25print "ok 5\n";
26
22c35a8c 27# make sure TEST is r-x
28eval { chmod 0555, 'TEST' };
846f25a3 29$bad_chmod = $@;
30
31$oldeuid = $>; # root can read and write anything
32eval '$> = 1'; # so switch uid (may not be implemented)
33
34print "# oldeuid = $oldeuid, euid = $>\n";
35
36if ($bad_chmod) {
37 print "#[$@]\nok 6 #skipped\n";
22c35a8c 38}
39else {
846f25a3 40 print "not " if -w 'TEST';
41 print "ok 6\n";
22c35a8c 42}
42e55ab1 43
846f25a3 44# Scripts are not -x everywhere so cannot test that.
42e55ab1 45
46print "not " unless -r 'op';
47print "ok 7\n";
48
846f25a3 49eval '$> = $oldeuid'; # switch uid back (may not be implemented)
50
51# this would fail for the euid 1
52# (unless we have unpacked the source code as uid 1...)
42e55ab1 53print "not " unless -w 'op';
54print "ok 8\n";
55
56print "not " unless -x 'op'; # Hohum. Are directories -x everywhere?
57print "ok 9\n";
58
59print "not " unless "@{[grep -r, qw(foo io noo op zoo)]}" eq "io op";
60print "ok 10\n";