-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathStringUtilTest.cc
129 lines (113 loc) · 3.4 KB
/
StringUtilTest.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
/* Copyright (c) 2011-2020, Stanford University
*
* Copyright (c) 2011, Facebook
* startsWith() and endsWith() tests
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include <gtest/gtest.h>
#include "StringUtil.h"
namespace Roo {
namespace StringUtil {
namespace {
TEST(StringUtilTest, flags)
{
enum {
A = 1,
B = 2,
C = 4,
D = 8,
};
std::initializer_list<std::pair<int, const char*>> abc = {
{A, "A"},
{B, "B"},
{C, "C"},
};
EXPECT_EQ("0", flags(0, abc));
EXPECT_EQ("A", flags(A, abc));
EXPECT_EQ("A|B", flags(B | A, abc));
EXPECT_EQ("A|B|0x8", flags(B | A | D, abc));
}
// Tests for format come from the RAMCloud project.
TEST(StringUtilTest, formatBasic)
{
EXPECT_EQ("rofl3", format("rofl3"));
EXPECT_EQ("rofl3", format("r%sl%d", "of", 3));
}
TEST(StringUtilTest, formatLarge)
{
char x[3000];
memset(x, 0xcc, sizeof(x));
x[sizeof(x) - 1] = '\0';
EXPECT_EQ(x, format("%s", x));
}
TEST(StringUtilTest, isPrintableStr)
{
EXPECT_TRUE(isPrintable(""));
EXPECT_TRUE(isPrintable("foo"));
EXPECT_FALSE(isPrintable("\n"));
}
TEST(StringUtilTest, isPrintableData)
{
EXPECT_FALSE(isPrintable("", 0));
EXPECT_TRUE(isPrintable("", 1));
EXPECT_TRUE(isPrintable("foo", 4));
EXPECT_FALSE(isPrintable("foo", 3));
EXPECT_FALSE(isPrintable("\n", 2));
}
TEST(StringUtilTest, join)
{
EXPECT_EQ("", join(std::vector<std::string>{}, ","));
EXPECT_EQ("a", join(std::vector<std::string>{"a"}, ","));
EXPECT_EQ("abc;def;ghi",
join(std::vector<std::string>{"abc", "def", "ghi"}, ";"));
EXPECT_EQ(";abc\n;def;;",
join(std::vector<std::string>{"", "abc\n", "def", "", ""}, ";"));
}
TEST(StringUtilTest, split)
{
EXPECT_EQ((std::vector<std::string>{"abc", "def", "ghi"}),
split("abc;def;ghi", ';'));
EXPECT_EQ((std::vector<std::string>{"", "abc\n", "def", "", ""}),
split(";abc\n;def;;;", ';'));
}
TEST(StringUtilTest, startsWith)
{
EXPECT_TRUE(startsWith("foo", "foo"));
EXPECT_TRUE(startsWith("foo", "fo"));
EXPECT_TRUE(startsWith("foo", ""));
EXPECT_TRUE(startsWith("", ""));
EXPECT_FALSE(startsWith("f", "foo"));
}
TEST(StringUtilTest, endsWith)
{
EXPECT_TRUE(endsWith("foo", "foo"));
EXPECT_TRUE(endsWith("foo", "oo"));
EXPECT_TRUE(endsWith("foo", ""));
EXPECT_TRUE(endsWith("", ""));
EXPECT_FALSE(endsWith("o", "foo"));
}
TEST(StringUtilTest, toString)
{
EXPECT_EQ("3", toString(3));
}
TEST(StringUtilTest, trim)
{
EXPECT_EQ("abc", trim("abc"));
EXPECT_EQ("abc", trim(" abc "));
EXPECT_EQ("abc", trim("\tabc\n"));
EXPECT_EQ("", trim(" "));
}
} // namespace
} // namespace StringUtil
} // namespace Roo