Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(440)

Side by Side Diff: test/mjsunit/string-replace-one-char.js

Issue 9231017: Recursion limit for one-char string replace and retire String::kMinNonFlatLength. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« src/string.js ('K') | « test/cctest/test-strings.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are
4 // met:
5 //
6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided
11 // with the distribution.
12 // * Neither the name of Google Inc. nor the names of its
13 // contributors may be used to endorse or promote products derived
14 // from this software without specific prior written permission.
15 //
16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
28 // Make sure the strings are long enough to trigger the one-char string replace.
29 var prefix1024 = "0123456789ABCDEF";
30 for (var i = 0; i < 6; i++) prefix1024 += prefix1024;
31
32 function test_replace(result, expected, search, replace) {
33 assertEquals(expected, result.replace(search, replace));
34 }
35
36 // '$' in the replace string.
37 test_replace(prefix1024 + "abcdefghijk$lmnopqrstuvwxyz",
38 prefix1024 + "abcdefghijk###lmnopqrstuvwxyz",
39 "$", "###");
Erik Corry 2012/01/17 13:50:24 It would be nice to test with a replacement string
Yang 2012/01/17 14:29:04 Done. I don't know what I was thinking.
40
41 test_replace(prefix1024 + "abcdefghijk$$lmnopqrstuvwxyz",
42 prefix1024 + "abcdefghijk###$lmnopqrstuvwxyz",
43 "$", "###");
44
45 test_replace(prefix1024 + "abcdefghijk$lmnopqrstuvwxyz\u1234",
46 prefix1024 + "abcdefghijk###lmnopqrstuvwxyz\u1234",
47 "$", "###");
48
49 test_replace(prefix1024 + "abcdefghijk$$lmnopqrstuvwxyz\u1234",
50 prefix1024 + "abcdefghijk\u1234\u1234\u1234$lmnopqrstuvwxyz\u1234",
51 "$", "\u1234\u1234\u1234");
52
53 // Zero length replace string.
54 test_replace(prefix1024 + "abcdefghijklmnopqrstuvwxyz",
55 prefix1024 + "abcdefghijklmnopqstuvwxyz",
56 "r", "");
57
58 test_replace(prefix1024 + "abcdefghijklmnopq\u1234stuvwxyz",
59 prefix1024 + "abcdefghijklmnopqstuvwxyz",
60 "\u1234", "");
61
62 // Search char not found.
63 var not_found_1 = prefix1024 + "abcdefghijklmnopqrstuvwxyz";
64 test_replace(not_found_1, not_found_1, "+", "-");
65
66 var not_found_2 = prefix1024 + "abcdefghijklm\u1234nopqrstuvwxyz";
67 test_replace(not_found_2, not_found_2, "+", "---");
68
69 var not_found_3 = prefix1024 + "abcdefghijklmnopqrstuvwxyz";
70 test_replace(not_found_3, not_found_3, "\u1234", "ZZZ");
71
72 // Deep cons tree.
73 var nested_1 = "";
74 for (var i = 0; i < 1000000; i++) nested_1 += "y";
75 var nested_1_result = prefix1024 + nested_1 + "aa";
76 nested_1 = prefix1024 + nested_1 + "z";
77 test_replace(nested_1, nested_1_result, "z", "aa");
78
79 var nested_2 = "\u2244";
80 for (var i = 0; i < 1000000; i++) nested_2 += "y";
81 var nested_2_result = prefix1024 + nested_2 + "aa";
82 nested_2 = prefix1024 + nested_2 + "\u2012";
83 test_replace(nested_2, nested_2_result, "\u2012", "aa");
84
85 // Sliced string as input. A cons string is always flattened before sliced.
86 var slice_1 = ("ab" + prefix1024 + "cdefghijklmnopqrstuvwxyz").slice(1, -1);
87 var slice_1_result = "b" + prefix1024 + "cdefghijklmnopqrstuvwxQ";
88 test_replace(slice_1, slice_1_result, "y", "Q");
89
90 var slice_2 = (prefix1024 + "abcdefghijklmno\u1234\u1234p").slice(1, -1);
91 var slice_2_result = prefix1024.substr(1) + "abcdefghijklmnoQ\u1234";
92 test_replace(slice_2, slice_2_result, "\u1234", "Q");
OLDNEW
« src/string.js ('K') | « test/cctest/test-strings.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698