source: trunk/essentials/dev-lang/perl/t/op/index.t

Last change on this file was 3181, checked in by bird, 18 years ago

perl 5.8.8

File size: 3.3 KB
Line 
1#!./perl
2
3BEGIN {
4 chdir 't' if -d 't';
5 @INC = '../lib';
6}
7
8use strict;
9require './test.pl';
10plan( tests => 58 );
11
12my $foo = 'Now is the time for all good men to come to the aid of their country.';
13
14my $first = substr($foo,0,index($foo,'the'));
15is($first, "Now is ");
16
17my $last = substr($foo,rindex($foo,'the'),100);
18is($last, "their country.");
19
20$last = substr($foo,index($foo,'Now'),2);
21is($last, "No");
22
23$last = substr($foo,rindex($foo,'Now'),2);
24is($last, "No");
25
26$last = substr($foo,index($foo,'.'),100);
27is($last, ".");
28
29$last = substr($foo,rindex($foo,'.'),100);
30is($last, ".");
31
32is(index("ababa","a",-1), 0);
33is(index("ababa","a",0), 0);
34is(index("ababa","a",1), 2);
35is(index("ababa","a",2), 2);
36is(index("ababa","a",3), 4);
37is(index("ababa","a",4), 4);
38is(index("ababa","a",5), -1);
39
40is(rindex("ababa","a",-1), -1);
41is(rindex("ababa","a",0), 0);
42is(rindex("ababa","a",1), 0);
43is(rindex("ababa","a",2), 2);
44is(rindex("ababa","a",3), 2);
45is(rindex("ababa","a",4), 4);
46is(rindex("ababa","a",5), 4);
47
48# tests for empty search string
49is(index("abc", "", -1), 0);
50is(index("abc", "", 0), 0);
51is(index("abc", "", 1), 1);
52is(index("abc", "", 2), 2);
53is(index("abc", "", 3), 3);
54is(index("abc", "", 4), 3);
55is(rindex("abc", "", -1), 0);
56is(rindex("abc", "", 0), 0);
57is(rindex("abc", "", 1), 1);
58is(rindex("abc", "", 2), 2);
59is(rindex("abc", "", 3), 3);
60is(rindex("abc", "", 4), 3);
61
62$a = "foo \x{1234}bar";
63
64is(index($a, "\x{1234}"), 4);
65is(index($a, "bar", ), 5);
66
67is(rindex($a, "\x{1234}"), 4);
68is(rindex($a, "foo", ), 0);
69
70{
71 my $needle = "\x{1230}\x{1270}";
72 my @needles = split ( //, $needle );
73 my $haystack = "\x{1228}\x{1228}\x{1230}\x{1270}";
74 foreach ( @needles ) {
75 my $a = index ( "\x{1228}\x{1228}\x{1230}\x{1270}", $_ );
76 my $b = index ( $haystack, $_ );
77 is($a, $b, q{[perl #22375] 'split'/'index' problem for utf8});
78 }
79 $needle = "\x{1270}\x{1230}"; # Transpose them.
80 @needles = split ( //, $needle );
81 foreach ( @needles ) {
82 my $a = index ( "\x{1228}\x{1228}\x{1230}\x{1270}", $_ );
83 my $b = index ( $haystack, $_ );
84 is($a, $b, q{[perl #22375] 'split'/'index' problem for utf8});
85 }
86}
87
88{
89 my $search = "foo \xc9 bar";
90 my $text = "a\xa3\xa3a $search $search quux";
91
92 my $text_utf8 = $text;
93 utf8::upgrade($text_utf8);
94 my $search_utf8 = $search;
95 utf8::upgrade($search_utf8);
96
97 is (index($text, $search), 5);
98 is (rindex($text, $search), 18);
99 is (index($text, $search_utf8), 5);
100 is (rindex($text, $search_utf8), 18);
101 is (index($text_utf8, $search), 5);
102 is (rindex($text_utf8, $search), 18);
103 is (index($text_utf8, $search_utf8), 5);
104 is (rindex($text_utf8, $search_utf8), 18);
105
106 my $text_octets = $text_utf8;
107 utf8::encode ($text_octets);
108 my $search_octets = $search_utf8;
109 utf8::encode ($search_octets);
110
111 is (index($text_octets, $search_octets), 7, "index octets, octets")
112 or _diag ($text_octets, $search_octets);
113 is (rindex($text_octets, $search_octets), 21, "rindex octets, octets");
114 is (index($text_octets, $search_utf8), -1);
115 is (rindex($text_octets, $search_utf8), -1);
116 is (index($text_utf8, $search_octets), -1);
117 is (rindex($text_utf8, $search_octets), -1);
118
119 is (index($text_octets, $search), -1);
120 is (rindex($text_octets, $search), -1);
121 is (index($text, $search_octets), -1);
122 is (rindex($text, $search_octets), -1);
123}
Note: See TracBrowser for help on using the repository browser.