blob: 7c0c8663f965c5ce4ff7e17762fcbdb5655628b9 [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001/*
2 * Copyright 2011 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
tfarina@chromium.orge4fafb12013-12-12 21:11:12 +00007
Hal Canaryee08b4a2018-03-01 15:56:37 -05008#include "Test.h"
9
tomhudson@google.com47e0a092011-07-08 17:49:22 +000010#include <stdarg.h>
bungeman@google.comfab44db2013-10-11 18:50:45 +000011#include <stdio.h>
Mike Klein03141d22017-10-30 11:57:15 -040012#include <thread>
tomhudson@google.com47e0a092011-07-08 17:49:22 +000013
Hal Canaryee08b4a2018-03-01 15:56:37 -050014#include "SkString.h"
15#include "SkStringUtils.h"
tomhudson@google.com47e0a092011-07-08 17:49:22 +000016
tfarina@chromium.orge4fafb12013-12-12 21:11:12 +000017DEF_TEST(String, reporter) {
reed@android.comd8730ea2009-02-27 22:06:06 +000018 SkString a;
19 SkString b((size_t)0);
20 SkString c("");
halcanary96fcdcc2015-08-27 07:41:13 -070021 SkString d(nullptr, 0);
reed@android.comd8730ea2009-02-27 22:06:06 +000022
23 REPORTER_ASSERT(reporter, a.isEmpty());
24 REPORTER_ASSERT(reporter, a == b && a == c && a == d);
25
26 a.set("hello");
27 b.set("hellox", 5);
28 c.set(a);
29 d.resize(5);
30 memcpy(d.writable_str(), "helloz", 5);
31
32 REPORTER_ASSERT(reporter, !a.isEmpty());
33 REPORTER_ASSERT(reporter, a.size() == 5);
34 REPORTER_ASSERT(reporter, a == b && a == c && a == d);
35 REPORTER_ASSERT(reporter, a.equals("hello", 5));
36 REPORTER_ASSERT(reporter, a.equals("hello"));
37 REPORTER_ASSERT(reporter, !a.equals("help"));
38
epoger@google.comc4ae9742012-04-27 17:11:31 +000039 REPORTER_ASSERT(reporter, a.startsWith("hell"));
epoger@google.come8ebeb12012-10-29 16:42:11 +000040 REPORTER_ASSERT(reporter, a.startsWith('h'));
epoger@google.comc4ae9742012-04-27 17:11:31 +000041 REPORTER_ASSERT(reporter, !a.startsWith( "ell"));
epoger@google.come8ebeb12012-10-29 16:42:11 +000042 REPORTER_ASSERT(reporter, !a.startsWith( 'e'));
epoger@google.comc4ae9742012-04-27 17:11:31 +000043 REPORTER_ASSERT(reporter, a.startsWith(""));
44 REPORTER_ASSERT(reporter, a.endsWith("llo"));
epoger@google.come8ebeb12012-10-29 16:42:11 +000045 REPORTER_ASSERT(reporter, a.endsWith('o'));
epoger@google.comc4ae9742012-04-27 17:11:31 +000046 REPORTER_ASSERT(reporter, !a.endsWith("ll" ));
epoger@google.come8ebeb12012-10-29 16:42:11 +000047 REPORTER_ASSERT(reporter, !a.endsWith('l'));
epoger@google.comc4ae9742012-04-27 17:11:31 +000048 REPORTER_ASSERT(reporter, a.endsWith(""));
49 REPORTER_ASSERT(reporter, a.contains("he"));
50 REPORTER_ASSERT(reporter, a.contains("ll"));
51 REPORTER_ASSERT(reporter, a.contains("lo"));
52 REPORTER_ASSERT(reporter, a.contains("hello"));
53 REPORTER_ASSERT(reporter, !a.contains("hellohello"));
54 REPORTER_ASSERT(reporter, a.contains(""));
epoger@google.come8ebeb12012-10-29 16:42:11 +000055 REPORTER_ASSERT(reporter, a.contains('e'));
56 REPORTER_ASSERT(reporter, !a.contains('z'));
rmistry@google.comd6176b02012-08-23 18:14:13 +000057
reed@android.comd8730ea2009-02-27 22:06:06 +000058 SkString e(a);
59 SkString f("hello");
60 SkString g("helloz", 5);
61
62 REPORTER_ASSERT(reporter, a == e && a == f && a == g);
63
64 b.set("world");
65 c = b;
66 REPORTER_ASSERT(reporter, a != b && a != c && b == c);
67
68 a.append(" world");
69 e.append("worldz", 5);
70 e.insert(5, " ");
71 f.set("world");
72 f.prepend("hello ");
73 REPORTER_ASSERT(reporter, a.equals("hello world") && a == e && a == f);
74
75 a.reset();
76 b.resize(0);
77 REPORTER_ASSERT(reporter, a.isEmpty() && b.isEmpty() && a == b);
78
79 a.set("a");
80 a.set("ab");
81 a.set("abc");
82 a.set("abcd");
vandebo@chromium.orgd877fdb2010-10-12 23:08:13 +000083
84 a.set("");
epoger@google.comd88a3d82013-06-19 18:27:20 +000085 a.appendS32(0x7FFFFFFFL);
86 REPORTER_ASSERT(reporter, a.equals("2147483647"));
87 a.set("");
88 a.appendS32(0x80000001L);
89 REPORTER_ASSERT(reporter, a.equals("-2147483647"));
90 a.set("");
91 a.appendS32(0x80000000L);
92 REPORTER_ASSERT(reporter, a.equals("-2147483648"));
vandebo@chromium.orgd877fdb2010-10-12 23:08:13 +000093
94 a.set("");
epoger@google.comd88a3d82013-06-19 18:27:20 +000095 a.appendU32(0x7FFFFFFFUL);
96 REPORTER_ASSERT(reporter, a.equals("2147483647"));
97 a.set("");
98 a.appendU32(0x80000001UL);
99 REPORTER_ASSERT(reporter, a.equals("2147483649"));
100 a.set("");
101 a.appendU32(0xFFFFFFFFUL);
102 REPORTER_ASSERT(reporter, a.equals("4294967295"));
vandebo@chromium.orgd877fdb2010-10-12 23:08:13 +0000103
104 a.set("");
epoger@google.comd88a3d82013-06-19 18:27:20 +0000105 a.appendS64(0x7FFFFFFFFFFFFFFFLL, 0);
106 REPORTER_ASSERT(reporter, a.equals("9223372036854775807"));
107 a.set("");
108 a.appendS64(0x8000000000000001LL, 0);
109 REPORTER_ASSERT(reporter, a.equals("-9223372036854775807"));
110 a.set("");
111 a.appendS64(0x8000000000000000LL, 0);
112 REPORTER_ASSERT(reporter, a.equals("-9223372036854775808"));
113 a.set("");
114 a.appendS64(0x0000000001000000LL, 15);
115 REPORTER_ASSERT(reporter, a.equals("000000016777216"));
116 a.set("");
117 a.appendS64(0xFFFFFFFFFF000000LL, 15);
118 REPORTER_ASSERT(reporter, a.equals("-000000016777216"));
vandebo@chromium.orgd877fdb2010-10-12 23:08:13 +0000119
120 a.set("");
epoger@google.comd88a3d82013-06-19 18:27:20 +0000121 a.appendU64(0x7FFFFFFFFFFFFFFFULL, 0);
122 REPORTER_ASSERT(reporter, a.equals("9223372036854775807"));
123 a.set("");
124 a.appendU64(0x8000000000000001ULL, 0);
125 REPORTER_ASSERT(reporter, a.equals("9223372036854775809"));
126 a.set("");
127 a.appendU64(0xFFFFFFFFFFFFFFFFULL, 0);
128 REPORTER_ASSERT(reporter, a.equals("18446744073709551615"));
129 a.set("");
130 a.appendU64(0x0000000001000000ULL, 15);
131 REPORTER_ASSERT(reporter, a.equals("000000016777216"));
reed@google.comfa06e522011-02-28 21:29:58 +0000132
halcanaryd51bdae2016-04-25 09:25:35 -0700133 a.printf("%i", 0);
134 REPORTER_ASSERT(reporter, a.equals("0"));
135 a.printf("%g", 3.14);
136 REPORTER_ASSERT(reporter, a.equals("3.14"));
137 a.printf("hello %s", "skia");
138 REPORTER_ASSERT(reporter, a.equals("hello skia"));
139
reed@google.comfa06e522011-02-28 21:29:58 +0000140 static const struct {
141 SkScalar fValue;
142 const char* fString;
143 } gRec[] = {
144 { 0, "0" },
145 { SK_Scalar1, "1" },
146 { -SK_Scalar1, "-1" },
147 { SK_Scalar1/2, "0.5" },
mtkleincc334b32015-09-22 11:43:53 -0700148 #if defined(SK_BUILD_FOR_WIN) && (_MSC_VER < 1900)
tomhudson@google.com47e0a092011-07-08 17:49:22 +0000149 { 3.4028234e38f, "3.4028235e+038" },
150 { -3.4028234e38f, "-3.4028235e+038" },
151 #else
reed@google.com8072e4f2011-03-01 15:44:08 +0000152 { 3.4028234e38f, "3.4028235e+38" },
153 { -3.4028234e38f, "-3.4028235e+38" },
tomhudson@google.com47e0a092011-07-08 17:49:22 +0000154 #endif
reed@google.comfa06e522011-02-28 21:29:58 +0000155 };
156 for (size_t i = 0; i < SK_ARRAY_COUNT(gRec); i++) {
157 a.reset();
158 a.appendScalar(gRec[i].fValue);
reed@google.com8072e4f2011-03-01 15:44:08 +0000159 REPORTER_ASSERT(reporter, a.size() <= SkStrAppendScalar_MaxSize);
bsalomon9bca5262015-08-06 17:56:13 -0700160 if (!a.equals(gRec[i].fString)) {
161 ERRORF(reporter, "received <%s> expected <%s>\n", a.c_str(), gRec[i].fString);
162 }
reed@google.comfa06e522011-02-28 21:29:58 +0000163 }
tomhudson@google.com3a1f6a02011-06-30 14:39:52 +0000164
165 REPORTER_ASSERT(reporter, SkStringPrintf("%i", 0).equals("0"));
tomhudson@google.com47e0a092011-07-08 17:49:22 +0000166
167 char buffer [40];
168 memset(buffer, 'a', 40);
169 REPORTER_ASSERT(reporter, buffer[18] == 'a');
170 REPORTER_ASSERT(reporter, buffer[19] == 'a');
171 REPORTER_ASSERT(reporter, buffer[20] == 'a');
Hal Canary2d0e1242018-03-01 12:32:18 -0500172 snprintf(buffer, 20, "%30d", 0);
tomhudson@google.com47e0a092011-07-08 17:49:22 +0000173 REPORTER_ASSERT(reporter, buffer[18] == ' ');
174 REPORTER_ASSERT(reporter, buffer[19] == 0);
175 REPORTER_ASSERT(reporter, buffer[20] == 'a');
rmistry@google.comd6176b02012-08-23 18:14:13 +0000176
halcanaryd51bdae2016-04-25 09:25:35 -0700177 REPORTER_ASSERT(reporter, SkStringPrintf("%i", 0).equals("0"));
178
179 // 2000 is larger than the static buffer size inside SkString.cpp
180 a = SkStringPrintf("%2000s", " ");
181 REPORTER_ASSERT(reporter, a.size() == 2000);
182 for (size_t i = 0; i < a.size(); ++i) {
183 if (a[i] != ' ') {
184 ERRORF(reporter, "SkStringPrintf fail: a[%d] = '%c'", i, a[i]);
185 break;
186 }
187 }
188 a.reset();
189 a.printf("%2000s", " ");
190 REPORTER_ASSERT(reporter, a.size() == 2000);
191 for (size_t i = 0; i < a.size(); ++i) {
192 if (a[i] != ' ') {
193 ERRORF(reporter, "SkStringPrintf fail: a[%d] = '%c'", i, a[i]);
194 break;
195 }
196 }
reed@android.comd8730ea2009-02-27 22:06:06 +0000197}
198
rmistry@google.comd6bab022013-12-02 13:50:38 +0000199DEF_TEST(String_SkStrSplit, r) {
200 SkTArray<SkString> results;
201
202 SkStrSplit("a-_b_c-dee--f-_-_-g-", "-_", &results);
203 REPORTER_ASSERT(r, results.count() == 6);
204 REPORTER_ASSERT(r, results[0].equals("a"));
205 REPORTER_ASSERT(r, results[1].equals("b"));
206 REPORTER_ASSERT(r, results[2].equals("c"));
207 REPORTER_ASSERT(r, results[3].equals("dee"));
208 REPORTER_ASSERT(r, results[4].equals("f"));
209 REPORTER_ASSERT(r, results[5].equals("g"));
mtkleincc334b32015-09-22 11:43:53 -0700210
211 results.reset();
212 SkStrSplit("\n", "\n", &results);
kkinnunen3e980c32015-12-23 01:33:00 -0800213 REPORTER_ASSERT(r, results.count() == 0);
mtkleincc334b32015-09-22 11:43:53 -0700214
215 results.reset();
216 SkStrSplit("", "\n", &results);
217 REPORTER_ASSERT(r, results.count() == 0);
kkinnunen3e980c32015-12-23 01:33:00 -0800218
219 results.reset();
220 SkStrSplit("a", "\n", &results);
221 REPORTER_ASSERT(r, results.count() == 1);
222 REPORTER_ASSERT(r, results[0].equals("a"));
223}
224DEF_TEST(String_SkStrSplit_All, r) {
225 SkTArray<SkString> results;
226 SkStrSplit("a-_b_c-dee--f-_-_-g-", "-_", kStrict_SkStrSplitMode, &results);
227 REPORTER_ASSERT(r, results.count() == 13);
228 REPORTER_ASSERT(r, results[0].equals("a"));
229 REPORTER_ASSERT(r, results[1].equals(""));
230 REPORTER_ASSERT(r, results[2].equals("b"));
231 REPORTER_ASSERT(r, results[3].equals("c"));
232 REPORTER_ASSERT(r, results[4].equals("dee"));
233 REPORTER_ASSERT(r, results[5].equals(""));
234 REPORTER_ASSERT(r, results[6].equals("f"));
235 REPORTER_ASSERT(r, results[7].equals(""));
236 REPORTER_ASSERT(r, results[8].equals(""));
237 REPORTER_ASSERT(r, results[9].equals(""));
238 REPORTER_ASSERT(r, results[10].equals(""));
239 REPORTER_ASSERT(r, results[11].equals("g"));
240 REPORTER_ASSERT(r, results[12].equals(""));
241
242 results.reset();
243 SkStrSplit("\n", "\n", kStrict_SkStrSplitMode, &results);
244 REPORTER_ASSERT(r, results.count() == 2);
245 REPORTER_ASSERT(r, results[0].equals(""));
246 REPORTER_ASSERT(r, results[1].equals(""));
247
248 results.reset();
249 SkStrSplit("", "\n", kStrict_SkStrSplitMode, &results);
250 REPORTER_ASSERT(r, results.count() == 0);
251
252 results.reset();
253 SkStrSplit("a", "\n", kStrict_SkStrSplitMode, &results);
254 REPORTER_ASSERT(r, results.count() == 1);
255 REPORTER_ASSERT(r, results[0].equals("a"));
256
257 results.reset();
258 SkStrSplit(",,", ",", kStrict_SkStrSplitMode, &results);
259 REPORTER_ASSERT(r, results.count() == 3);
260 REPORTER_ASSERT(r, results[0].equals(""));
261 REPORTER_ASSERT(r, results[1].equals(""));
262 REPORTER_ASSERT(r, results[2].equals(""));
263
264 results.reset();
265 SkStrSplit(",a,b,", ",", kStrict_SkStrSplitMode, &results);
266 REPORTER_ASSERT(r, results.count() == 4);
267 REPORTER_ASSERT(r, results[0].equals(""));
268 REPORTER_ASSERT(r, results[1].equals("a"));
269 REPORTER_ASSERT(r, results[2].equals("b"));
270 REPORTER_ASSERT(r, results[3].equals(""));
rmistry@google.comd6bab022013-12-02 13:50:38 +0000271}
Ben Wagneraf893662017-10-03 11:08:14 -0400272
273// https://bugs.chromium.org/p/skia/issues/detail?id=7107
274DEF_TEST(String_Threaded, r) {
Mike Klein03141d22017-10-30 11:57:15 -0400275 SkString str("foo");
276
277 std::thread threads[5];
278 for (auto& thread : threads) {
279 thread = std::thread([&] {
280 SkString copy = str;
281 (void)copy.equals("test");
282 });
Ben Wagneraf893662017-10-03 11:08:14 -0400283 }
Mike Klein03141d22017-10-30 11:57:15 -0400284 for (auto& thread : threads) {
Ben Wagneraf893662017-10-03 11:08:14 -0400285 thread.join();
286 }
287}
Mike Reed33f38b02018-02-14 13:58:06 -0500288
289// Ensure that the string allocate doesn't internally overflow any calculations, and accidentally
290// let us create a string with a requested length longer than we can manage.
291DEF_TEST(String_huge, r) {
292 // start testing slightly below max 32
293 size_t size = SK_MaxU32 - 16;
294 // See where we crash, and manually check that its at the right point.
295 //
296 // To test, change the false to true
297 while (false) {
298 // On a 64bit build, this should crash when size == 1 << 32, since we can't store
299 // that length in the string's header (which has a u32 slot for the length).
300 //
301 // On a 32bit build, this should crash the first time around, since we can't allocate
302 // anywhere near this amount.
303 //
304 SkString str(size);
305 size += 1;
306 }
307}
308
Hal Canary2d0e1242018-03-01 12:32:18 -0500309DEF_TEST(String_fromUTF16, r) {
310 // test data produced with `iconv`.
311 const uint16_t test1[] = {
312 0xD835, 0xDCD0, 0xD835, 0xDCD1, 0xD835, 0xDCD2, 0xD835, 0xDCD3, 0xD835, 0xDCD4, 0x0020,
313 0xD835, 0xDCD5, 0xD835, 0xDCD6, 0xD835, 0xDCD7, 0xD835, 0xDCD8, 0xD835, 0xDCD9
314 };
Hal Canaryee08b4a2018-03-01 15:56:37 -0500315 REPORTER_ASSERT(r, SkStringFromUTF16(test1, SK_ARRAY_COUNT(test1)).equals("𝓐𝓑𝓒𝓓𝓔 π“•π“–π“—π“˜π“™"));
Hal Canary2d0e1242018-03-01 12:32:18 -0500316
317 const uint16_t test2[] = {
318 0x0041, 0x0042, 0x0043, 0x0044, 0x0045, 0x0020, 0x0046, 0x0047, 0x0048, 0x0049, 0x004A,
319 };
Hal Canaryee08b4a2018-03-01 15:56:37 -0500320 REPORTER_ASSERT(r, SkStringFromUTF16(test2, SK_ARRAY_COUNT(test2)).equals("ABCDE FGHIJ"));
Hal Canary2d0e1242018-03-01 12:32:18 -0500321
322 const uint16_t test3[] = {
323 0x03B1, 0x03B2, 0x03B3, 0x03B4, 0x03B5, 0x0020, 0x03B6, 0x03B7, 0x03B8, 0x03B9, 0x03BA,
324 };
Hal Canaryee08b4a2018-03-01 15:56:37 -0500325 REPORTER_ASSERT(r, SkStringFromUTF16(test3, SK_ARRAY_COUNT(test3)).equals("αβγδΡ ΢ηθικ"));
Hal Canary2d0e1242018-03-01 12:32:18 -0500326}
327