File: stringify_enum_unittest.cc

package info (click to toggle)
chromium 145.0.7632.159-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,976,224 kB
  • sloc: cpp: 36,198,469; ansic: 7,634,080; javascript: 3,564,060; python: 1,649,622; xml: 838,470; asm: 717,087; pascal: 185,708; sh: 88,786; perl: 88,718; objc: 79,984; sql: 59,811; cs: 42,452; fortran: 24,101; makefile: 21,144; tcl: 15,277; php: 14,022; yacc: 9,066; ruby: 7,553; awk: 3,720; lisp: 3,233; lex: 1,328; ada: 727; jsp: 228; sed: 36
file content (258 lines) | stat: -rw-r--r-- 7,104 bytes parent folder | download | duplicates (6)
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "services/network/stringify_enum.h"

#include <sstream>
#include <string>
#include <string_view>
#include <type_traits>

#include "testing/gtest/include/gtest/gtest.h"

namespace network {

namespace {

enum class EnumClass {
  kValue0 = 0,
  kValue1 = 1,
  kMaxValue = kValue1,
};

enum ShoutyClassicEnum {
  SHOUTY_VALUE0 = 0,
  SHOUTY_VALUE1 = 1,
  MAX = SHOUTY_VALUE1,
};

enum class UsesMax {
  kValue0,
  kMax = kValue0,
};

enum class UsesCount {
  kValue0,
  kValue1,
  kCount,
};

enum ClassicUsingCount {
  CLASSIC_VALUE0,
  COUNT,
};

enum class MissingMaxValue {
  kValue0,
  kValue1,
};

enum class SparseSmall {
  kSmall = 10,
  kMedium = 20,
  kLarge = 30,
  kMaxValue = kLarge,
};

enum class SparseBig {
  kSmall = 100,
  kMedium = 200,
  kLarge = 300,
  kMaxValue = kLarge,
};

enum class HasNegativeValues {
  kMinusTwo = -2,
  kMinusOne = -1,
  kOne = 1,
  kMaxValue = kOne,
};

enum class HasNegativeMaxValue {
  kMinusTwo = -2,
  kMinusOne = -1,
  kMaxValue = kMinusOne,
};

enum class TooSmallMaxValue {
  kValue0,
  kValue1,
  kMax = kValue1,
  kValue2,
};

enum class TooBigMaxValue {
  kValue0,
  kValue1,
  kMax = 25,
};

// This verifies that a user-defined operator<< is correctly detected for
// unscoped enums even though the operator<< found by built-in decay to integer
// is ignored. The wrapping struct just stops kMaxValue leaking into the
// surrounding namespace and causing compiler errors.
struct NoLeak {
  enum HasStreamOperator {
    kStreaming0,
    kMaxValue = kStreaming0,
  };
};

std::ostream& operator<<(std::ostream& os,
                         const NoLeak::HasStreamOperator& value) {
  return os << (value == NoLeak::kStreaming0 ? "Streaming 0" : "Invalid");
}

enum class HasConstRefStreamOperator {
  kStreaming0,
  kMaxValue = kStreaming0,
};

std::ostream& operator<<(std::ostream& os,
                         const HasConstRefStreamOperator& value) {
  const bool zero = value == HasConstRefStreamOperator::kStreaming0;
  return os << "const ref value is " << (zero ? "0" : "not recognized");
}

struct AnonymousEnum {
  enum {
    kHasNoName,
    kMaxValue = kHasNoName,
  };
};

template <typename UnderlyingType>
struct WithUnderlying {
  enum Enum : UnderlyingType {
    kValue = 0,
    kMaxValue = kValue,
  };
};

// Utility to call StreamEnumValueTo() and return the output as a string.
template <typename T>
std::string Stream(T&& value) {
  std::ostringstream oss;
  StreamEnumValueTo(oss, std::forward<T>(value));
  return oss.str();
}

TEST(StringifyEnumTest, TestMany) {
  struct TestResult {
    std::string_view const_name;
    std::string streamed_name;
  };
  struct TestCase {
    TestResult result;
    std::string_view expected_const_name;
    std::string_view expected_streamed_name;
  };
  auto test = [](auto value) {
    // We use the "ForGenericCode" version of the function with relaxed
    // constraints to make it easier to test failure cases.
    return TestResult(GetEnumValueNameForGenericCode(value), Stream(value));
  };

  const TestCase cases[] = {
      {test(EnumClass::kValue0), "EnumClass::kValue0", "EnumClass::kValue0"},
      {test(EnumClass::kValue1), "EnumClass::kValue1", "EnumClass::kValue1"},
      {test(SHOUTY_VALUE0), "SHOUTY_VALUE0", "SHOUTY_VALUE0"},
      {test(SHOUTY_VALUE1), "SHOUTY_VALUE1", "SHOUTY_VALUE1"},
      {test(UsesMax::kValue0), "UsesMax::kValue0", "UsesMax::kValue0"},
      {test(UsesCount::kValue1), "UsesCount::kValue1", "UsesCount::kValue1"},
      {test(CLASSIC_VALUE0), "CLASSIC_VALUE0", "CLASSIC_VALUE0"},
      {test(MissingMaxValue::kValue0), "", "Unknown (0)"},
      {test(MissingMaxValue::kValue1), "", "Unknown (1)"},
      {test(SparseSmall::kLarge), "SparseSmall::kLarge", "SparseSmall::kLarge"},
      {test(static_cast<SparseSmall>(4)), "", "Unknown (4)"},
      {test(SparseBig::kLarge), "", "Unknown (300)"},
      {test(HasNegativeValues::kMinusOne), "", "Unknown (-1)"},
      {test(HasNegativeMaxValue::kMinusTwo), "", "Unknown (-2)"},
      {test(TooSmallMaxValue::kValue1), "TooSmallMaxValue::kValue1",
       "TooSmallMaxValue::kValue1"},
      {test(TooSmallMaxValue::kValue2), "", "Unknown (2)"},
      {test(TooBigMaxValue::kValue1), "TooBigMaxValue::kValue1",
       "TooBigMaxValue::kValue1"},
      {test(NoLeak::kStreaming0), "kStreaming0", "Streaming 0"},
      {test(HasConstRefStreamOperator::kStreaming0),
       "HasConstRefStreamOperator::kStreaming0", "const ref value is 0"},
      {test(AnonymousEnum::kHasNoName), "kHasNoName", "kHasNoName"},
  };
  for (const auto& [result, expected_const_name, expected_streamed_name] :
       cases) {
    SCOPED_TRACE(expected_streamed_name);
    EXPECT_EQ(result.const_name, expected_const_name);
    EXPECT_EQ(result.streamed_name, expected_streamed_name);
  }
}

enum class Streamable {
  kValue,
  kMaxValue = kValue,
};

// This weird templated operator<< lets us detect what type of value we were
// called with.
template <typename T>
  requires(std::same_as<std::remove_cvref_t<T>, Streamable>)
std::ostream& operator<<(std::ostream& os, T&& streamable) {
  if constexpr (std::is_lvalue_reference_v<T>) {
    if constexpr (std::is_const_v<std::remove_reference_t<T>>) {
      return os << "const lvalue ref";
    }
    return os << "mutable lvalue ref";
  }

  return os << "rvalue";
}

TEST(StringifyEnumTest, TestStreamingRefTypes) {
  EXPECT_EQ(Stream(Streamable::kValue), "rvalue");

  Streamable value = Streamable::kValue;
  EXPECT_EQ(Stream(value), "mutable lvalue ref");

  const Streamable const_value = value;
  EXPECT_EQ(Stream(const_value), "const lvalue ref");

  const Streamable& const_ref = value;
  EXPECT_EQ(Stream(const_ref), "const lvalue ref");

  Streamable& mutable_ref = value;
  EXPECT_EQ(Stream(mutable_ref), "mutable lvalue ref");

  EXPECT_EQ(Stream(std::move(value)), "rvalue");
}

// This is a typed test. See
// https://github.com/google/googletest/blob/main/docs/advanced.md#typed-tests.
template <typename T>
class StreamingEnumNoImplicitConversionsTest : public ::testing::Test {};

using IntegerTypes = ::testing::Types<uint8_t,
                                      int8_t,
                                      uint16_t,
                                      int16_t,
                                      uint32_t,
                                      int32_t,
                                      int,
                                      uint64_t,
                                      int64_t>;

TYPED_TEST_SUITE(StreamingEnumNoImplicitConversionsTest, IntegerTypes);

TYPED_TEST(StreamingEnumNoImplicitConversionsTest, NoImplicitConversions) {
  std::ostringstream oss;
  StreamEnumValueTo(oss, WithUnderlying<TypeParam>::kValue);
  EXPECT_EQ(oss.str(), "kValue");
}

TEST(StringifyEnumTest, GetEnumValueName) {
  // Just verify that GetEnumValueName is actually callable.
  EXPECT_EQ(GetEnumValueName(EnumClass::kValue0), "EnumClass::kValue0");
}

}  // namespace

}  // namespace network