(replaced by #4172)
[p5sagit/p5-mst-13.2.git] / t / lib / syslfs.t
CommitLineData
ea2b5ef6 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
5BEGIN {
05f8a9f5 6 # Don't bother if there are no quads.
ea2b5ef6 7 eval { my $q = pack "q", 0 };
8 if ($@) {
9 print "1..0\n# no 64-bit types\n";
48ea9154 10 exit(0);
ea2b5ef6 11 }
12 chdir 't' if -d 't';
13 unshift @INC, '../lib';
9f8fdb7d 14 require Config; import Config;
15 # Don't bother if there are no quad offsets.
16 if ($Config{lseeksize} < 8) {
64215065 17 print "1..0\n# no 64-bit file offsets\n";
48ea9154 18 exit(0);
9f8fdb7d 19 }
ea2b5ef6 20 require Fcntl; import Fcntl;
21}
22
23sub bye {
24 close(BIG);
25 unlink "big";
26 exit(0);
27}
28
fcbfa962 29sub explain {
2d4389e4 30 print <<EOM;
fcbfa962 31#
32# If the lfs (large file support: large meaning larger than two gigabytes)
eed7fde4 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.)
fcbfa962 39#
40# Perl may still be able to support large files, once you have
eed7fde4 41# such a process, enough quota, and such a (file) system.
fcbfa962 42#
43EOM
44}
45
05f8a9f5 46# Known have-nots.
ea2b5ef6 47if ($^O eq 'win32' || $^O eq 'vms') {
48 print "1..0\n# no sparse files\n";
49 bye();
50}
51
05f8a9f5 52# Then try to deduce whether we have sparse files.
53
ea2b5ef6 54# We'll start off by creating a one megabyte file which has
05f8a9f5 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...)
ea2b5ef6 58
cc4466b7 59sysopen(BIG, "big", O_WRONLY|O_CREAT|O_TRUNC) or
ea2b5ef6 60 do { warn "sysopen failed: $!\n"; bye };
61sysseek(BIG, 1_000_000, SEEK_SET);
62syswrite(BIG, "big");
63close(BIG);
64
65my @s;
66
67@s = stat("big");
68
69print "# @s\n";
70
2f3a7380 71# Is there a portable way to find out what's the unit of st_blocks?
72
73my $BLOCKSIZE = 512;
74
75$BLOCKSIZE = 4096 if $^O eq 'unicos';
5cec1e3b 76
ea2b5ef6 77unless (@s == 13 &&
78 $s[7] == 1_000_003 &&
ea2b5ef6 79 defined $s[12] &&
5cec1e3b 80 $BLOCKSIZE * $s[12] < 1_000_003) {
ea2b5ef6 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
eed7fde4 88$ENV{LC_ALL} = "C";
89
cc4466b7 90sysopen(BIG, "big", O_WRONLY|O_CREAT|O_TRUNC) or
ea2b5ef6 91 do { warn "sysopen failed: $!\n"; bye };
92sysseek(BIG, 5_000_000_000, SEEK_SET);
eed7fde4 93
fcbfa962 94# The syswrite will fail if there are are filesize limitations (process or fs).
eed7fde4 95my $syswrite = syswrite(BIG, "big") == 3;
96my $close = close BIG if $syswrite;
97unless($syswrite && $close) {
98 unless ($syswrite) {
99 print "# syswrite failed: $!\n"
100 } else {
101 print "# close failed: $!\n"
102 }
b948423f 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";
fcbfa962 107 }
56d29690 108 explain();
eed7fde4 109 bye();
fcbfa962 110}
ea2b5ef6 111
112@s = stat("big");
113
114print "# @s\n";
115
05f8a9f5 116sub fail () {
64215065 117 print "not ";
05f8a9f5 118 $fail++;
119}
120
77166d51 121print "1..17\n";
fcbfa962 122
123my $fail = 0;
124
64215065 125fail unless $s[7] == 5_000_000_003; # exercizes pp_stat
ea2b5ef6 126print "ok 1\n";
127
64215065 128fail unless -s "big" == 5_000_000_003; # exercizes pp_ftsize
ea2b5ef6 129print "ok 2\n";
130
77166d51 131fail unless -e "big";
132print "ok 3\n";
133
134fail unless -f "big";
135print "ok 4\n";
136
ea2b5ef6 137sysopen(BIG, "big", O_RDONLY) or do { warn "sysopen failed: $!\n"; bye };
138
77166d51 139fail unless sysseek(BIG, 4_500_000_000, SEEK_SET) == 4_500_000_000;
140print "ok 5\n";
ea2b5ef6 141
05f8a9f5 142fail unless sysseek(BIG, 0, SEEK_CUR) == 4_500_000_000;
77166d51 143print "ok 6\n";
ea2b5ef6 144
77166d51 145fail unless sysseek(BIG, 1, SEEK_CUR) == 4_500_000_001;
146print "ok 7\n";
ea2b5ef6 147
05f8a9f5 148fail unless sysseek(BIG, 0, SEEK_CUR) == 4_500_000_001;
77166d51 149print "ok 8\n";
ea2b5ef6 150
77166d51 151fail unless sysseek(BIG, -1, SEEK_CUR) == 4_500_000_000;
152print "ok 9\n";
ea2b5ef6 153
05f8a9f5 154fail unless sysseek(BIG, 0, SEEK_CUR) == 4_500_000_000;
77166d51 155print "ok 10\n";
ea2b5ef6 156
77166d51 157fail unless sysseek(BIG, -3, SEEK_END) == 5_000_000_000;
158print "ok 11\n";
ea2b5ef6 159
05f8a9f5 160fail unless sysseek(BIG, 0, SEEK_CUR) == 5_000_000_000;
77166d51 161print "ok 12\n";
ea2b5ef6 162
163my $big;
164
05f8a9f5 165fail unless sysread(BIG, $big, 3) == 3;
77166d51 166print "ok 13\n";
ea2b5ef6 167
05f8a9f5 168fail unless $big eq "big";
77166d51 169print "ok 14\n";
170
171# 705_032_704 = (I32)5_000_000_000
172fail unless seek(BIG, 705_032_704, $SEEK_SET);
173print "ok 15\n";
174
175my $zero;
176
177fail unless read(BIG, $zero, 3) == 3;
178print "ok 16\n";
179
180fail unless $zero eq "\0\0\0";
181print "ok 17\n";
ea2b5ef6 182
fcbfa962 183explain if $fail;
05f8a9f5 184
77166d51 185bye(); # does the necessary cleanup
e9a694fc 186
ea2b5ef6 187# eof