206a2ef081dd1bec55437b206bd7a35fe051edde
[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 # Known have-nots.
30 if ($^O eq 'win32' || $^O eq 'vms') {
31     print "1..0\n# no sparse files\n";
32     bye();
33 }
34
35 # Then try to deduce whether we have sparse files.
36
37 # We'll start off by creating a one megabyte file which has
38 # only three "true" bytes.  If we have sparseness, we should
39 # consume less blocks than one megabyte (assuming nobody has
40 # one megabyte blocks...)
41
42 sysopen(BIG, "big", O_WRONLY|O_CREAT|O_TRUNC) or
43         do { warn "sysopen failed: $!\n"; bye };
44 sysseek(BIG, 1_000_000, SEEK_SET);
45 syswrite(BIG, "big");
46 close(BIG);
47
48 my @s;
49
50 @s = stat("big");
51
52 print "# @s\n";
53
54 unless (@s == 13 &&
55         $s[7] == 1_000_003 &&
56         defined $s[11] &&
57         defined $s[12] &&
58        $s[11] * $s[12] < 1000_003) {
59     print "1..0\n# no sparse files?\n";
60     bye();
61 }
62
63 # By now we better be sure that we do have sparse files:
64 # if we are not, the following will hog 5 gigabytes of disk.  Ooops.
65
66 print "1..8\n";
67
68 my $fail = 0;
69
70 sysopen(BIG, "big", O_WRONLY|O_CREAT|O_TRUNC) or
71         do { warn "sysopen failed: $!\n"; bye };
72 sysseek(BIG, 5_000_000_000, SEEK_SET);
73 syswrite(BIG, "big");
74 close BIG;
75
76 @s = stat("big");
77
78 print "# @s\n";
79
80 sub fail () {
81     print "not ";
82     $fail++;
83 }
84
85 fail unless $s[7] == 5_000_000_003;     # exercizes pp_stat
86 print "ok 1\n";
87
88 fail unless -s "big" == 5_000_000_003;  # exercizes pp_ftsize
89 print "ok 2\n";
90
91 sysopen(BIG, "big", O_RDONLY) or do { warn "sysopen failed: $!\n"; bye };
92
93 sysseek(BIG, 4_500_000_000, SEEK_SET);
94
95 fail unless sysseek(BIG, 0, SEEK_CUR) == 4_500_000_000;
96 print "ok 3\n";
97
98 sysseek(BIG, 1, SEEK_CUR);
99
100 fail unless sysseek(BIG, 0, SEEK_CUR) == 4_500_000_001;
101 print "ok 4\n";
102
103 sysseek(BIG, -1, SEEK_CUR);
104
105 fail unless sysseek(BIG, 0, SEEK_CUR) == 4_500_000_000;
106 print "ok 5\n";
107
108 sysseek(BIG, -3, SEEK_END);
109
110 fail unless sysseek(BIG, 0, SEEK_CUR) == 5_000_000_000;
111 print "ok 6\n";
112
113 my $big;
114
115 fail unless sysread(BIG, $big, 3) == 3;
116 print "ok 7\n";
117
118 fail unless $big eq "big";
119 print "ok 8\n";
120
121 bye();
122
123 if ($fail) {
124     print STDERR <<EOM;
125 #
126 # If the lfs (large file support) tests fail, it means that
127 # the *file system* you are running the tests on doesn't support
128 # large files (files larger than two gigabytes).  Perl may still
129 # be able to support such files, once you have such a file system.
130 #
131 EOM
132 }
133
134 # eof