blob: 831f688fd4538c6cbd8b13b8c29bffc6a4759e4e [file] [log] [blame]
Steve Blocka7e24c12009-10-30 11:49:00 +00001// Copyright 2008 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/**
29 * @fileoverview Check all sorts of borderline cases for charCodeAt.
30 */
31
32function Cons() {
Steve Blockd0582a62009-12-15 09:54:21 +000033 return "Te" + "st testing 123";
Steve Blocka7e24c12009-10-30 11:49:00 +000034}
35
36
37function Deep() {
38 var a = "T";
39 a += "e";
40 a += "s";
Steve Blockd0582a62009-12-15 09:54:21 +000041 a += "ting testing 123";
Steve Blocka7e24c12009-10-30 11:49:00 +000042 return a;
43}
44
45
46function Slice() {
Steve Blockd0582a62009-12-15 09:54:21 +000047 return "testing Testing testing 123456789012345".substring(8, 22);
Steve Blocka7e24c12009-10-30 11:49:00 +000048}
49
50
51function Flat() {
Steve Blockd0582a62009-12-15 09:54:21 +000052 return "Testing testing 123";
Steve Blocka7e24c12009-10-30 11:49:00 +000053}
54
55function Cons16() {
Steve Blockd0582a62009-12-15 09:54:21 +000056 return "Te" + "\u1234t testing 123";
Steve Blocka7e24c12009-10-30 11:49:00 +000057}
58
59
60function Deep16() {
61 var a = "T";
62 a += "e";
63 a += "\u1234";
Steve Blockd0582a62009-12-15 09:54:21 +000064 a += "ting testing 123";
Steve Blocka7e24c12009-10-30 11:49:00 +000065 return a;
66}
67
68
69function Slice16Beginning() {
Steve Blockd0582a62009-12-15 09:54:21 +000070 return "Te\u1234t testing testing 123".substring(0, 14);
Steve Blocka7e24c12009-10-30 11:49:00 +000071}
72
73
74function Slice16Middle() {
Steve Blockd0582a62009-12-15 09:54:21 +000075 return "test Te\u1234t testing testing 123".substring(5, 19);
Steve Blocka7e24c12009-10-30 11:49:00 +000076}
77
78
79function Slice16End() {
80 return "test Te\u1234t".substring(5, 9);
81}
82
83
84function Flat16() {
Steve Blockd0582a62009-12-15 09:54:21 +000085 return "Te\u1234ting testing 123";
Steve Blocka7e24c12009-10-30 11:49:00 +000086}
87
88
89function Thing() {
90}
91
92
93function NotAString() {
94 var n = new Thing();
95 n.toString = function() { return "Test"; };
96 n.charCodeAt = String.prototype.charCodeAt;
97 return n;
98}
99
100
101function NotAString16() {
102 var n = new Thing();
103 n.toString = function() { return "Te\u1234t"; };
104 n.charCodeAt = String.prototype.charCodeAt;
105 return n;
106}
107
108
109function TestStringType(generator, sixteen) {
110 var g = generator;
Steve Blockd0582a62009-12-15 09:54:21 +0000111 var len = g().toString().length;
112 var t = sixteen ? "t" : "f"
113 t += generator.name;
114 assertTrue(isNaN(g().charCodeAt(-1e19)), 1 + t);
115 assertTrue(isNaN(g().charCodeAt(-0x80000001)), 2 + t);
116 assertTrue(isNaN(g().charCodeAt(-0x80000000)), 3 + t);
117 assertTrue(isNaN(g().charCodeAt(-0x40000000)), 4 + t);
118 assertTrue(isNaN(g().charCodeAt(-1)), 5 + t);
119 assertTrue(isNaN(g().charCodeAt(len)), 6 + t);
120 assertTrue(isNaN(g().charCodeAt(len + 1)), 7 + t);
121 assertTrue(isNaN(g().charCodeAt(0x3fffffff)), 8 + t);
122 assertTrue(isNaN(g().charCodeAt(0x7fffffff)), 9 + t);
123 assertTrue(isNaN(g().charCodeAt(0x80000000)), 10 + t);
124 assertTrue(isNaN(g().charCodeAt(1e9)), 11 + t);
125 assertEquals(84, g().charCodeAt(0), 12 + t);
126 assertEquals(84, g().charCodeAt("test"), 13 + t);
127 assertEquals(84, g().charCodeAt(""), 14 + t);
128 assertEquals(84, g().charCodeAt(null), 15 + t);
129 assertEquals(84, g().charCodeAt(undefined), 16 + t);
130 assertEquals(84, g().charCodeAt(), 17 + t);
131 assertEquals(84, g().charCodeAt(void 0), 18 + t);
132 assertEquals(84, g().charCodeAt(false), 19 + t);
133 assertEquals(101, g().charCodeAt(true), 20 + t);
134 assertEquals(101, g().charCodeAt(1), 21 + t);
135 assertEquals(sixteen ? 0x1234 : 115, g().charCodeAt(2), 22 + t);
136 assertEquals(116, g().charCodeAt(3), 23 + t);
137 assertEquals(101, g().charCodeAt(1.1), 24 + t);
138 assertEquals(sixteen ? 0x1234 : 115, g().charCodeAt(2.1718), 25 + t);
139 assertEquals(116, g().charCodeAt(3.14159), 26 + t);
Steve Blocka7e24c12009-10-30 11:49:00 +0000140}
141
142
143TestStringType(Cons, false);
144TestStringType(Deep, false);
145TestStringType(Slice, false);
146TestStringType(Flat, false);
147TestStringType(NotAString, false);
148TestStringType(Cons16, true);
149TestStringType(Deep16, true);
150TestStringType(Slice16Beginning, true);
151TestStringType(Slice16Middle, true);
152TestStringType(Slice16End, true);
153TestStringType(Flat16, true);
154TestStringType(NotAString16, true);
155
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100156for (var i = 0; i != 10; i++) {
157 assertEquals(101, Cons16().charCodeAt(1.1));
158 assertEquals('e', Cons16().charAt(1.1));
159}
Steve Blocka7e24c12009-10-30 11:49:00 +0000160
161function StupidThing() {
162 // Doesn't return a string from toString!
163 this.toString = function() { return 42; }
164 this.charCodeAt = String.prototype.charCodeAt;
165}
166
Steve Blockd0582a62009-12-15 09:54:21 +0000167assertEquals(52, new StupidThing().charCodeAt(0), 27);
168assertEquals(50, new StupidThing().charCodeAt(1), 28);
169assertTrue(isNaN(new StupidThing().charCodeAt(2)), 29);
170assertTrue(isNaN(new StupidThing().charCodeAt(-1)), 30);
Steve Blocka7e24c12009-10-30 11:49:00 +0000171
172
173// Medium (>255) and long (>65535) strings.
174
175var medium = "12345678";
176medium += medium; // 16.
177medium += medium; // 32.
178medium += medium; // 64.
179medium += medium; // 128.
180medium += medium; // 256.
181
182var long = medium;
183long += long + long + long; // 1024.
184long += long + long + long; // 4096.
185long += long + long + long; // 16384.
186long += long + long + long; // 65536.
187
Steve Blockd0582a62009-12-15 09:54:21 +0000188assertTrue(isNaN(medium.charCodeAt(-1)), 31);
189assertEquals(49, medium.charCodeAt(0), 32);
190assertEquals(56, medium.charCodeAt(255), 33);
191assertTrue(isNaN(medium.charCodeAt(256)), 34);
Steve Blocka7e24c12009-10-30 11:49:00 +0000192
Steve Blockd0582a62009-12-15 09:54:21 +0000193assertTrue(isNaN(long.charCodeAt(-1)), 35);
194assertEquals(49, long.charCodeAt(0), 36);
195assertEquals(56, long.charCodeAt(65535), 37);
196assertTrue(isNaN(long.charCodeAt(65536)), 38);