remove FileHandle from list of PodParser dependencies (the
[p5sagit/p5-mst-13.2.git] / t / lib / syslfs.t
CommitLineData
ea2b5ef6 1# NOTE: this file tests how large files (>2GB) work with raw system IO.
2# open(), tell(), seek(), print(), read() are tested in t/op/lfs.t.
3# If you modify/add tests here, remember to update also t/op/lfs.t.
4
5BEGIN {
05f8a9f5 6 # Don't bother if there are no quads.
ea2b5ef6 7 eval { my $q = pack "q", 0 };
8 if ($@) {
9 print "1..0\n# no 64-bit types\n";
48ea9154 10 exit(0);
ea2b5ef6 11 }
12 chdir 't' if -d 't';
13 unshift @INC, '../lib';
9f8fdb7d 14 require Config; import Config;
15 # Don't bother if there are no quad offsets.
16 if ($Config{lseeksize} < 8) {
64215065 17 print "1..0\n# no 64-bit file offsets\n";
48ea9154 18 exit(0);
9f8fdb7d 19 }
ea2b5ef6 20 require Fcntl; import Fcntl;
21}
22
23sub bye {
24 close(BIG);
25 unlink "big";
26 exit(0);
27}
28
fcbfa962 29sub explain {
2d4389e4 30 print <<EOM;
fcbfa962 31#
32# If the lfs (large file support: large meaning larger than two gigabytes)
eed7fde4 33# tests are skipped or fail, it may mean either that your process
34# (or process group) is not allowed to write large files (resource
35# limits) or that the file system you are running the tests on doesn't
36# let your user/group have large files (quota) or the filesystem simply
37# doesn't support large files. You may even need to reconfigure your kernel.
38# (This is all very operating system and site-dependent.)
fcbfa962 39#
40# Perl may still be able to support large files, once you have
eed7fde4 41# such a process, enough quota, and such a (file) system.
fcbfa962 42#
43EOM
44}
45
05f8a9f5 46# Known have-nots.
ea2b5ef6 47if ($^O eq 'win32' || $^O eq 'vms') {
48 print "1..0\n# no sparse files\n";
49 bye();
50}
51
b18f8161 52# Known haves that have problems running this test
53# (for example because they do not support sparse files, like UNICOS)
54if ($^O eq 'unicos') {
55 print "1..0\n# large files known to work but unable to test them here\n";
56 bye();
57}
58
05f8a9f5 59# Then try to deduce whether we have sparse files.
60
ea2b5ef6 61# We'll start off by creating a one megabyte file which has
05f8a9f5 62# only three "true" bytes. If we have sparseness, we should
63# consume less blocks than one megabyte (assuming nobody has
64# one megabyte blocks...)
ea2b5ef6 65
cc4466b7 66sysopen(BIG, "big", O_WRONLY|O_CREAT|O_TRUNC) or
ea2b5ef6 67 do { warn "sysopen failed: $!\n"; bye };
68sysseek(BIG, 1_000_000, SEEK_SET);
69syswrite(BIG, "big");
70close(BIG);
71
72my @s;
73
74@s = stat("big");
75
76print "# @s\n";
77
2ef4205b 78my $BLOCKSIZE = $s[11] || 512;
5cec1e3b 79
ea2b5ef6 80unless (@s == 13 &&
81 $s[7] == 1_000_003 &&
ea2b5ef6 82 defined $s[12] &&
5cec1e3b 83 $BLOCKSIZE * $s[12] < 1_000_003) {
ea2b5ef6 84 print "1..0\n# no sparse files?\n";
85 bye();
86}
87
88# By now we better be sure that we do have sparse files:
89# if we are not, the following will hog 5 gigabytes of disk. Ooops.
90
eed7fde4 91$ENV{LC_ALL} = "C";
92
cc4466b7 93sysopen(BIG, "big", O_WRONLY|O_CREAT|O_TRUNC) or
ea2b5ef6 94 do { warn "sysopen failed: $!\n"; bye };
95sysseek(BIG, 5_000_000_000, SEEK_SET);
eed7fde4 96
fcbfa962 97# The syswrite will fail if there are are filesize limitations (process or fs).
eed7fde4 98my $syswrite = syswrite(BIG, "big") == 3;
99my $close = close BIG if $syswrite;
100unless($syswrite && $close) {
101 unless ($syswrite) {
102 print "# syswrite failed: $!\n"
103 } else {
104 print "# close failed: $!\n"
105 }
b948423f 106 if ($! =~/too large/i) {
107 print "1..0\n# writing past 2GB failed: process limits?\n";
108 } elsif ($! =~ /quota/i) {
109 print "1..0\n# filesystem quota limits?\n";
fcbfa962 110 }
56d29690 111 explain();
eed7fde4 112 bye();
fcbfa962 113}
ea2b5ef6 114
115@s = stat("big");
116
117print "# @s\n";
118
ae178db1 119unless ($s[7] == 5_000_000_003) {
120 print "1..0\n# not configured to use large files?\n";
121 explain();
122 bye();
123}
124
05f8a9f5 125sub fail () {
64215065 126 print "not ";
05f8a9f5 127 $fail++;
128}
129
77166d51 130print "1..17\n";
fcbfa962 131
132my $fail = 0;
133
64215065 134fail unless $s[7] == 5_000_000_003; # exercizes pp_stat
ea2b5ef6 135print "ok 1\n";
136
64215065 137fail unless -s "big" == 5_000_000_003; # exercizes pp_ftsize
ea2b5ef6 138print "ok 2\n";
139
77166d51 140fail unless -e "big";
141print "ok 3\n";
142
143fail unless -f "big";
144print "ok 4\n";
145
ea2b5ef6 146sysopen(BIG, "big", O_RDONLY) or do { warn "sysopen failed: $!\n"; bye };
147
77166d51 148fail unless sysseek(BIG, 4_500_000_000, SEEK_SET) == 4_500_000_000;
149print "ok 5\n";
ea2b5ef6 150
05f8a9f5 151fail unless sysseek(BIG, 0, SEEK_CUR) == 4_500_000_000;
77166d51 152print "ok 6\n";
ea2b5ef6 153
77166d51 154fail unless sysseek(BIG, 1, SEEK_CUR) == 4_500_000_001;
155print "ok 7\n";
ea2b5ef6 156
05f8a9f5 157fail unless sysseek(BIG, 0, SEEK_CUR) == 4_500_000_001;
77166d51 158print "ok 8\n";
ea2b5ef6 159
77166d51 160fail unless sysseek(BIG, -1, SEEK_CUR) == 4_500_000_000;
161print "ok 9\n";
ea2b5ef6 162
05f8a9f5 163fail unless sysseek(BIG, 0, SEEK_CUR) == 4_500_000_000;
77166d51 164print "ok 10\n";
ea2b5ef6 165
77166d51 166fail unless sysseek(BIG, -3, SEEK_END) == 5_000_000_000;
167print "ok 11\n";
ea2b5ef6 168
05f8a9f5 169fail unless sysseek(BIG, 0, SEEK_CUR) == 5_000_000_000;
77166d51 170print "ok 12\n";
ea2b5ef6 171
172my $big;
173
05f8a9f5 174fail unless sysread(BIG, $big, 3) == 3;
77166d51 175print "ok 13\n";
ea2b5ef6 176
05f8a9f5 177fail unless $big eq "big";
77166d51 178print "ok 14\n";
179
180# 705_032_704 = (I32)5_000_000_000
181fail unless seek(BIG, 705_032_704, $SEEK_SET);
182print "ok 15\n";
183
184my $zero;
185
186fail unless read(BIG, $zero, 3) == 3;
187print "ok 16\n";
188
189fail unless $zero eq "\0\0\0";
190print "ok 17\n";
ea2b5ef6 191
fcbfa962 192explain if $fail;
05f8a9f5 193
77166d51 194bye(); # does the necessary cleanup
e9a694fc 195
290be4b1 196END {
197 unlink "big"; # be paranoid about leaving 5 gig files lying around
198}
199
ea2b5ef6 200# eof