blob: ec2f7c2cf9c4a8abab476d2b1004309e10b412ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
#!perl
# vim:syntax=perl:
BEGIN { $|= 1; print "1..10\n"; }
END { print "not ok 1\n" unless $main::loaded; }
use strict;
use warnings;
use Win32API::File qw(:ALL);
use IO::File;
$main::loaded = 1;
print "ok 1\n";
unlink "foo.txt";
my $fh = new Win32API::File "+> foo.txt"
or die fileLastError();
my $tell = tell $fh;
print "# tell \$fh == '$tell'\n";
print "not " unless
tell $fh == 0;
print "ok 2\n";
my $text = "some text\n";
print "not " unless
print $fh $text;
print "ok 3\n";
$tell = tell $fh;
print "# after printing 'some text\\n', tell is: '$tell'\n";
print "not " unless
$tell == length($text) + 1;
print "ok 4\n";
print "not " unless
seek($fh, 0, 0) == 0;
print "ok 5\n";
print "not " unless
not eof $fh;
print "ok 6\n";
my $readline = <$fh>;
my $pretty_readline = $readline;
$pretty_readline =~ s/\r/\\r/g; $pretty_readline =~ s/\n/\\n/g;
print "# read line is '$pretty_readline'\n";
print "not " unless
$readline eq "some text\r\n";
print "ok 7\n";
print "not " unless
eof $fh;
print "ok 8\n";
print "not " unless
close $fh;
print "ok 9\n";
# Test out binmode (should be only LF with print, no CR).
$fh = new Win32API::File "+> foo.txt"
or die fileLastError();
binmode $fh;
print $fh "hello there\n";
seek $fh, 0, 0;
print "not " unless
<$fh> eq "hello there\n";
print "ok 10\n";
close $fh;
unlink "foo.txt";
|