blob: 2c5026c6829af161b5b7e30254340c5ac6e26456 [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001
2/*
3 * Copyright 2011 Google Inc.
4 *
5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
7 */
reed@android.comd8730ea2009-02-27 22:06:06 +00008#include "Test.h"
9#include "SkString.h"
tomhudson@google.com47e0a092011-07-08 17:49:22 +000010#include <stdarg.h>
11
12
13// Windows vsnprintf doesn't 0-terminate safely), but is so far
14// encapsulated in SkString that we can't test it directly.
15
16#ifdef SK_BUILD_FOR_WIN
17 #define VSNPRINTF(buffer, size, format, args) \
18 vsnprintf_s(buffer, size, _TRUNCATE, format, args)
19#else
20 #define VSNPRINTF vsnprintf
21#endif
22
23#define ARGS_TO_BUFFER(format, buffer, size) \
24 do { \
25 va_list args; \
26 va_start(args, format); \
27 VSNPRINTF(buffer, size, format, args); \
28 va_end(args); \
29 } while (0)
30
caryclark@google.com42639cd2012-06-06 12:03:39 +000031static void printfAnalog(char* buffer, int size, const char format[], ...) {
tomhudson@google.com47e0a092011-07-08 17:49:22 +000032 ARGS_TO_BUFFER(format, buffer, size);
33}
34
35
reed@android.comd8730ea2009-02-27 22:06:06 +000036
37static void TestString(skiatest::Reporter* reporter) {
38 SkString a;
39 SkString b((size_t)0);
40 SkString c("");
41 SkString d(NULL, 0);
42
43 REPORTER_ASSERT(reporter, a.isEmpty());
44 REPORTER_ASSERT(reporter, a == b && a == c && a == d);
45
46 a.set("hello");
47 b.set("hellox", 5);
48 c.set(a);
49 d.resize(5);
50 memcpy(d.writable_str(), "helloz", 5);
51
52 REPORTER_ASSERT(reporter, !a.isEmpty());
53 REPORTER_ASSERT(reporter, a.size() == 5);
54 REPORTER_ASSERT(reporter, a == b && a == c && a == d);
55 REPORTER_ASSERT(reporter, a.equals("hello", 5));
56 REPORTER_ASSERT(reporter, a.equals("hello"));
57 REPORTER_ASSERT(reporter, !a.equals("help"));
58
epoger@google.comc4ae9742012-04-27 17:11:31 +000059 REPORTER_ASSERT(reporter, a.startsWith("hell"));
epoger@google.come8ebeb12012-10-29 16:42:11 +000060 REPORTER_ASSERT(reporter, a.startsWith('h'));
epoger@google.comc4ae9742012-04-27 17:11:31 +000061 REPORTER_ASSERT(reporter, !a.startsWith( "ell"));
epoger@google.come8ebeb12012-10-29 16:42:11 +000062 REPORTER_ASSERT(reporter, !a.startsWith( 'e'));
epoger@google.comc4ae9742012-04-27 17:11:31 +000063 REPORTER_ASSERT(reporter, a.startsWith(""));
64 REPORTER_ASSERT(reporter, a.endsWith("llo"));
epoger@google.come8ebeb12012-10-29 16:42:11 +000065 REPORTER_ASSERT(reporter, a.endsWith('o'));
epoger@google.comc4ae9742012-04-27 17:11:31 +000066 REPORTER_ASSERT(reporter, !a.endsWith("ll" ));
epoger@google.come8ebeb12012-10-29 16:42:11 +000067 REPORTER_ASSERT(reporter, !a.endsWith('l'));
epoger@google.comc4ae9742012-04-27 17:11:31 +000068 REPORTER_ASSERT(reporter, a.endsWith(""));
69 REPORTER_ASSERT(reporter, a.contains("he"));
70 REPORTER_ASSERT(reporter, a.contains("ll"));
71 REPORTER_ASSERT(reporter, a.contains("lo"));
72 REPORTER_ASSERT(reporter, a.contains("hello"));
73 REPORTER_ASSERT(reporter, !a.contains("hellohello"));
74 REPORTER_ASSERT(reporter, a.contains(""));
epoger@google.come8ebeb12012-10-29 16:42:11 +000075 REPORTER_ASSERT(reporter, a.contains('e'));
76 REPORTER_ASSERT(reporter, !a.contains('z'));
rmistry@google.comd6176b02012-08-23 18:14:13 +000077
reed@android.comd8730ea2009-02-27 22:06:06 +000078 SkString e(a);
79 SkString f("hello");
80 SkString g("helloz", 5);
81
82 REPORTER_ASSERT(reporter, a == e && a == f && a == g);
83
84 b.set("world");
85 c = b;
86 REPORTER_ASSERT(reporter, a != b && a != c && b == c);
87
88 a.append(" world");
89 e.append("worldz", 5);
90 e.insert(5, " ");
91 f.set("world");
92 f.prepend("hello ");
93 REPORTER_ASSERT(reporter, a.equals("hello world") && a == e && a == f);
94
95 a.reset();
96 b.resize(0);
97 REPORTER_ASSERT(reporter, a.isEmpty() && b.isEmpty() && a == b);
98
99 a.set("a");
100 a.set("ab");
101 a.set("abc");
102 a.set("abcd");
vandebo@chromium.orgd877fdb2010-10-12 23:08:13 +0000103
104 a.set("");
105 a.appendS64(72036854775808LL, 0);
106 REPORTER_ASSERT(reporter, a.equals("72036854775808"));
107
108 a.set("");
109 a.appendS64(-1844674407370LL, 0);
110 REPORTER_ASSERT(reporter, a.equals("-1844674407370"));
111
112 a.set("");
113 a.appendS64(73709551616LL, 15);
114 REPORTER_ASSERT(reporter, a.equals("000073709551616"));
115
116 a.set("");
117 a.appendS64(-429496729612LL, 15);
118 REPORTER_ASSERT(reporter, a.equals("-000429496729612"));
reed@google.comfa06e522011-02-28 21:29:58 +0000119
120 static const struct {
121 SkScalar fValue;
122 const char* fString;
123 } gRec[] = {
124 { 0, "0" },
125 { SK_Scalar1, "1" },
126 { -SK_Scalar1, "-1" },
127 { SK_Scalar1/2, "0.5" },
reed@google.com8072e4f2011-03-01 15:44:08 +0000128#ifdef SK_SCALAR_IS_FLOAT
tomhudson@google.com47e0a092011-07-08 17:49:22 +0000129 #ifdef SK_BUILD_FOR_WIN
130 { 3.4028234e38f, "3.4028235e+038" },
131 { -3.4028234e38f, "-3.4028235e+038" },
132 #else
reed@google.com8072e4f2011-03-01 15:44:08 +0000133 { 3.4028234e38f, "3.4028235e+38" },
134 { -3.4028234e38f, "-3.4028235e+38" },
tomhudson@google.com47e0a092011-07-08 17:49:22 +0000135 #endif
reed@google.com8072e4f2011-03-01 15:44:08 +0000136#endif
reed@google.comfa06e522011-02-28 21:29:58 +0000137 };
138 for (size_t i = 0; i < SK_ARRAY_COUNT(gRec); i++) {
139 a.reset();
140 a.appendScalar(gRec[i].fValue);
reed@google.com8072e4f2011-03-01 15:44:08 +0000141 REPORTER_ASSERT(reporter, a.size() <= SkStrAppendScalar_MaxSize);
142// SkDebugf(" received <%s> expected <%s>\n", a.c_str(), gRec[i].fString);
reed@google.comfa06e522011-02-28 21:29:58 +0000143 REPORTER_ASSERT(reporter, a.equals(gRec[i].fString));
144 }
tomhudson@google.com3a1f6a02011-06-30 14:39:52 +0000145
146 REPORTER_ASSERT(reporter, SkStringPrintf("%i", 0).equals("0"));
tomhudson@google.com47e0a092011-07-08 17:49:22 +0000147
148 char buffer [40];
149 memset(buffer, 'a', 40);
150 REPORTER_ASSERT(reporter, buffer[18] == 'a');
151 REPORTER_ASSERT(reporter, buffer[19] == 'a');
152 REPORTER_ASSERT(reporter, buffer[20] == 'a');
153 printfAnalog(buffer, 20, "%30d", 0);
154 REPORTER_ASSERT(reporter, buffer[18] == ' ');
155 REPORTER_ASSERT(reporter, buffer[19] == 0);
156 REPORTER_ASSERT(reporter, buffer[20] == 'a');
rmistry@google.comd6176b02012-08-23 18:14:13 +0000157
reed@android.comd8730ea2009-02-27 22:06:06 +0000158}
159
160#include "TestClassDef.h"
161DEFINE_TESTCLASS("String", StringTestClass, TestString)