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