-DL and PERL_DEBUG_MSTATS unravelled
[p5sagit/p5-mst-13.2.git] / t / op / substr.t
CommitLineData
a687059c 1#!./perl
2
7b8d334a 3print "1..100\n";
84902520 4
5#P = start of string Q = start of substr R = end of substr S = end of string
a687059c 6
7$a = 'abcdefxyz';
84902520 8BEGIN { $^W = 1 };
9
10$SIG{__WARN__} = sub {
11 if ($_[0] =~ /^substr outside of string/) {
12 $w++;
13 } elsif ($_[0] =~ /^Attempt to use reference as lvalue in substr/) {
14 $w += 2;
15 } else {
16 warn @_;
17 }
18};
a687059c 19
84902520 20sub fail { !defined(shift) && $w-- };
21
22print (substr($a,0,3) eq 'abc' ? "ok 1\n" : "not ok 1\n"); # P=Q R S
23print (substr($a,3,3) eq 'def' ? "ok 2\n" : "not ok 2\n"); # P Q R S
24print (substr($a,6,999) eq 'xyz' ? "ok 3\n" : "not ok 3\n"); # P Q S R
25print (fail(substr($a,999,999)) ? "ok 4\n" : "not ok 4\n"); # P R Q S
26print (substr($a,0,-6) eq 'abc' ? "ok 5\n" : "not ok 5\n"); # P=Q R S
27print (substr($a,-3,1) eq 'x' ? "ok 6\n" : "not ok 6\n"); # P Q R S
a687059c 28
29$[ = 1;
30
84902520 31print (substr($a,1,3) eq 'abc' ? "ok 7\n" : "not ok 7\n"); # P=Q R S
32print (substr($a,4,3) eq 'def' ? "ok 8\n" : "not ok 8\n"); # P Q R S
33print (substr($a,7,999) eq 'xyz' ? "ok 9\n" : "not ok 9\n"); # P Q S R
34print (fail(substr($a,999,999)) ? "ok 10\n" : "not ok 10\n");# P R Q S
35print (substr($a,1,-6) eq 'abc' ? "ok 11\n" : "not ok 11\n");# P=Q R S
36print (substr($a,-3,1) eq 'x' ? "ok 12\n" : "not ok 12\n"); # P Q R S
a687059c 37
38$[ = 0;
39
40substr($a,3,3) = 'XYZ';
41print $a eq 'abcXYZxyz' ? "ok 13\n" : "not ok 13\n";
42substr($a,0,2) = '';
43print $a eq 'cXYZxyz' ? "ok 14\n" : "not ok 14\n";
a687059c 44substr($a,0,0) = 'ab';
45print $a eq 'abcXYZxyz' ? "ok 15\n" : "not ok 15 $a\n";
46substr($a,0,0) = '12345678';
47print $a eq '12345678abcXYZxyz' ? "ok 16\n" : "not ok 16\n";
48substr($a,-3,3) = 'def';
49print $a eq '12345678abcXYZdef' ? "ok 17\n" : "not ok 17\n";
50substr($a,-3,3) = '<';
51print $a eq '12345678abcXYZ<' ? "ok 18\n" : "not ok 18\n";
52substr($a,-1,1) = '12345678';
53print $a eq '12345678abcXYZ12345678' ? "ok 19\n" : "not ok 19\n";
54
d9d8d8de 55$a = 'abcdefxyz';
56
84902520 57print (substr($a,6) eq 'xyz' ? "ok 20\n" : "not ok 20\n"); # P Q R=S
58print (substr($a,-3) eq 'xyz' ? "ok 21\n" : "not ok 21\n"); # P Q R=S
59print (fail(substr($a,999)) ? "ok 22\n" : "not ok 22\n"); # P R=S Q
60print (substr($a,0) eq 'abcdefxyz' ? "ok 23\n" : "not ok 23\n");# P=Q R=S
61print (substr($a,9) eq '' ? "ok 24\n" : "not ok 24\n"); # P Q=R=S
62print (substr($a,-11) eq 'abcdefxyz' ? "ok 25\n" : "not ok 25\n");# Q P R=S
63print (substr($a,-9) eq 'abcdefxyz' ? "ok 26\n" : "not ok 26\n"); # P=Q R=S
64
65$a = '54321';
66
67print (fail(substr($a,-7, 1)) ? "ok 27\n" : "not ok 27\n"); # Q R P S
68print (fail(substr($a,-7,-6)) ? "ok 28\n" : "not ok 28\n"); # Q R P S
69print (substr($a,-5,-7) eq '' ? "ok 29\n" : "not ok 29\n"); # R P=Q S
70print (substr($a, 2,-7) eq '' ? "ok 30\n" : "not ok 30\n"); # R P Q S
71print (substr($a,-3,-7) eq '' ? "ok 31\n" : "not ok 31\n"); # R P Q S
72print (substr($a, 2,-5) eq '' ? "ok 32\n" : "not ok 32\n"); # P=R Q S
73print (substr($a,-3,-5) eq '' ? "ok 33\n" : "not ok 33\n"); # P=R Q S
74print (substr($a, 2,-4) eq '' ? "ok 34\n" : "not ok 34\n"); # P R Q S
75print (substr($a,-3,-4) eq '' ? "ok 35\n" : "not ok 35\n"); # P R Q S
76print (substr($a, 5,-6) eq '' ? "ok 36\n" : "not ok 36\n"); # R P Q=S
77print (substr($a, 5,-5) eq '' ? "ok 37\n" : "not ok 37\n"); # P=R Q S
78print (substr($a, 5,-3) eq '' ? "ok 38\n" : "not ok 38\n"); # P R Q=S
79print (fail(substr($a, 7,-7)) ? "ok 39\n" : "not ok 39\n"); # R P S Q
80print (fail(substr($a, 7,-5)) ? "ok 40\n" : "not ok 40\n"); # P=R S Q
81print (fail(substr($a, 7,-3)) ? "ok 41\n" : "not ok 41\n"); # P R S Q
82print (fail(substr($a, 7, 0)) ? "ok 42\n" : "not ok 42\n"); # P S Q=R
83
84print (substr($a,-7,2) eq '' ? "ok 43\n" : "not ok 43\n"); # Q P=R S
85print (substr($a,-7,4) eq '54' ? "ok 44\n" : "not ok 44\n"); # Q P R S
86print (substr($a,-7,7) eq '54321' ? "ok 45\n" : "not ok 45\n");# Q P R=S
87print (substr($a,-7,9) eq '54321' ? "ok 46\n" : "not ok 46\n");# Q P S R
88print (substr($a,-5,0) eq '' ? "ok 47\n" : "not ok 47\n"); # P=Q=R S
89print (substr($a,-5,3) eq '543' ? "ok 48\n" : "not ok 48\n");# P=Q R S
90print (substr($a,-5,5) eq '54321' ? "ok 49\n" : "not ok 49\n");# P=Q R=S
91print (substr($a,-5,7) eq '54321' ? "ok 50\n" : "not ok 50\n");# P=Q S R
92print (substr($a,-3,0) eq '' ? "ok 51\n" : "not ok 51\n"); # P Q=R S
93print (substr($a,-3,3) eq '321' ? "ok 52\n" : "not ok 52\n");# P Q R=S
94print (substr($a,-2,3) eq '21' ? "ok 53\n" : "not ok 53\n"); # P Q S R
95print (substr($a,0,-5) eq '' ? "ok 54\n" : "not ok 54\n"); # P=Q=R S
96print (substr($a,2,-3) eq '' ? "ok 55\n" : "not ok 55\n"); # P Q=R S
97print (substr($a,0,0) eq '' ? "ok 56\n" : "not ok 56\n"); # P=Q=R S
98print (substr($a,0,5) eq '54321' ? "ok 57\n" : "not ok 57\n");# P=Q R=S
99print (substr($a,0,7) eq '54321' ? "ok 58\n" : "not ok 58\n");# P=Q S R
100print (substr($a,2,0) eq '' ? "ok 59\n" : "not ok 59\n"); # P Q=R S
101print (substr($a,2,3) eq '321' ? "ok 60\n" : "not ok 60\n"); # P Q R=S
102print (substr($a,5,0) eq '' ? "ok 61\n" : "not ok 61\n"); # P Q=R=S
103print (substr($a,5,2) eq '' ? "ok 62\n" : "not ok 62\n"); # P Q=S R
104print (substr($a,-7,-5) eq '' ? "ok 63\n" : "not ok 63\n"); # Q P=R S
105print (substr($a,-7,-2) eq '543' ? "ok 64\n" : "not ok 64\n");# Q P R S
106print (substr($a,-5,-5) eq '' ? "ok 65\n" : "not ok 65\n"); # P=Q=R S
107print (substr($a,-5,-2) eq '543' ? "ok 66\n" : "not ok 66\n");# P=Q R S
108print (substr($a,-3,-3) eq '' ? "ok 67\n" : "not ok 67\n"); # P Q=R S
109print (substr($a,-3,-1) eq '32' ? "ok 68\n" : "not ok 68\n");# P Q R S
110
111$a = '';
112
113print (substr($a,-2,2) eq '' ? "ok 69\n" : "not ok 69\n"); # Q P=R=S
114print (substr($a,0,0) eq '' ? "ok 70\n" : "not ok 70\n"); # P=Q=R=S
115print (substr($a,0,1) eq '' ? "ok 71\n" : "not ok 71\n"); # P=Q=S R
116print (substr($a,-2,3) eq '' ? "ok 72\n" : "not ok 72\n"); # Q P=S R
117print (substr($a,-2) eq '' ? "ok 73\n" : "not ok 73\n"); # Q P=R=S
118print (substr($a,0) eq '' ? "ok 74\n" : "not ok 74\n"); # P=Q=R=S
119
120
121print (substr($a,0,-1) eq '' ? "ok 75\n" : "not ok 75\n"); # R P=Q=S
122print (fail(substr($a,-2,0)) ? "ok 76\n" : "not ok 76\n"); # Q=R P=S
123print (fail(substr($a,-2,1)) ? "ok 77\n" : "not ok 77\n"); # Q R P=S
124print (fail(substr($a,-2,-1)) ? "ok 78\n" : "not ok 78\n"); # Q R P=S
125print (fail(substr($a,-2,-2)) ? "ok 79\n" : "not ok 79\n"); # Q=R P=S
126print (fail(substr($a,1,-2)) ? "ok 80\n" : "not ok 81\n"); # R P=S Q
127print (fail(substr($a,1,1)) ? "ok 81\n" : "not ok 81\n"); # P=S Q R
128print (fail(substr($a,1,0)) ? "ok 82\n" : "not ok 82\n"); # P=S Q=R
129print (fail(substr($a,1)) ? "ok 83\n" : "not ok 83\n"); # P=R=S Q
130
131
132my $a = 'zxcvbnm';
133substr($a,2,0) = '';
134print $a eq 'zxcvbnm' ? "ok 84\n" : "not ok 84\n";
135substr($a,7,0) = '';
136print $a eq 'zxcvbnm' ? "ok 85\n" : "not ok 85\n";
137substr($a,5,0) = '';
138print $a eq 'zxcvbnm' ? "ok 86\n" : "not ok 86\n";
139substr($a,0,2) = 'pq';
140print $a eq 'pqcvbnm' ? "ok 87\n" : "not ok 87\n";
141substr($a,2,0) = 'r';
142print $a eq 'pqrcvbnm' ? "ok 88\n" : "not ok 88\n";
143substr($a,8,0) = 'asd';
144print $a eq 'pqrcvbnmasd' ? "ok 89\n" : "not ok 89\n";
145substr($a,0,2) = 'iop';
146print $a eq 'ioprcvbnmasd' ? "ok 90\n" : "not ok 90\n";
147substr($a,0,5) = 'fgh';
148print $a eq 'fghvbnmasd' ? "ok 91\n" : "not ok 91\n";
149substr($a,3,5) = 'jkl';
150print $a eq 'fghjklsd' ? "ok 92\n" : "not ok 92\n";
151substr($a,3,2) = '1234';
152print $a eq 'fgh1234lsd' ? "ok 93\n" : "not ok 93\n";
153
08cb0b0d 154
155# with lexicals (and in re-entered scopes)
156for (0,1) {
157 my $txt;
158 unless ($_) {
159 $txt = "Foo";
160 substr($txt, -1) = "X";
84902520 161 print $txt eq "FoX" ? "ok 94\n" : "not ok 94\n";
08cb0b0d 162 }
163 else {
84902520 164 local $^W = 0; # because of (spurious?) "uninitialised value"
08cb0b0d 165 substr($txt, 0, 1) = "X";
84902520 166 print $txt eq "X" ? "ok 95\n" : "not ok 95\n";
08cb0b0d 167 }
168}
169
84902520 170# coercion of references
08cb0b0d 171{
172 my $s = [];
173 substr($s, 0, 1) = 'Foo';
84902520 174 print substr($s,0,7) eq "FooRRAY" && !($w-=2) ? "ok 96\n" : "not ok 96\n";
08cb0b0d 175}
84902520 176
177# check no spurious warnings
178print $w ? "not ok 97\n" : "ok 97\n";
7b8d334a 179
180# check new replacement syntax
181$a = "abcxyz";
182print "not " unless substr($a, 0, 3, "") eq "abc" && $a eq "xyz";
183print "ok 98\n";
184print "not " unless substr($a, 0, 0, "abc") eq "" && $a eq "abcxyz";
185print "ok 99\n";
186print "not " unless substr($a, 3, undef, "") eq "xyz" && $a eq "abc";
187print "ok 100\n";
188