This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Use minimal @INC in tests, most of the time just '../lib',
[perl5.git] / t / lib / syslfs.t
1 # NOTE: this file tests how large files (>2GB) work with raw system IO.
2 # stdio: open(), tell(), seek(), print(), read() is tested in t/op/lfs.t.
3 # If you modify/add tests here, remember to update also t/op/lfs.t.
4
5 BEGIN {
6         chdir 't' if -d 't';
7         @INC = '../lib';
8         require Config; import Config;
9         # Don't bother if there are no quad offsets.
10         if ($Config{lseeksize} < 8) {
11                 print "1..0 # Skip: no 64-bit file offsets\n";
12                 exit(0);
13         }
14         require Fcntl; import Fcntl qw(/^O_/ /^SEEK_/);
15 }
16
17 sub zap {
18     close(BIG);
19     unlink("big");
20     unlink("big1");
21     unlink("big2");
22 }
23
24 sub bye {
25     zap(); 
26     exit(0);
27 }
28
29 sub explain {
30     print <<EOM;
31 #
32 # If the lfs (large file support: large meaning larger than two gigabytes)
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.)
39 #
40 # Perl may still be able to support large files, once you have
41 # such a process, enough quota, and such a (file) system.
42 #
43 EOM
44 }
45
46 print "# checking whether we have sparse files...\n";
47
48 # Known have-nots.
49 if ($^O eq 'win32' || $^O eq 'vms') {
50     print "1..0 # Skip: no sparse files (because this is $^O) \n";
51     bye();
52 }
53
54 # Known haves that have problems running this test
55 # (for example because they do not support sparse files, like UNICOS)
56 if ($^O eq 'unicos') {
57     print "1..0 # Skip: large files known to work but unable to test them here ($^O)\n";
58     bye();
59 }
60
61 # Then try heuristically to deduce whether we have sparse files.
62
63 # We'll start off by creating a one megabyte file which has
64 # only three "true" bytes.  If we have sparseness, we should
65 # consume less blocks than one megabyte (assuming nobody has
66 # one megabyte blocks...)
67
68 sysopen(BIG, "big1", O_WRONLY|O_CREAT|O_TRUNC) or
69     do { warn "sysopen big1 failed: $!\n"; bye };
70 sysseek(BIG, 1_000_000, SEEK_SET) or
71     do { warn "sysseek big1 failed: $!\n"; bye };
72 syswrite(BIG, "big") or
73     do { warn "syswrite big1 failed; $!\n"; bye };
74 close(BIG) or
75     do { warn "close big1 failed: $!\n"; bye };
76
77 my @s1 = stat("big1");
78
79 print "# s1 = @s1\n";
80
81 sysopen(BIG, "big2", O_WRONLY|O_CREAT|O_TRUNC) or
82     do { warn "sysopen big2 failed: $!\n"; bye };
83 sysseek(BIG, 2_000_000, SEEK_SET) or
84     do { warn "sysseek big2 failed: $!\n"; bye };
85 syswrite(BIG, "big") or
86     do { warn "syswrite big2 failed; $!\n"; bye };
87 close(BIG) or
88     do { warn "close big2 failed: $!\n"; bye };
89
90 my @s2 = stat("big2");
91
92 print "# s2 = @s2\n";
93
94 zap();
95
96 unless ($s1[7] == 1_000_003 && $s2[7] == 2_000_003 &&
97         $s1[11] == $s2[11] && $s1[12] == $s2[12]) {
98         print "1..0 # Skip: no sparse files?\n";
99         bye;
100 }
101
102 print "# we seem to have sparse files...\n";
103
104 # By now we better be sure that we do have sparse files:
105 # if we are not, the following will hog 5 gigabytes of disk.  Ooops.
106 # This may fail by producing some signal; run in a subprocess first for safety
107
108 $ENV{LC_ALL} = "C";
109
110 my $r = system '../perl', '-I../lib', '-e', <<'EOF';
111 use Fcntl qw(/^O_/ /^SEEK_/);
112 sysopen(BIG, "big", O_WRONLY|O_CREAT|O_TRUNC) or die $!;
113 my $sysseek = sysseek(BIG, 5_000_000_000, SEEK_SET);
114 my $syswrite = syswrite(BIG, "big");
115 exit 0;
116 EOF
117
118 sysopen(BIG, "big", O_WRONLY|O_CREAT|O_TRUNC) or
119         do { warn "sysopen 'big' failed: $!\n"; bye };
120 my $sysseek = sysseek(BIG, 5_000_000_000, SEEK_SET);
121 unless (! $r && defined $sysseek && $sysseek == 5_000_000_000) {
122     $sysseek = 'undef' unless defined $sysseek;
123     print "1..0 # Skip: seeking past 2GB failed: ",
124            $r ? 'signal '.($r & 0x7f) : "$! (sysseek returned $sysseek)", "\n";
125     explain();
126     bye();
127 }
128
129 # The syswrite will fail if there are are filesize limitations (process or fs).
130 my $syswrite = syswrite(BIG, "big");
131 print "# syswrite failed: $! (syswrite returned ",
132       defined $syswrite ? $syswrite : 'undef', ")\n"
133     unless defined $syswrite && $syswrite == 3;
134 my $close     = close BIG;
135 print "# close failed: $!\n" unless $close;
136 unless($syswrite && $close) {
137     if ($! =~/too large/i) {
138         print "1..0 # Skip: writing past 2GB failed: process limits?\n";
139     } elsif ($! =~ /quota/i) {
140         print "1..0 # Skip: filesystem quota limits?\n";
141     }
142     explain();
143     bye();
144 }
145
146 @s = stat("big");
147
148 print "# @s\n";
149
150 unless ($s[7] == 5_000_000_003) {
151     print "1..0 # Skip: not configured to use large files?\n";
152     explain();
153     bye();
154 }
155
156 sub fail () {
157     print "not ";
158     $fail++;
159 }
160
161 print "1..17\n";
162
163 my $fail = 0;
164
165 fail unless $s[7] == 5_000_000_003;     # exercizes pp_stat
166 print "ok 1\n";
167
168 fail unless -s "big" == 5_000_000_003;  # exercizes pp_ftsize
169 print "ok 2\n";
170
171 fail unless -e "big";
172 print "ok 3\n";
173
174 fail unless -f "big";
175 print "ok 4\n";
176
177 sysopen(BIG, "big", O_RDONLY) or do { warn "sysopen failed: $!\n"; bye };
178
179 fail unless sysseek(BIG, 4_500_000_000, SEEK_SET) == 4_500_000_000;
180 print "ok 5\n";
181
182 fail unless sysseek(BIG, 0, SEEK_CUR) == 4_500_000_000;
183 print "ok 6\n";
184
185 fail unless sysseek(BIG, 1, SEEK_CUR) == 4_500_000_001;
186 print "ok 7\n";
187
188 fail unless sysseek(BIG, 0, SEEK_CUR) == 4_500_000_001;
189 print "ok 8\n";
190
191 fail unless sysseek(BIG, -1, SEEK_CUR) == 4_500_000_000;
192 print "ok 9\n";
193
194 fail unless sysseek(BIG, 0, SEEK_CUR) == 4_500_000_000;
195 print "ok 10\n";
196
197 fail unless sysseek(BIG, -3, SEEK_END) == 5_000_000_000;
198 print "ok 11\n";
199
200 fail unless sysseek(BIG, 0, SEEK_CUR) == 5_000_000_000;
201 print "ok 12\n";
202
203 my $big;
204
205 fail unless sysread(BIG, $big, 3) == 3;
206 print "ok 13\n";
207
208 fail unless $big eq "big";
209 print "ok 14\n";
210
211 # 705_032_704 = (I32)5_000_000_000
212 fail unless seek(BIG, 705_032_704, SEEK_SET);
213 print "ok 15\n";
214
215 my $zero;
216
217 fail unless read(BIG, $zero, 3) == 3;
218 print "ok 16\n";
219
220 fail unless $zero eq "\0\0\0";
221 print "ok 17\n";
222
223 explain if $fail;
224
225 bye(); # does the necessary cleanup
226
227 END {
228    unlink "big"; # be paranoid about leaving 5 gig files lying around
229 }
230
231 # eof