Detypo #4169.
[p5sagit/p5-mst-13.2.git] / t / lib / syslfs.t
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
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         require Config; import Config;
15         # Don't bother if there are no quad offsets.
16         if ($Config{lseeksize} < 8) {
17                 print "1..0\n# no 64-bit file offsets\n";
18                 exit(0);
19         }
20         require Fcntl; import Fcntl;
21 }
22
23 sub bye {
24     close(BIG);
25     unlink "big";
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 # Known have-nots.
47 if ($^O eq 'win32' || $^O eq 'vms') {
48     print "1..0\n# no sparse files\n";
49     bye();
50 }
51
52 # Then try to deduce whether we have sparse files.
53
54 # We'll start off by creating a one megabyte file which has
55 # only three "true" bytes.  If we have sparseness, we should
56 # consume less blocks than one megabyte (assuming nobody has
57 # one megabyte blocks...)
58
59 sysopen(BIG, "big", O_WRONLY|O_CREAT|O_TRUNC) or
60         do { warn "sysopen failed: $!\n"; bye };
61 sysseek(BIG, 1_000_000, SEEK_SET);
62 syswrite(BIG, "big");
63 close(BIG);
64
65 my @s;
66
67 @s = stat("big");
68
69 print "# @s\n";
70
71 my $BLOCKSIZE = 512; # is this really correct everywhere?
72
73 unless (@s == 13 &&
74         $s[7] == 1_000_003 &&
75         defined $s[12] &&
76         $BLOCKSIZE * $s[12] < 1_000_003) {
77     print "1..0\n# no sparse files?\n";
78     bye();
79 }
80
81 # By now we better be sure that we do have sparse files:
82 # if we are not, the following will hog 5 gigabytes of disk.  Ooops.
83
84 $ENV{LC_ALL} = "C";
85
86 sysopen(BIG, "big", O_WRONLY|O_CREAT|O_TRUNC) or
87         do { warn "sysopen failed: $!\n"; bye };
88 sysseek(BIG, 5_000_000_000, SEEK_SET);
89
90 # The syswrite will fail if there are are filesize limitations (process or fs).
91 my $syswrite = syswrite(BIG, "big") == 3;
92 my $close   = close BIG if $syswrite;
93 unless($syswrite && $close) {
94     unless ($syswrite) {
95         print "# syswrite failed: $!\n"
96     } else {
97         print "# close failed: $!\n"
98     }
99     if ($! =~/too large/i) {
100         print "1..0\n# writing past 2GB failed: process limits?\n";
101     } elsif ($! =~ /quota/i) {
102         print "1..0\n# filesystem quota limits?\n";
103     }
104     explain();
105     bye();
106 }
107
108 @s = stat("big");
109
110 print "# @s\n";
111
112 sub fail () {
113     print "not ";
114     $fail++;
115 }
116
117 print "1..17\n";
118
119 my $fail = 0;
120
121 fail unless $s[7] == 5_000_000_003;     # exercizes pp_stat
122 print "ok 1\n";
123
124 fail unless -s "big" == 5_000_000_003;  # exercizes pp_ftsize
125 print "ok 2\n";
126
127 fail unless -e "big";
128 print "ok 3\n";
129
130 fail unless -f "big";
131 print "ok 4\n";
132
133 sysopen(BIG, "big", O_RDONLY) or do { warn "sysopen failed: $!\n"; bye };
134
135 fail unless sysseek(BIG, 4_500_000_000, SEEK_SET) == 4_500_000_000;
136 print "ok 5\n";
137
138 fail unless sysseek(BIG, 0, SEEK_CUR) == 4_500_000_000;
139 print "ok 6\n";
140
141 fail unless sysseek(BIG, 1, SEEK_CUR) == 4_500_000_001;
142 print "ok 7\n";
143
144 fail unless sysseek(BIG, 0, SEEK_CUR) == 4_500_000_001;
145 print "ok 8\n";
146
147 fail unless sysseek(BIG, -1, SEEK_CUR) == 4_500_000_000;
148 print "ok 9\n";
149
150 fail unless sysseek(BIG, 0, SEEK_CUR) == 4_500_000_000;
151 print "ok 10\n";
152
153 fail unless sysseek(BIG, -3, SEEK_END) == 5_000_000_000;
154 print "ok 11\n";
155
156 fail unless sysseek(BIG, 0, SEEK_CUR) == 5_000_000_000;
157 print "ok 12\n";
158
159 my $big;
160
161 fail unless sysread(BIG, $big, 3) == 3;
162 print "ok 13\n";
163
164 fail unless $big eq "big";
165 print "ok 14\n";
166
167 # 705_032_704 = (I32)5_000_000_000
168 fail unless seek(BIG, 705_032_704, $SEEK_SET);
169 print "ok 15\n";
170
171 my $zero;
172
173 fail unless read(BIG, $zero, 3) == 3;
174 print "ok 16\n";
175
176 fail unless $zero eq "\0\0\0";
177 print "ok 17\n";
178
179 explain if $fail;
180
181 bye(); # does the necessary cleanup
182
183 # eof