This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Portable blocksize (replaces #4171).
[perl5.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         # Don't bother if there are no quads.
7         eval { my $q = pack "q", 0 };
8         if ($@) {
9                 print "1..0\n# no 64-bit types\n";
10                 exit(0);
11         }
12         chdir 't' if -d 't';
13         unshift @INC, '../lib';
14         # Don't bother if there are no quad offsets.
15         require Config; import Config;
16         if ($Config{lseeksize} < 8) {
17                 print "1..0\n# no 64-bit file offsets\n";
18                 exit(0);
19         }
20 }
21
22 sub bye {
23     close(BIG);
24     unlink "big";
25     exit(0);
26 }
27
28 sub explain {
29     print <<EOM;
30 #
31 # If the lfs (large file support: large meaning larger than two gigabytes)
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.)
38 #
39 # Perl may still be able to support large files, once you have
40 # such a process, enough quota, and such a (file) system.
41 #
42 EOM
43 }
44
45 # Known have-nots.
46 if ($^O eq 'win32' || $^O eq 'vms') {
47     print "1..0\n# no sparse files\n";
48     bye();
49 }
50
51 # Then try to deduce whether we have sparse files.
52
53 # Let's not depend on Fcntl or any other extension.
54
55 my ($SEEK_SET, $SEEK_CUR, $SEEK_END) = (0, 1, 2);
56
57 # We'll start off by creating a one megabyte file which has
58 # only three "true" bytes.  If we have sparseness, we should
59 # consume less blocks than one megabyte (assuming nobody has
60 # one megabyte blocks...)
61
62 open(BIG, ">big") or do { warn "open failed: $!\n"; bye };
63 binmode BIG;
64 seek(BIG, 1_000_000, $SEEK_SET);
65 print BIG "big";
66 close(BIG);
67
68 my @s;
69
70 @s = stat("big");
71
72 print "# @s\n";
73
74 my $BLOCKSIZE = $s[11] || 512;
75
76 unless (@s == 13 &&
77         $s[7] == 1_000_003 &&
78         defined $s[12] &&
79         $BLOCKSIZE * $s[12] < 1_000_003) {
80     print "1..0\n# no sparse files?\n";
81     bye();
82 }
83
84 # By now we better be sure that we do have sparse files:
85 # if we are not, the following will hog 5 gigabytes of disk.  Ooops.
86
87 $ENV{LC_ALL} = "C";
88
89 open(BIG, ">big") or do { warn "open failed: $!\n"; bye };
90 binmode BIG;
91 seek(BIG, 5_000_000_000, $SEEK_SET);
92
93 # Either the print or (more likely, thanks to buffering) the close will
94 # fail if there are are filesize limitations (process or fs).
95 my $print = print BIG "big";
96 my $close = close BIG if $print;
97 unless ($print && $close) {
98     unless ($print) {
99         print "# print failed: $!\n"
100     } else {
101         print "# close failed: $!\n"
102     }
103     if ($! =~/too large/i) {
104         print "1..0\n# writing past 2GB failed: process limits?\n";
105     } elsif ($! =~ /quota/i) {
106         print "1..0\n# filesystem quota limits?\n";
107     }
108     explain();
109     bye();
110 }
111
112 @s = stat("big");
113
114 print "# @s\n";
115
116 sub fail () {
117     print "not ";
118     $fail++;
119 }
120
121 print "1..17\n";
122
123 my $fail = 0;
124
125 fail unless $s[7] == 5_000_000_003;     # exercizes pp_stat
126 print "ok 1\n";
127
128 fail unless -s "big" == 5_000_000_003;  # exercizes pp_ftsize
129 print "ok 2\n";
130
131 fail unless -e "big";
132 print "ok 3\n";
133
134 fail unless -f "big";
135 print "ok 4\n";
136
137 open(BIG, "big") or do { warn "open failed: $!\n"; bye };
138 binmode BIG;
139
140 fail unless seek(BIG, 4_500_000_000, $SEEK_SET);
141 print "ok 5\n";
142
143 fail unless tell(BIG) == 4_500_000_000;
144 print "ok 6\n";
145
146 fail unless seek(BIG, 1, $SEEK_CUR);
147 print "ok 7\n";
148
149 fail unless tell(BIG) == 4_500_000_001;
150 print "ok 8\n";
151
152 fail unless seek(BIG, -1, $SEEK_CUR);
153 print "ok 9\n";
154
155 fail unless tell(BIG) == 4_500_000_000;
156 print "ok 10\n";
157
158 fail unless seek(BIG, -3, $SEEK_END);
159 print "ok 11\n";
160
161 fail unless tell(BIG) == 5_000_000_000;
162 print "ok 12\n";
163
164 my $big;
165
166 fail unless read(BIG, $big, 3) == 3;
167 print "ok 13\n";
168
169 fail unless $big eq "big";
170 print "ok 14\n";
171
172 # 705_032_704 = (I32)5_000_000_000
173 fail unless seek(BIG, 705_032_704, $SEEK_SET);
174 print "ok 15\n";
175
176 my $zero;
177
178 fail unless read(BIG, $zero, 3) == 3;
179 print "ok 16\n";
180
181 fail unless $zero eq "\0\0\0";
182 print "ok 17\n";
183
184 explain if $fail;
185
186 bye(); # does the necessary cleanup
187
188 # eof