1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "base/strings/stringprintf.h"
9 #include "base/basictypes.h"
10 #include "testing/gtest/include/gtest/gtest.h"
16 // A helper for the StringAppendV test that follows.
18 // Just forwards its args to StringAppendV.
19 static void StringAppendVTestHelper(std::string
* out
, const char* format
, ...) {
22 StringAppendV(out
, format
, ap
);
28 TEST(StringPrintfTest
, StringPrintfEmpty
) {
29 EXPECT_EQ("", StringPrintf("%s", ""));
32 TEST(StringPrintfTest
, StringPrintfMisc
) {
33 EXPECT_EQ("123hello w", StringPrintf("%3d%2s %1c", 123, "hello", 'w'));
34 #if !defined(OS_ANDROID)
35 EXPECT_EQ(L
"123hello w", StringPrintf(L
"%3d%2ls %1lc", 123, L
"hello", 'w'));
39 TEST(StringPrintfTest
, StringAppendfEmptyString
) {
40 std::string
value("Hello");
41 StringAppendF(&value
, "%s", "");
42 EXPECT_EQ("Hello", value
);
44 #if !defined(OS_ANDROID)
45 std::wstring
valuew(L
"Hello");
46 StringAppendF(&valuew
, L
"%ls", L
"");
47 EXPECT_EQ(L
"Hello", valuew
);
51 TEST(StringPrintfTest
, StringAppendfString
) {
52 std::string
value("Hello");
53 StringAppendF(&value
, " %s", "World");
54 EXPECT_EQ("Hello World", value
);
56 #if !defined(OS_ANDROID)
57 std::wstring
valuew(L
"Hello");
58 StringAppendF(&valuew
, L
" %ls", L
"World");
59 EXPECT_EQ(L
"Hello World", valuew
);
63 TEST(StringPrintfTest
, StringAppendfInt
) {
64 std::string
value("Hello");
65 StringAppendF(&value
, " %d", 123);
66 EXPECT_EQ("Hello 123", value
);
68 #if !defined(OS_ANDROID)
69 std::wstring
valuew(L
"Hello");
70 StringAppendF(&valuew
, L
" %d", 123);
71 EXPECT_EQ(L
"Hello 123", valuew
);
75 // Make sure that lengths exactly around the initial buffer size are handled
77 TEST(StringPrintfTest
, StringPrintfBounds
) {
78 const int kSrcLen
= 1026;
80 for (size_t i
= 0; i
< arraysize(src
); i
++)
83 wchar_t srcw
[kSrcLen
];
84 for (size_t i
= 0; i
< arraysize(srcw
); i
++)
87 for (int i
= 1; i
< 3; i
++) {
90 SStringPrintf(&out
, "%s", src
);
91 EXPECT_STREQ(src
, out
.c_str());
93 #if !defined(OS_ANDROID)
94 srcw
[kSrcLen
- i
] = 0;
96 SStringPrintf(&outw
, L
"%ls", srcw
);
97 EXPECT_STREQ(srcw
, outw
.c_str());
102 // Test very large sprintfs that will cause the buffer to grow.
103 TEST(StringPrintfTest
, Grow
) {
105 for (size_t i
= 0; i
< arraysize(src
); i
++)
109 const char* fmt
= "%sB%sB%sB%sB%sB%sB%s";
112 SStringPrintf(&out
, fmt
, src
, src
, src
, src
, src
, src
, src
);
114 const int kRefSize
= 320000;
115 char* ref
= new char[kRefSize
];
117 sprintf_s(ref
, kRefSize
, fmt
, src
, src
, src
, src
, src
, src
, src
);
118 #elif defined(OS_POSIX)
119 snprintf(ref
, kRefSize
, fmt
, src
, src
, src
, src
, src
, src
, src
);
122 EXPECT_STREQ(ref
, out
.c_str());
126 TEST(StringPrintfTest
, StringAppendV
) {
128 StringAppendVTestHelper(&out
, "%d foo %s", 1, "bar");
129 EXPECT_EQ("1 foo bar", out
);
132 // Test the boundary condition for the size of the string_util's
134 TEST(StringPrintfTest
, GrowBoundary
) {
135 const int string_util_buf_len
= 1024;
136 // Our buffer should be one larger than the size of StringAppendVT's stack
138 const int buf_len
= string_util_buf_len
+ 1;
139 char src
[buf_len
+ 1]; // Need extra one for NULL-terminator.
140 for (int i
= 0; i
< buf_len
; ++i
)
145 SStringPrintf(&out
, "%s", src
);
147 EXPECT_STREQ(src
, out
.c_str());
150 // TODO(evanm): what's the proper cross-platform test here?
152 // sprintf in Visual Studio fails when given U+FFFF. This tests that the
153 // failure case is gracefuly handled.
154 TEST(StringPrintfTest
, Invalid
) {
160 SStringPrintf(&out
, L
"%ls", invalid
);
161 EXPECT_STREQ(L
"", out
.c_str());
165 // Test that the positional parameters work.
166 TEST(StringPrintfTest
, PositionalParameters
) {
168 SStringPrintf(&out
, "%1$s %1$s", "test");
169 EXPECT_STREQ("test test", out
.c_str());
173 SStringPrintf(&wout
, L
"%1$ls %1$ls", L
"test");
174 EXPECT_STREQ(L
"test test", wout
.c_str());
178 // Test that StringPrintf and StringAppendV do not change errno.
179 TEST(StringPrintfTest
, StringPrintfErrno
) {
181 EXPECT_EQ("", StringPrintf("%s", ""));
184 StringAppendVTestHelper(&out
, "%d foo %s", 1, "bar");