[MacPerl-Porters] [PATCH] Mac OS Compatability for bleadperl
[p5sagit/p5-mst-13.2.git] / t / op / split.t
1 #!./perl
2
3 BEGIN {
4     chdir 't' if -d 't';
5     @INC = '../lib';
6 }
7
8 print "1..44\n";
9
10 $FS = ':';
11
12 $_ = 'a:b:c';
13
14 ($a,$b,$c) = split($FS,$_);
15
16 if (join(';',$a,$b,$c) eq 'a;b;c') {print "ok 1\n";} else {print "not ok 1\n";}
17
18 @ary = split(/:b:/);
19 if (join("$_",@ary) eq 'aa:b:cc') {print "ok 2\n";} else {print "not ok 2\n";}
20
21 $_ = "abc\n";
22 my @xyz = (@ary = split(//));
23 if (join(".",@ary) eq "a.b.c.\n") {print "ok 3\n";} else {print "not ok 3\n";}
24
25 $_ = "a:b:c::::";
26 @ary = split(/:/);
27 if (join(".",@ary) eq "a.b.c") {print "ok 4\n";} else {print "not ok 4\n";}
28
29 $_ = join(':',split(' ',"    a b\tc \t d "));
30 if ($_ eq 'a:b:c:d') {print "ok 5\n";} else {print "not ok 5 #$_#\n";}
31
32 $_ = join(':',split(/ */,"foo  bar bie\tdoll"));
33 if ($_ eq "f:o:o:b:a:r:b:i:e:\t:d:o:l:l")
34         {print "ok 6\n";} else {print "not ok 6\n";}
35
36 $_ = join(':', 'foo', split(/ /,'a b  c'), 'bar');
37 if ($_ eq "foo:a:b::c:bar") {print "ok 7\n";} else {print "not ok 7 $_\n";}
38
39 # Can we say how many fields to split to?
40 $_ = join(':', split(' ','1 2 3 4 5 6', 3));
41 print $_ eq '1:2:3 4 5 6' ? "ok 8\n" : "not ok 8 $_\n";
42
43 # Can we do it as a variable?
44 $x = 4;
45 $_ = join(':', split(' ','1 2 3 4 5 6', $x));
46 print $_ eq '1:2:3:4 5 6' ? "ok 9\n" : "not ok 9 $_\n";
47
48 # Does the 999 suppress null field chopping?
49 $_ = join(':', split(/:/,'1:2:3:4:5:6:::', 999));
50 print $_ eq '1:2:3:4:5:6:::' ? "ok 10\n" : "not ok 10 $_\n";
51
52 # Does assignment to a list imply split to one more field than that?
53 if ($^O eq 'MSWin32') { $foo = `.\\perl -D1024 -e "(\$a,\$b) = split;" 2>&1` }
54 elsif ($^O eq 'VMS')  { $foo = `./perl "-D1024" -e "(\$a,\$b) = split;" 2>&1` }
55 elsif ($^O eq 'MacOS'){ $foo = `$^X "-D1024" -e "(\$a,\$b) = split;"` }
56 else                  { $foo = `./perl -D1024 -e '(\$a,\$b) = split;' 2>&1` }
57 print $foo =~ /DEBUGGING/ || $foo =~ /SV = (VOID|IV\(3\))/ ? "ok 11\n" : "not ok 11\n";
58
59 # Can we say how many fields to split to when assigning to a list?
60 ($a,$b) = split(' ','1 2 3 4 5 6', 2);
61 $_ = join(':',$a,$b);
62 print $_ eq '1:2 3 4 5 6' ? "ok 12\n" : "not ok 12 $_\n";
63
64 # do subpatterns generate additional fields (without trailing nulls)?
65 $_ = join '|', split(/,|(-)/, "1-10,20,,,");
66 print $_ eq "1|-|10||20" ? "ok 13\n" : "not ok 13\n";
67
68 # do subpatterns generate additional fields (with a limit)?
69 $_ = join '|', split(/,|(-)/, "1-10,20,,,", 10);
70 print $_ eq "1|-|10||20||||||" ? "ok 14\n" : "not ok 14\n";
71
72 # is the 'two undefs' bug fixed?
73 (undef, $a, undef, $b) = qw(1 2 3 4);
74 print "$a|$b" eq "2|4" ? "ok 15\n" : "not ok 15\n";
75
76 # .. even for locals?
77 {
78   local(undef, $a, undef, $b) = qw(1 2 3 4);
79   print "$a|$b" eq "2|4" ? "ok 16\n" : "not ok 16\n";
80 }
81
82 # check splitting of null string
83 $_ = join('|', split(/x/,   '',-1), 'Z');
84 print $_ eq "Z" ? "ok 17\n" : "#$_\nnot ok 17\n";
85
86 $_ = join('|', split(/x/,   '', 1), 'Z');
87 print $_ eq "Z" ? "ok 18\n" : "#$_\nnot ok 18\n";
88
89 $_ = join('|', split(/(p+)/,'',-1), 'Z');
90 print $_ eq "Z" ? "ok 19\n" : "#$_\nnot ok 19\n";
91
92 $_ = join('|', split(/.?/,  '',-1), 'Z');
93 print $_ eq "Z" ? "ok 20\n" : "#$_\nnot ok 20\n";
94
95
96 # Are /^/m patterns scanned?
97 $_ = join '|', split(/^a/m, "a b a\na d a", 20);
98 print $_ eq "| b a\n| d a" ? "ok 21\n" : "not ok 21\n# `$_'\n";
99
100 # Are /$/m patterns scanned?
101 $_ = join '|', split(/a$/m, "a b a\na d a", 20);
102 print $_ eq "a b |\na d |" ? "ok 22\n" : "not ok 22\n# `$_'\n";
103
104 # Are /^/m patterns scanned?
105 $_ = join '|', split(/^aa/m, "aa b aa\naa d aa", 20);
106 print $_ eq "| b aa\n| d aa" ? "ok 23\n" : "not ok 23\n# `$_'\n";
107
108 # Are /$/m patterns scanned?
109 $_ = join '|', split(/aa$/m, "aa b aa\naa d aa", 20);
110 print $_ eq "aa b |\naa d |" ? "ok 24\n" : "not ok 24\n# `$_'\n";
111
112 # Greedyness:
113 $_ = "a : b :c: d";
114 @ary = split(/\s*:\s*/);
115 if (($res = join(".",@ary)) eq "a.b.c.d") {print "ok 25\n";} else {print "not ok 25\n# res=`$res' != `a.b.c.d'\n";}
116
117 # use of match result as pattern (!)
118 'p:q:r:s' eq join ':', split('abc' =~ /b/, 'p1q1r1s') or print "not ";
119 print "ok 26\n";
120
121 # /^/ treated as /^/m
122 $_ = join ':', split /^/, "ab\ncd\nef\n";
123 print "not " if $_ ne "ab\n:cd\n:ef\n";
124 print "ok 27\n";
125
126 # see if @a = @b = split(...) optimization works
127 @list1 = @list2 = split ('p',"a p b c p");
128 print "not " if @list1 != @list2 or "@list1" ne "@list2"
129              or @list1 != 2 or "@list1" ne "a   b c ";
130 print "ok 28\n";
131
132 # zero-width assertion
133 $_ = join ':', split /(?=\w)/, "rm b";
134 print "not" if $_ ne "r:m :b";
135 print "ok 29\n";
136
137 # unicode splittage
138
139 @ary = map {ord} split //, v1.20.300.4000.50000.4000.300.20.1;
140 print "not " unless "@ary" eq "1 20 300 4000 50000 4000 300 20 1";
141 print "ok 30\n";
142
143 @ary = split(/\x{FE}/, "\x{FF}\x{FE}\x{FD}"); # bug id 20010105.016
144 print "not " unless @ary == 2 &&
145                     $ary[0] eq "\xFF"   && $ary[1] eq "\xFD" &&
146                     $ary[0] eq "\x{FF}" && $ary[1] eq "\x{FD}";
147 print "ok 31\n";
148
149 @ary = split(/(\x{FE}\xFE)/, "\xFF\x{FF}\xFE\x{FE}\xFD\x{FD}"); # variant of 31
150 print "not " unless @ary == 3 &&
151                     $ary[0] eq "\xFF\xFF"     &&
152                     $ary[0] eq "\x{FF}\xFF"   &&
153                     $ary[0] eq "\x{FF}\x{FF}" &&
154                     $ary[1] eq "\xFE\xFE"     &&
155                     $ary[1] eq "\x{FE}\xFE"   &&
156                     $ary[1] eq "\x{FE}\x{FE}" &&
157                     $ary[2] eq "\xFD\xFD"     &&
158                     $ary[2] eq "\x{FD}\xFD"   &&
159                     $ary[2] eq "\x{FD}\x{FD}";
160 print "ok 32\n";
161
162
163 {
164     my @a = map ord, split(//, join("", map chr, (1234, 123, 2345)));
165     print "not " unless "@a" eq "1234 123 2345";
166     print "ok 33\n";
167 }
168
169 {
170     my $x = chr(123);
171     my @a = map ord, split(/$x/, join("", map chr, (1234, 123, 2345)));
172     print "not " unless "@a" eq "1234 2345";
173     print "ok 34\n";
174 }
175
176 {
177     # bug id 20000427.003 
178
179     use warnings;
180     use strict;
181
182     my $sushi = "\x{b36c}\x{5a8c}\x{ff5b}\x{5079}\x{505b}";
183
184     my @charlist = split //, $sushi;
185     my $r = '';
186     foreach my $ch (@charlist) {
187         $r = $r . " " . sprintf "U+%04X", ord($ch);
188     }
189
190     print "not " unless $r eq " U+B36C U+5A8C U+FF5B U+5079 U+505B";
191     print "ok 35\n";
192 }
193
194 {
195     # bug id 20000426.003
196
197     my $s = "\x20\x40\x{80}\x{100}\x{80}\x40\x20";
198
199     my ($a, $b, $c) = split(/\x40/, $s);
200     print "not "
201         unless $a eq "\x20" && $b eq "\x{80}\x{100}\x{80}" && $c eq $a;
202     print "ok 36\n";
203
204     my ($a, $b) = split(/\x{100}/, $s);
205     print "not " unless $a eq "\x20\x40\x{80}" && $b eq "\x{80}\x40\x20";
206     print "ok 37\n";
207
208     my ($a, $b) = split(/\x{80}\x{100}\x{80}/, $s);
209     print "not " unless $a eq "\x20\x40" && $b eq "\x40\x20";
210     print "ok 38\n";
211
212     my ($a, $b) = split(/\x40\x{80}/, $s);
213     print "not " unless $a eq "\x20" && $b eq "\x{100}\x{80}\x40\x20";
214     print "ok 39\n";
215
216     my ($a, $b, $c) = split(/[\x40\x{80}]+/, $s);
217     print "not " unless $a eq "\x20" && $b eq "\x{100}" && $c eq "\x20";
218     print "ok 40\n";
219 }
220
221 {
222     # 20001205.014
223
224     my $a = "ABC\x{263A}";
225
226     my @b = split( //, $a );
227
228     print "not " unless @b == 4;
229     print "ok 41\n";
230
231     print "not " unless length($b[3]) == 1 && $b[3] eq "\x{263A}";
232     print "ok 42\n";
233
234     $a =~ s/^A/Z/;
235     print "not " unless length($a) == 4 && $a eq "ZBC\x{263A}";
236     print "ok 43\n";
237 }
238
239 {
240     my @a = split(/\xFE/, "\xFF\xFE\xFD");
241
242     print "not " unless @a == 2 && $a[0] eq "\xFF" && $a[1] eq "\xFD";
243     print "ok 44\n";
244 }
245