more pack() tests
[p5sagit/p5-mst-13.2.git] / t / base / rs.t
CommitLineData
5b2b9c68 1#!./perl
2# Test $!
3
4print "1..14\n";
5
6$teststring = "1\n12\n123\n1234\n1234\n12345\n\n123456\n1234567\n";
7
8# Create our test datafile
9open TESTFILE, ">./foo" or die "error $! $^E opening";
10binmode TESTFILE;
11print TESTFILE $teststring;
12close TESTFILE;
13
14open TESTFILE, "<./foo";
15binmode TESTFILE;
16
17# Check the default $/
18$bar = <TESTFILE>;
19if ($bar eq "1\n") {print "ok 1\n";} else {print "not ok 1\n";}
20
21# explicitly set to \n
22$/ = "\n";
23$bar = <TESTFILE>;
24if ($bar eq "12\n") {print "ok 2\n";} else {print "not ok 2\n";}
25
26# Try a non line terminator
27$/ = "3";
28$bar = <TESTFILE>;
29if ($bar eq "123") {print "ok 3\n";} else {print "not ok 3\n";}
30
31# Eat the line terminator
32$/ = "\n";
33$bar = <TESTFILE>;
34
35# How about a larger terminator
36$/ = "34";
37$bar = <TESTFILE>;
38if ($bar eq "1234") {print "ok 4\n";} else {print "not ok 4\n";}
39
40# Eat the line terminator
41$/ = "\n";
42$bar = <TESTFILE>;
43
44# Does paragraph mode work?
45$/ = '';
46$bar = <TESTFILE>;
47if ($bar eq "1234\n12345\n\n") {print "ok 5\n";} else {print "not ok 5\n";}
48
49# Try slurping the rest of the file
50$/ = undef;
51$bar = <TESTFILE>;
52if ($bar eq "123456\n1234567\n") {print "ok 6\n";} else {print "not ok 6\n";}
53
54# try the record reading tests. New file so we don't have to worry about
55# the size of \n.
56close TESTFILE;
57unlink "./foo";
58open TESTFILE, ">./foo";
59print TESTFILE "1234567890123456789012345678901234567890";
60binmode TESTFILE;
61close TESTFILE;
62open TESTFILE, "<./foo";
63binmode TESTFILE;
64
65# Test straight number
66$/ = \2;
67$bar = <TESTFILE>;
68if ($bar eq "12") {print "ok 7\n";} else {print "not ok 7\n";}
69
70# Test stringified number
71$/ = \"2";
72$bar = <TESTFILE>;
73if ($bar eq "34") {print "ok 8\n";} else {print "not ok 8\n";}
74
75# Integer variable
76$foo = 2;
77$/ = \$foo;
78$bar = <TESTFILE>;
79if ($bar eq "56") {print "ok 9\n";} else {print "not ok 9\n";}
80
81# String variable
82$foo = "2";
83$/ = \$foo;
84$bar = <TESTFILE>;
85if ($bar eq "78") {print "ok 10\n";} else {print "not ok 10\n";}
86
87# Get rid of the temp file
88unlink "./foo";
89
90# Now for the tricky bit--full record reading
91if ($^O eq 'VMS') {
92 # Create a temp file. We jump through these hoops 'cause CREATE really
93 # doesn't like our methods for some reason.
439f5715 94 open FDLFILE, "> ./foo.fdl";
95 print FDLFILE "RECORD\n FORMAT VARIABLE\n";
96 close FDLFILE;
97 open CREATEFILE, "> ./foo.com";
98 print CREATEFILE '$ DEFINE/USER SYS$INPUT NL:', "\n";
99 print CREATEFILE '$ DEFINE/USER SYS$OUTPUT NL:', "\n";
100 print CREATEFILE '$ OPEN YOW []FOO.BAR/WRITE', "\n";
101 print CREATEFILE '$ CLOSE YOW', "\n";
102 print CREATEFILE "\$EXIT\n";
103 close CREATEFILE;
104 $throwaway = `\@\[\]foo`, "\n";
105 open(TEMPFILE, ">./foo.bar") or print "# open failed $! $^E\n";
5b2b9c68 106 print TEMPFILE "foo\nfoobar\nbaz\n";
107 close TEMPFILE;
5b2b9c68 108
109 open TESTFILE, "<./foo.bar";
110 $/ = \10;
111 $bar = <TESTFILE>;
112 if ($bar eq "foo\n") {print "ok 11\n";} else {print "not ok 11\n";}
113 $bar = <TESTFILE>;
114 if ($bar eq "foobar\n") {print "ok 12\n";} else {print "not ok 12\n";}
115 # can we do a short read?
116 $/ = \2;
117 $bar = <TESTFILE>;
118 if ($bar eq "ba") {print "ok 13\n";} else {print "not ok 13\n";}
119 # do we get the rest of the record?
120 $bar = <TESTFILE>;
121 if ($bar eq "z\n") {print "ok 14\n";} else {print "not ok 14\n";}
122
123 unlink "./foo.bar";
439f5715 124 unlink "./foo.com";
5b2b9c68 125} else {
126 # Nobody else does this at the moment (well, maybe OS/390, but they can
127 # put their own tests in) so we just punt
128 foreach $test (11..14) {print "ok $test # skipped on non-VMS system\n"};
129}