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