As using -C to turn on utf8 IO is equivalent to the open pragma,
[p5sagit/p5-mst-13.2.git] / t / io / tell.t
CommitLineData
8d063cd8 1#!./perl
2
455ece5e 3# $RCSfile: tell.t,v $$Revision$$Date$
8d063cd8 4
58c59f01 5BEGIN {
6 chdir 't' if -d 't';
7 @INC = '../lib';
8}
9
c2fcde81 10print "1..28\n";
8d063cd8 11
3fb41248 12$TST = 'TST';
378cc40b 13
2986a63f 14$Is_Dosish = ($^O eq 'MSWin32' or $^O eq 'NetWare' or $^O eq 'dos' or
cebd85e6 15 $^O eq 'os2' or $^O eq 'mint' or $^O eq 'cygwin' or
16 $^O =~ /^uwin/);
8736538c 17
2eb25c99 18open($TST, 'harness') || (die "Can't open harness");
8736538c 19binmode $TST if $Is_Dosish;
3fb41248 20if (eof(TST)) { print "not ok 1\n"; } else { print "ok 1\n"; }
8d063cd8 21
378cc40b 22$firstline = <$TST>;
8d063cd8 23$secondpos = tell;
24
25$x = 0;
3fb41248 26while (<TST>) {
8d063cd8 27 if (eof) {$x++;}
28}
29if ($x == 1) { print "ok 2\n"; } else { print "not ok 2\n"; }
30
31$lastpos = tell;
32
33unless (eof) { print "not ok 3\n"; } else { print "ok 3\n"; }
34
378cc40b 35if (seek($TST,0,0)) { print "ok 4\n"; } else { print "not ok 4\n"; }
8d063cd8 36
37if (eof) { print "not ok 5\n"; } else { print "ok 5\n"; }
38
3fb41248 39if ($firstline eq <TST>) { print "ok 6\n"; } else { print "not ok 6\n"; }
8d063cd8 40
41if ($secondpos == tell) { print "ok 7\n"; } else { print "not ok 7\n"; }
42
3fb41248 43if (seek(TST,0,1)) { print "ok 8\n"; } else { print "not ok 8\n"; }
8d063cd8 44
378cc40b 45if (eof($TST)) { print "not ok 9\n"; } else { print "ok 9\n"; }
8d063cd8 46
47if ($secondpos == tell) { print "ok 10\n"; } else { print "not ok 10\n"; }
48
3fb41248 49if (seek(TST,0,2)) { print "ok 11\n"; } else { print "not ok 11\n"; }
8d063cd8 50
51if ($lastpos == tell) { print "ok 12\n"; } else { print "not ok 12\n"; }
52
53unless (eof) { print "not ok 13\n"; } else { print "ok 13\n"; }
455ece5e 54
55if ($. == 0) { print "not ok 14\n"; } else { print "ok 14\n"; }
56
57$curline = $.;
3fb41248 58open(OTHER, 'harness') || (die "Can't open harness: $!");
59binmode OTHER if (($^O eq 'MSWin32') || ($^O eq 'NetWare'));
455ece5e 60
61{
62 local($.);
63
64 if ($. == 0) { print "not ok 15\n"; } else { print "ok 15\n"; }
65
3fb41248 66 tell OTHER;
455ece5e 67 if ($. == 0) { print "ok 16\n"; } else { print "not ok 16\n"; }
68
69 $. = 5;
3fb41248 70 scalar <OTHER>;
455ece5e 71 if ($. == 6) { print "ok 17\n"; } else { print "not ok 17\n"; }
72}
73
74if ($. == $curline) { print "ok 18\n"; } else { print "not ok 18\n"; }
75
76{
77 local($.);
78
3fb41248 79 scalar <OTHER>;
455ece5e 80 if ($. == 7) { print "ok 19\n"; } else { print "not ok 19\n"; }
81}
82
83if ($. == $curline) { print "ok 20\n"; } else { print "not ok 20\n"; }
84
85{
86 local($.);
87
3fb41248 88 tell OTHER;
455ece5e 89 if ($. == 7) { print "ok 21\n"; } else { print "not ok 21\n"; }
90}
d26ab924 91
3fb41248 92close(OTHER);
93{
94 no warnings 'closed';
95 if (tell(OTHER) == -1) { print "ok 22\n"; } else { print "not ok 22\n"; }
96}
97{
98 no warnings 'unopened';
99 if (tell(ETHER) == -1) { print "ok 23\n"; } else { print "not ok 23\n"; }
100}
d26ab924 101
102# ftell(STDIN) (or any std streams) is undefined, it can return -1 or
103# something else. ftell() on pipes, fifos, and sockets is defined to
104# return -1.
105
0678cb22 106my $written = "tell_write.txt";
107
4e7ee149 108END { 1 while unlink($written) }
0678cb22 109
3fb41248 110close($TST);
0678cb22 111open($tst,">$written") || die "Cannot open $written:$!";
7bdbfeb7 112binmode $tst if $Is_Dosish;
0678cb22 113
114if (tell($tst) == 0) { print "ok 24\n"; } else { print "not ok 24\n"; }
115
116print $tst "fred\n";
117
118if (tell($tst) == 5) { print "ok 25\n"; } else { print "not ok 25\n"; }
119
120print $tst "more\n";
121
122if (tell($tst) == 10) { print "ok 26\n"; } else { print "not ok 26\n"; }
123
124close($tst);
125
126open($tst,"+>>$written") || die "Cannot open $written:$!";
7bdbfeb7 127binmode $tst if $Is_Dosish;
0678cb22 128
129if (0)
130{
131 # :stdio does not pass these so ignore them for now
132
133if (tell($tst) == 0) { print "ok 27\n"; } else { print "not ok 27\n"; }
134
135$line = <$tst>;
136
137if ($line eq "fred\n") { print "ok 29\n"; } else { print "not ok 29\n"; }
138
139if (tell($tst) == 5) { print "ok 30\n"; } else { print "not ok 30\n"; }
140
141}
142
143print $tst "xxxx\n";
144
c6b46866 145if (tell($tst) == 15 ||
146 tell($tst) == 5) # unset PERLIO or PERLIO=stdio (e.g. HP-UX, Solaris)
147{ print "ok 27\n"; } else { print "not ok 27\n"; }
0678cb22 148
149close($tst);
150
c2fcde81 151open($tst,">$written") || die "Cannot open $written:$!";
152print $tst "foobar";
153close $tst;
154open($tst,">>$written") || die "Cannot open $written:$!";
155
e4fdb327 156# This test makes a questionable assumption that the file pointer will
157# be at eof after opening a file but before seeking, reading, or writing.
158# Only known failure is on cygwin.
92770387 159my $todo = $^O eq "cygwin" && &PerlIO::get_layers($tst) eq 'stdio'
160 && ' # TODO: file pointer not at eof';
e4fdb327 161
c2fcde81 162if (tell($tst) == 6)
92770387 163{ print "ok 28$todo\n"; } else { print "not ok 28$todo\n"; }
c2fcde81 164close $tst;
0678cb22 165