googletest/googlemock/test/gmock-internal-utils_test.cc
Go to the documentation of this file.
1 // Copyright 2007, Google Inc.
2 // All rights reserved.
3 //
4 // Redistribution and use in source and binary forms, with or without
5 // modification, are permitted provided that the following conditions are
6 // met:
7 //
8 // * Redistributions of source code must retain the above copyright
9 // notice, this list of conditions and the following disclaimer.
10 // * Redistributions in binary form must reproduce the above
11 // copyright notice, this list of conditions and the following disclaimer
12 // in the documentation and/or other materials provided with the
13 // distribution.
14 // * Neither the name of Google Inc. nor the names of its
15 // contributors may be used to endorse or promote products derived from
16 // this software without specific prior written permission.
17 //
18 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 
30 
31 // Google Mock - a framework for writing C++ mock classes.
32 //
33 // This file tests the internal utilities.
34 
35 #include "gmock/internal/gmock-internal-utils.h"
36 
37 #include <stdlib.h>
38 
39 #include <cstdint>
40 #include <map>
41 #include <memory>
42 #include <sstream>
43 #include <string>
44 #include <vector>
45 
46 #include "gmock/gmock.h"
47 #include "gmock/internal/gmock-port.h"
48 #include "gtest/gtest-spi.h"
49 #include "gtest/gtest.h"
50 
51 // Indicates that this translation unit is part of Google Test's
52 // implementation. It must come before gtest-internal-inl.h is
53 // included, or there will be a compiler error. This trick is to
54 // prevent a user from accidentally including gtest-internal-inl.h in
55 // their code.
56 #define GTEST_IMPLEMENTATION_ 1
57 #include "src/gtest-internal-inl.h"
58 #undef GTEST_IMPLEMENTATION_
59 
60 #if GTEST_OS_CYGWIN
61 # include <sys/types.h> // For ssize_t. NOLINT
62 #endif
63 
64 namespace proto2 {
65 class Message;
66 } // namespace proto2
67 
68 namespace testing {
69 namespace internal {
70 
71 namespace {
72 
73 TEST(JoinAsKeyValueTupleTest, JoinsEmptyTuple) {
75 }
76 
77 TEST(JoinAsKeyValueTupleTest, JoinsOneTuple) {
78  EXPECT_EQ("(a: 1)", JoinAsKeyValueTuple({"a"}, {"1"}));
79 }
80 
81 TEST(JoinAsKeyValueTupleTest, JoinsTwoTuple) {
82  EXPECT_EQ("(a: 1, b: 2)", JoinAsKeyValueTuple({"a", "b"}, {"1", "2"}));
83 }
84 
85 TEST(JoinAsKeyValueTupleTest, JoinsTenTuple) {
86  EXPECT_EQ(
87  "(a: 1, b: 2, c: 3, d: 4, e: 5, f: 6, g: 7, h: 8, i: 9, j: 10)",
88  JoinAsKeyValueTuple({"a", "b", "c", "d", "e", "f", "g", "h", "i", "j"},
89  {"1", "2", "3", "4", "5", "6", "7", "8", "9", "10"}));
90 }
91 
92 TEST(ConvertIdentifierNameToWordsTest, WorksWhenNameContainsNoWord) {
96 }
97 
98 TEST(ConvertIdentifierNameToWordsTest, WorksWhenNameContainsDigits) {
102  EXPECT_EQ("34 56", ConvertIdentifierNameToWords("_34_56"));
103 }
104 
105 TEST(ConvertIdentifierNameToWordsTest, WorksWhenNameContainsCamelCaseWords) {
106  EXPECT_EQ("a big word", ConvertIdentifierNameToWords("ABigWord"));
107  EXPECT_EQ("foo bar", ConvertIdentifierNameToWords("FooBar"));
108  EXPECT_EQ("foo", ConvertIdentifierNameToWords("Foo_"));
109  EXPECT_EQ("foo bar", ConvertIdentifierNameToWords("_Foo_Bar_"));
110  EXPECT_EQ("foo and bar", ConvertIdentifierNameToWords("_Foo__And_Bar"));
111 }
112 
113 TEST(ConvertIdentifierNameToWordsTest, WorksWhenNameContains_SeparatedWords) {
114  EXPECT_EQ("foo bar", ConvertIdentifierNameToWords("foo_bar"));
115  EXPECT_EQ("foo", ConvertIdentifierNameToWords("_foo_"));
116  EXPECT_EQ("foo bar", ConvertIdentifierNameToWords("_foo_bar_"));
117  EXPECT_EQ("foo and bar", ConvertIdentifierNameToWords("_foo__and_bar"));
118 }
119 
120 TEST(ConvertIdentifierNameToWordsTest, WorksWhenNameIsMixture) {
121  EXPECT_EQ("foo bar 123", ConvertIdentifierNameToWords("Foo_bar123"));
122  EXPECT_EQ("chapter 11 section 1",
123  ConvertIdentifierNameToWords("_Chapter11Section_1_"));
124 }
125 
126 TEST(GetRawPointerTest, WorksForSmartPointers) {
127  const char* const raw_p1 = new const char('a'); // NOLINT
128  const std::unique_ptr<const char> p1(raw_p1);
129  EXPECT_EQ(raw_p1, GetRawPointer(p1));
130  double* const raw_p2 = new double(2.5); // NOLINT
131  const std::shared_ptr<double> p2(raw_p2);
132  EXPECT_EQ(raw_p2, GetRawPointer(p2));
133 }
134 
135 TEST(GetRawPointerTest, WorksForRawPointers) {
136  int* p = nullptr;
137  EXPECT_TRUE(nullptr == GetRawPointer(p));
138  int n = 1;
139  EXPECT_EQ(&n, GetRawPointer(&n));
140 }
141 
142 TEST(GetRawPointerTest, WorksForStdReferenceWrapper) {
143  int n = 1;
145  EXPECT_EQ(&n, GetRawPointer(std::cref(n)));
146 }
147 
148 // Tests KindOf<T>.
149 
150 class Base {};
151 class Derived : public Base {};
152 
153 TEST(KindOfTest, Bool) {
154  EXPECT_EQ(kBool, GMOCK_KIND_OF_(bool)); // NOLINT
155 }
156 
157 TEST(KindOfTest, Integer) {
158  EXPECT_EQ(kInteger, GMOCK_KIND_OF_(char)); // NOLINT
159  EXPECT_EQ(kInteger, GMOCK_KIND_OF_(signed char)); // NOLINT
160  EXPECT_EQ(kInteger, GMOCK_KIND_OF_(unsigned char)); // NOLINT
161  EXPECT_EQ(kInteger, GMOCK_KIND_OF_(short)); // NOLINT
162  EXPECT_EQ(kInteger, GMOCK_KIND_OF_(unsigned short)); // NOLINT
163  EXPECT_EQ(kInteger, GMOCK_KIND_OF_(int)); // NOLINT
164  EXPECT_EQ(kInteger, GMOCK_KIND_OF_(unsigned int)); // NOLINT
165  EXPECT_EQ(kInteger, GMOCK_KIND_OF_(long)); // NOLINT
166  EXPECT_EQ(kInteger, GMOCK_KIND_OF_(unsigned long)); // NOLINT
167  EXPECT_EQ(kInteger, GMOCK_KIND_OF_(long long)); // NOLINT
168  EXPECT_EQ(kInteger, GMOCK_KIND_OF_(unsigned long long)); // NOLINT
169  EXPECT_EQ(kInteger, GMOCK_KIND_OF_(wchar_t)); // NOLINT
170  EXPECT_EQ(kInteger, GMOCK_KIND_OF_(size_t)); // NOLINT
171 #if GTEST_OS_LINUX || GTEST_OS_MAC || GTEST_OS_CYGWIN
172  // ssize_t is not defined on Windows and possibly some other OSes.
174 #endif
175 }
176 
177 TEST(KindOfTest, FloatingPoint) {
178  EXPECT_EQ(kFloatingPoint, GMOCK_KIND_OF_(float)); // NOLINT
179  EXPECT_EQ(kFloatingPoint, GMOCK_KIND_OF_(double)); // NOLINT
180  EXPECT_EQ(kFloatingPoint, GMOCK_KIND_OF_(long double)); // NOLINT
181 }
182 
183 TEST(KindOfTest, Other) {
184  EXPECT_EQ(kOther, GMOCK_KIND_OF_(void*)); // NOLINT
185  EXPECT_EQ(kOther, GMOCK_KIND_OF_(char**)); // NOLINT
186  EXPECT_EQ(kOther, GMOCK_KIND_OF_(Base)); // NOLINT
187 }
188 
189 // Tests LosslessArithmeticConvertible<T, U>.
190 
191 TEST(LosslessArithmeticConvertibleTest, BoolToBool) {
193 }
194 
195 TEST(LosslessArithmeticConvertibleTest, BoolToInteger) {
198  EXPECT_TRUE(
200 }
201 
202 TEST(LosslessArithmeticConvertibleTest, BoolToFloatingPoint) {
205 }
206 
207 TEST(LosslessArithmeticConvertibleTest, IntegerToBool) {
210 }
211 
212 TEST(LosslessArithmeticConvertibleTest, IntegerToInteger) {
213  // Unsigned => larger signed is fine.
215 
216  // Unsigned => larger unsigned is fine.
218  unsigned short, uint64_t>::value)); // NOLINT
219 
220  // Signed => unsigned is not fine.
222  short, uint64_t>::value)); // NOLINT
224  signed char, unsigned int>::value)); // NOLINT
225 
226  // Same size and same signedness: fine too.
228  unsigned char, unsigned char>::value));
232  unsigned long, unsigned long>::value)); // NOLINT
233 
234  // Same size, different signedness: not fine.
236  unsigned char, signed char>::value));
239 
240  // Larger size => smaller size is not fine.
244 }
245 
246 TEST(LosslessArithmeticConvertibleTest, IntegerToFloatingPoint) {
247  // Integers cannot be losslessly converted to floating-points, as
248  // the format of the latter is implementation-defined.
252  short, long double>::value)); // NOLINT
253 }
254 
255 TEST(LosslessArithmeticConvertibleTest, FloatingPointToBool) {
258 }
259 
260 TEST(LosslessArithmeticConvertibleTest, FloatingPointToInteger) {
264 }
265 
266 TEST(LosslessArithmeticConvertibleTest, FloatingPointToFloatingPoint) {
267  // Smaller size => larger size is fine.
271 
272  // Same size: fine.
275 
276  // Larger size => smaller size is not fine.
279  if (sizeof(double) == sizeof(long double)) { // NOLINT
281  // In some implementations (e.g. MSVC), double and long double
282  // have the same size.
283  EXPECT_TRUE((LosslessArithmeticConvertible<long double, double>::value));
284  } else {
286  }
287 }
288 
289 // Tests the TupleMatches() template function.
290 
291 TEST(TupleMatchesTest, WorksForSize0) {
292  std::tuple<> matchers;
293  std::tuple<> values;
294 
296 }
297 
298 TEST(TupleMatchesTest, WorksForSize1) {
299  std::tuple<Matcher<int> > matchers(Eq(1));
300  std::tuple<int> values1(1), values2(2);
301 
302  EXPECT_TRUE(TupleMatches(matchers, values1));
304 }
305 
306 TEST(TupleMatchesTest, WorksForSize2) {
307  std::tuple<Matcher<int>, Matcher<char> > matchers(Eq(1), Eq('a'));
308  std::tuple<int, char> values1(1, 'a'), values2(1, 'b'), values3(2, 'a'),
309  values4(2, 'b');
310 
311  EXPECT_TRUE(TupleMatches(matchers, values1));
315 }
316 
317 TEST(TupleMatchesTest, WorksForSize5) {
318  std::tuple<Matcher<int>, Matcher<char>, Matcher<bool>,
319  Matcher<long>, // NOLINT
320  Matcher<std::string> >
321  matchers(Eq(1), Eq('a'), Eq(true), Eq(2L), Eq("hi"));
322  std::tuple<int, char, bool, long, std::string> // NOLINT
323  values1(1, 'a', true, 2L, "hi"), values2(1, 'a', true, 2L, "hello"),
324  values3(2, 'a', true, 2L, "hi");
325 
326  EXPECT_TRUE(TupleMatches(matchers, values1));
329 }
330 
331 // Tests that Assert(true, ...) succeeds.
332 TEST(AssertTest, SucceedsOnTrue) {
333  Assert(true, __FILE__, __LINE__, "This should succeed.");
334  Assert(true, __FILE__, __LINE__); // This should succeed too.
335 }
336 
337 // Tests that Assert(false, ...) generates a fatal failure.
338 TEST(AssertTest, FailsFatallyOnFalse) {
340  Assert(false, __FILE__, __LINE__, "This should fail.");
341  }, "");
342 
344  Assert(false, __FILE__, __LINE__);
345  }, "");
346 }
347 
348 // Tests that Expect(true, ...) succeeds.
349 TEST(ExpectTest, SucceedsOnTrue) {
350  Expect(true, __FILE__, __LINE__, "This should succeed.");
351  Expect(true, __FILE__, __LINE__); // This should succeed too.
352 }
353 
354 // Tests that Expect(false, ...) generates a non-fatal failure.
355 TEST(ExpectTest, FailsNonfatallyOnFalse) {
356  EXPECT_NONFATAL_FAILURE({ // NOLINT
357  Expect(false, __FILE__, __LINE__, "This should fail.");
358  }, "This should fail");
359 
360  EXPECT_NONFATAL_FAILURE({ // NOLINT
361  Expect(false, __FILE__, __LINE__);
362  }, "Expectation failed");
363 }
364 
365 // Tests LogIsVisible().
366 
367 class LogIsVisibleTest : public ::testing::Test {
368  protected:
369  void SetUp() override { original_verbose_ = GMOCK_FLAG_GET(verbose); }
370 
371  void TearDown() override { GMOCK_FLAG_SET(verbose, original_verbose_); }
372 
374 };
375 
376 TEST_F(LogIsVisibleTest, AlwaysReturnsTrueIfVerbosityIsInfo) {
380 }
381 
382 TEST_F(LogIsVisibleTest, AlwaysReturnsFalseIfVerbosityIsError) {
386 }
387 
388 TEST_F(LogIsVisibleTest, WorksWhenVerbosityIsWarning) {
392 }
393 
394 #if GTEST_HAS_STREAM_REDIRECTION
395 
396 // Tests the Log() function.
397 
398 // Verifies that Log() behaves correctly for the given verbosity level
399 // and log severity.
400 void TestLogWithSeverity(const std::string& verbosity, LogSeverity severity,
401  bool should_print) {
402  const std::string old_flag = GMOCK_FLAG_GET(verbose);
404  CaptureStdout();
405  Log(severity, "Test log.\n", 0);
406  if (should_print) {
409  severity == kWarning ?
410  "^\nGMOCK WARNING:\nTest log\\.\nStack trace:\n" :
411  "^\nTest log\\.\nStack trace:\n"));
412  } else {
414  }
415  GMOCK_FLAG_SET(verbose, old_flag);
416 }
417 
418 // Tests that when the stack_frames_to_skip parameter is negative,
419 // Log() doesn't include the stack trace in the output.
420 TEST(LogTest, NoStackTraceWhenStackFramesToSkipIsNegative) {
421  const std::string saved_flag = GMOCK_FLAG_GET(verbose);
423  CaptureStdout();
424  Log(kInfo, "Test log.\n", -1);
425  EXPECT_STREQ("\nTest log.\n", GetCapturedStdout().c_str());
426  GMOCK_FLAG_SET(verbose, saved_flag);
427 }
428 
429 struct MockStackTraceGetter : testing::internal::OsStackTraceGetterInterface {
430  std::string CurrentStackTrace(int max_depth, int skip_count) override {
431  return (testing::Message() << max_depth << "::" << skip_count << "\n")
432  .GetString();
433  }
434  void UponLeavingGTest() override {}
435 };
436 
437 // Tests that in opt mode, a positive stack_frames_to_skip argument is
438 // treated as 0.
439 TEST(LogTest, NoSkippingStackFrameInOptMode) {
440  MockStackTraceGetter* mock_os_stack_trace_getter = new MockStackTraceGetter;
441  GetUnitTestImpl()->set_os_stack_trace_getter(mock_os_stack_trace_getter);
442 
443  CaptureStdout();
444  Log(kWarning, "Test log.\n", 100);
446 
447  std::string expected_trace =
448  (testing::Message() << GTEST_FLAG_GET(stack_trace_depth) << "::")
449  .GetString();
450  std::string expected_message =
451  "\nGMOCK WARNING:\n"
452  "Test log.\n"
453  "Stack trace:\n" +
454  expected_trace;
455  EXPECT_THAT(log, HasSubstr(expected_message));
456  int skip_count = atoi(log.substr(expected_message.size()).c_str());
457 
458 # if defined(NDEBUG)
459  // In opt mode, no stack frame should be skipped.
460  const int expected_skip_count = 0;
461 # else
462  // In dbg mode, the stack frames should be skipped.
463  const int expected_skip_count = 100;
464 # endif
465 
466  // Note that each inner implementation layer will +1 the number to remove
467  // itself from the trace. This means that the value is a little higher than
468  // expected, but close enough.
469  EXPECT_THAT(skip_count,
470  AllOf(Ge(expected_skip_count), Le(expected_skip_count + 10)));
471 
472  // Restores the default OS stack trace getter.
474 }
475 
476 // Tests that all logs are printed when the value of the
477 // --gmock_verbose flag is "info".
478 TEST(LogTest, AllLogsArePrintedWhenVerbosityIsInfo) {
479  TestLogWithSeverity(kInfoVerbosity, kInfo, true);
480  TestLogWithSeverity(kInfoVerbosity, kWarning, true);
481 }
482 
483 // Tests that only warnings are printed when the value of the
484 // --gmock_verbose flag is "warning".
485 TEST(LogTest, OnlyWarningsArePrintedWhenVerbosityIsWarning) {
486  TestLogWithSeverity(kWarningVerbosity, kInfo, false);
487  TestLogWithSeverity(kWarningVerbosity, kWarning, true);
488 }
489 
490 // Tests that no logs are printed when the value of the
491 // --gmock_verbose flag is "error".
492 TEST(LogTest, NoLogsArePrintedWhenVerbosityIsError) {
493  TestLogWithSeverity(kErrorVerbosity, kInfo, false);
494  TestLogWithSeverity(kErrorVerbosity, kWarning, false);
495 }
496 
497 // Tests that only warnings are printed when the value of the
498 // --gmock_verbose flag is invalid.
499 TEST(LogTest, OnlyWarningsArePrintedWhenVerbosityIsInvalid) {
500  TestLogWithSeverity("invalid", kInfo, false);
501  TestLogWithSeverity("invalid", kWarning, true);
502 }
503 
504 // Verifies that Log() behaves correctly for the given verbosity level
505 // and log severity.
506 std::string GrabOutput(void(*logger)(), const char* verbosity) {
507  const std::string saved_flag = GMOCK_FLAG_GET(verbose);
509  CaptureStdout();
510  logger();
511  GMOCK_FLAG_SET(verbose, saved_flag);
512  return GetCapturedStdout();
513 }
514 
515 class DummyMock {
516  public:
517  MOCK_METHOD0(TestMethod, void());
518  MOCK_METHOD1(TestMethodArg, void(int dummy));
519 };
520 
521 void ExpectCallLogger() {
522  DummyMock mock;
523  EXPECT_CALL(mock, TestMethod());
524  mock.TestMethod();
525 }
526 
527 // Verifies that EXPECT_CALL logs if the --gmock_verbose flag is set to "info".
528 TEST(ExpectCallTest, LogsWhenVerbosityIsInfo) {
529  EXPECT_THAT(std::string(GrabOutput(ExpectCallLogger, kInfoVerbosity)),
530  HasSubstr("EXPECT_CALL(mock, TestMethod())"));
531 }
532 
533 // Verifies that EXPECT_CALL doesn't log
534 // if the --gmock_verbose flag is set to "warning".
535 TEST(ExpectCallTest, DoesNotLogWhenVerbosityIsWarning) {
536  EXPECT_STREQ("", GrabOutput(ExpectCallLogger, kWarningVerbosity).c_str());
537 }
538 
539 // Verifies that EXPECT_CALL doesn't log
540 // if the --gmock_verbose flag is set to "error".
541 TEST(ExpectCallTest, DoesNotLogWhenVerbosityIsError) {
542  EXPECT_STREQ("", GrabOutput(ExpectCallLogger, kErrorVerbosity).c_str());
543 }
544 
545 void OnCallLogger() {
546  DummyMock mock;
547  ON_CALL(mock, TestMethod());
548 }
549 
550 // Verifies that ON_CALL logs if the --gmock_verbose flag is set to "info".
551 TEST(OnCallTest, LogsWhenVerbosityIsInfo) {
552  EXPECT_THAT(std::string(GrabOutput(OnCallLogger, kInfoVerbosity)),
553  HasSubstr("ON_CALL(mock, TestMethod())"));
554 }
555 
556 // Verifies that ON_CALL doesn't log
557 // if the --gmock_verbose flag is set to "warning".
558 TEST(OnCallTest, DoesNotLogWhenVerbosityIsWarning) {
559  EXPECT_STREQ("", GrabOutput(OnCallLogger, kWarningVerbosity).c_str());
560 }
561 
562 // Verifies that ON_CALL doesn't log if
563 // the --gmock_verbose flag is set to "error".
564 TEST(OnCallTest, DoesNotLogWhenVerbosityIsError) {
565  EXPECT_STREQ("", GrabOutput(OnCallLogger, kErrorVerbosity).c_str());
566 }
567 
568 void OnCallAnyArgumentLogger() {
569  DummyMock mock;
570  ON_CALL(mock, TestMethodArg(_));
571 }
572 
573 // Verifies that ON_CALL prints provided _ argument.
574 TEST(OnCallTest, LogsAnythingArgument) {
575  EXPECT_THAT(std::string(GrabOutput(OnCallAnyArgumentLogger, kInfoVerbosity)),
576  HasSubstr("ON_CALL(mock, TestMethodArg(_)"));
577 }
578 
579 #endif // GTEST_HAS_STREAM_REDIRECTION
580 
581 // Tests StlContainerView.
582 
583 TEST(StlContainerViewTest, WorksForStlContainer) {
584  StaticAssertTypeEq<std::vector<int>,
585  StlContainerView<std::vector<int> >::type>();
586  StaticAssertTypeEq<const std::vector<double>&,
587  StlContainerView<std::vector<double> >::const_reference>();
588 
589  typedef std::vector<char> Chars;
590  Chars v1;
591  const Chars& v2(StlContainerView<Chars>::ConstReference(v1));
592  EXPECT_EQ(&v1, &v2);
593 
594  v1.push_back('a');
595  Chars v3 = StlContainerView<Chars>::Copy(v1);
596  EXPECT_THAT(v3, Eq(v3));
597 }
598 
599 TEST(StlContainerViewTest, WorksForStaticNativeArray) {
600  StaticAssertTypeEq<NativeArray<int>,
602  StaticAssertTypeEq<NativeArray<double>,
604  StaticAssertTypeEq<NativeArray<char[3]>,
606 
607  StaticAssertTypeEq<const NativeArray<int>,
609 
610  int a1[3] = { 0, 1, 2 };
611  NativeArray<int> a2 = StlContainerView<int[3]>::ConstReference(a1);
612  EXPECT_EQ(3U, a2.size());
613  EXPECT_EQ(a1, a2.begin());
614 
615  const NativeArray<int> a3 = StlContainerView<int[3]>::Copy(a1);
616  ASSERT_EQ(3U, a3.size());
617  EXPECT_EQ(0, a3.begin()[0]);
618  EXPECT_EQ(1, a3.begin()[1]);
619  EXPECT_EQ(2, a3.begin()[2]);
620 
621  // Makes sure a1 and a3 aren't aliases.
622  a1[0] = 3;
623  EXPECT_EQ(0, a3.begin()[0]);
624 }
625 
626 TEST(StlContainerViewTest, WorksForDynamicNativeArray) {
627  StaticAssertTypeEq<NativeArray<int>,
628  StlContainerView<std::tuple<const int*, size_t> >::type>();
630  NativeArray<double>,
631  StlContainerView<std::tuple<std::shared_ptr<double>, int> >::type>();
632 
634  const NativeArray<int>,
635  StlContainerView<std::tuple<const int*, int> >::const_reference>();
636 
637  int a1[3] = { 0, 1, 2 };
638  const int* const p1 = a1;
639  NativeArray<int> a2 =
640  StlContainerView<std::tuple<const int*, int> >::ConstReference(
641  std::make_tuple(p1, 3));
642  EXPECT_EQ(3U, a2.size());
643  EXPECT_EQ(a1, a2.begin());
644 
645  const NativeArray<int> a3 = StlContainerView<std::tuple<int*, size_t> >::Copy(
646  std::make_tuple(static_cast<int*>(a1), 3));
647  ASSERT_EQ(3U, a3.size());
648  EXPECT_EQ(0, a3.begin()[0]);
649  EXPECT_EQ(1, a3.begin()[1]);
650  EXPECT_EQ(2, a3.begin()[2]);
651 
652  // Makes sure a1 and a3 aren't aliases.
653  a1[0] = 3;
654  EXPECT_EQ(0, a3.begin()[0]);
655 }
656 
657 // Tests the Function template struct.
658 
659 TEST(FunctionTest, Nullary) {
660  typedef Function<int()> F; // NOLINT
661  EXPECT_EQ(0u, F::ArgumentCount);
663  EXPECT_TRUE((std::is_same<std::tuple<>, F::ArgumentTuple>::value));
664  EXPECT_TRUE((std::is_same<std::tuple<>, F::ArgumentMatcherTuple>::value));
665  EXPECT_TRUE((std::is_same<void(), F::MakeResultVoid>::value));
666  EXPECT_TRUE((std::is_same<IgnoredValue(), F::MakeResultIgnoredValue>::value));
667 }
668 
669 TEST(FunctionTest, Unary) {
670  typedef Function<int(bool)> F; // NOLINT
671  EXPECT_EQ(1u, F::ArgumentCount);
673  EXPECT_TRUE((std::is_same<bool, F::Arg<0>::type>::value));
674  EXPECT_TRUE((std::is_same<std::tuple<bool>, F::ArgumentTuple>::value));
675  EXPECT_TRUE((
676  std::is_same<std::tuple<Matcher<bool>>, F::ArgumentMatcherTuple>::value));
677  EXPECT_TRUE((std::is_same<void(bool), F::MakeResultVoid>::value)); // NOLINT
678  EXPECT_TRUE((std::is_same<IgnoredValue(bool), // NOLINT
679  F::MakeResultIgnoredValue>::value));
680 }
681 
682 TEST(FunctionTest, Binary) {
683  typedef Function<int(bool, const long&)> F; // NOLINT
684  EXPECT_EQ(2u, F::ArgumentCount);
686  EXPECT_TRUE((std::is_same<bool, F::Arg<0>::type>::value));
687  EXPECT_TRUE((std::is_same<const long&, F::Arg<1>::type>::value)); // NOLINT
688  EXPECT_TRUE((std::is_same<std::tuple<bool, const long&>, // NOLINT
689  F::ArgumentTuple>::value));
690  EXPECT_TRUE(
691  (std::is_same<std::tuple<Matcher<bool>, Matcher<const long&>>, // NOLINT
692  F::ArgumentMatcherTuple>::value));
693  EXPECT_TRUE((std::is_same<void(bool, const long&), // NOLINT
694  F::MakeResultVoid>::value));
695  EXPECT_TRUE((std::is_same<IgnoredValue(bool, const long&), // NOLINT
696  F::MakeResultIgnoredValue>::value));
697 }
698 
699 TEST(FunctionTest, LongArgumentList) {
700  typedef Function<char(bool, int, char*, int&, const long&)> F; // NOLINT
701  EXPECT_EQ(5u, F::ArgumentCount);
703  EXPECT_TRUE((std::is_same<bool, F::Arg<0>::type>::value));
704  EXPECT_TRUE((std::is_same<int, F::Arg<1>::type>::value));
705  EXPECT_TRUE((std::is_same<char*, F::Arg<2>::type>::value));
706  EXPECT_TRUE((std::is_same<int&, F::Arg<3>::type>::value));
707  EXPECT_TRUE((std::is_same<const long&, F::Arg<4>::type>::value)); // NOLINT
708  EXPECT_TRUE(
709  (std::is_same<std::tuple<bool, int, char*, int&, const long&>, // NOLINT
710  F::ArgumentTuple>::value));
711  EXPECT_TRUE(
712  (std::is_same<
713  std::tuple<Matcher<bool>, Matcher<int>, Matcher<char*>, Matcher<int&>,
714  Matcher<const long&>>, // NOLINT
715  F::ArgumentMatcherTuple>::value));
716  EXPECT_TRUE(
717  (std::is_same<void(bool, int, char*, int&, const long&), // NOLINT
718  F::MakeResultVoid>::value));
719  EXPECT_TRUE((
720  std::is_same<IgnoredValue(bool, int, char*, int&, const long&), // NOLINT
721  F::MakeResultIgnoredValue>::value));
722 }
723 
724 TEST(Base64Unescape, InvalidString) {
725  std::string unescaped;
726  EXPECT_FALSE(Base64Unescape("(invalid)", &unescaped));
727 }
728 
729 TEST(Base64Unescape, ShortString) {
730  std::string unescaped;
731  EXPECT_TRUE(Base64Unescape("SGVsbG8gd29ybGQh", &unescaped));
732  EXPECT_EQ("Hello world!", unescaped);
733 }
734 
735 TEST(Base64Unescape, ShortStringWithPadding) {
736  std::string unescaped;
737  EXPECT_TRUE(Base64Unescape("SGVsbG8gd29ybGQ=", &unescaped));
738  EXPECT_EQ("Hello world", unescaped);
739 }
740 
741 TEST(Base64Unescape, ShortStringWithoutPadding) {
742  std::string unescaped;
743  EXPECT_TRUE(Base64Unescape("SGVsbG8gd29ybGQ", &unescaped));
744  EXPECT_EQ("Hello world", unescaped);
745 }
746 
747 TEST(Base64Unescape, LongStringWithWhiteSpaces) {
748  std::string escaped =
749  R"(TWFuIGlzIGRpc3Rpbmd1aXNoZWQsIG5vdCBvbmx5IGJ5IGhpcyByZWFzb24sIGJ1dCBieSB0aGlz
750  IHNpbmd1bGFyIHBhc3Npb24gZnJvbSBvdGhlciBhbmltYWxzLCB3aGljaCBpcyBhIGx1c3Qgb2Yg
751  dGhlIG1pbmQsIHRoYXQgYnkgYSBwZXJzZXZlcmFuY2Ugb2YgZGVsaWdodCBpbiB0aGUgY29udGlu
752  dWVkIGFuZCBpbmRlZmF0aWdhYmxlIGdlbmVyYXRpb24gb2Yga25vd2xlZGdlLCBleGNlZWRzIHRo
753  ZSBzaG9ydCB2ZWhlbWVuY2Ugb2YgYW55IGNhcm5hbCBwbGVhc3VyZS4=)";
754  std::string expected =
755  "Man is distinguished, not only by his reason, but by this singular "
756  "passion from other animals, which is a lust of the mind, that by a "
757  "perseverance of delight in the continued and indefatigable generation "
758  "of knowledge, exceeds the short vehemence of any carnal pleasure.";
759  std::string unescaped;
760  EXPECT_TRUE(Base64Unescape(escaped, &unescaped));
761  EXPECT_EQ(expected, unescaped);
762 }
763 
764 } // namespace
765 } // namespace internal
766 } // namespace testing
EXPECT_FALSE
#define EXPECT_FALSE(condition)
Definition: bloaty/third_party/googletest/googletest/include/gtest/gtest.h:1970
testing
Definition: aws_request_signer_test.cc:25
testing::ContainsRegex
PolymorphicMatcher< internal::MatchesRegexMatcher > ContainsRegex(const internal::RE *regex)
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:8835
bloat_diff.severity
def severity
Definition: bloat_diff.py:143
testing::gmock_generated_actions_test::Nullary
int Nullary()
Definition: bloaty/third_party/googletest/googlemock/test/gmock-generated-actions_test.cc:66
Bool
Definition: bloaty/third_party/googletest/googletest/test/gtest_pred_impl_unittest.cc:56
GMOCK_FLAG_SET
#define GMOCK_FLAG_SET(name, value)
Definition: googletest/googlemock/include/gmock/internal/gmock-port.h:102
testing::internal::kErrorVerbosity
const char kErrorVerbosity[]
Definition: bloaty/third_party/googletest/googlemock/include/gmock/internal/gmock-internal-utils.h:306
EXPECT_THAT
#define EXPECT_THAT(value, matcher)
testing::internal::GetCapturedStdout
GTEST_API_ std::string GetCapturedStdout()
Definition: gmock-gtest-all.cc:9596
testing::internal::Log
GTEST_API_ void Log(LogSeverity severity, const std::string &message, int stack_frames_to_skip)
Definition: bloaty/third_party/googletest/googlemock/src/gmock-internal-utils.cc:149
std::tr1::make_tuple
tuple make_tuple()
Definition: cares/cares/test/gmock-1.8.0/gtest/gtest.h:1619
server.logger
logger
Definition: examples/python/xds/server.py:35
testing::internal::GetUnitTestImpl
UnitTestImpl * GetUnitTestImpl()
Definition: gmock-gtest-all.cc:1334
matchers
XdsRouteConfigResource::Route::Matchers matchers
Definition: xds_server_config_fetcher.cc:317
testing::internal::string
::std::string string
Definition: bloaty/third_party/protobuf/third_party/googletest/googletest/include/gtest/internal/gtest-port.h:881
grpc::protobuf::Message
GRPC_CUSTOM_MESSAGE Message
Definition: include/grpcpp/impl/codegen/config_protobuf.h:78
testing::gmock_more_actions_test::Unary
bool Unary(int x)
Definition: bloaty/third_party/googletest/googlemock/test/gmock-more-actions_test.cc:85
testing::internal::ConvertIdentifierNameToWords
GTEST_API_ std::string ConvertIdentifierNameToWords(const char *id_name)
Definition: bloaty/third_party/googletest/googlemock/src/gmock-internal-utils.cc:72
testing::internal::OsStackTraceGetterInterface
Definition: gmock-gtest-all.cc:825
testing::Ge
internal::GeMatcher< Rhs > Ge(Rhs x)
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:8585
xds_manager.p
p
Definition: xds_manager.py:60
testing::internal::StlContainerView::Copy
static type Copy(const RawContainer &container)
Definition: bloaty/third_party/googletest/googlemock/include/gmock/internal/gmock-internal-utils.h:396
testing::internal::CaptureStdout
GTEST_API_ void CaptureStdout()
Definition: gmock-gtest-all.cc:9586
MOCK_METHOD0
#define MOCK_METHOD0(m,...)
Definition: bloaty/third_party/googletest/googlemock/include/gmock/gmock-generated-function-mockers.h:599
testing::internal::kWarning
@ kWarning
Definition: bloaty/third_party/googletest/googlemock/include/gmock/internal/gmock-internal-utils.h:296
testing::Message
Definition: bloaty/third_party/googletest/googletest/include/gtest/gtest-message.h:90
testing::Test
Definition: bloaty/third_party/googletest/googletest/include/gtest/gtest.h:402
EXPECT_EQ
#define EXPECT_EQ(a, b)
Definition: iomgr/time_averaged_stats_test.cc:27
testing::internal::kInfoVerbosity
const char kInfoVerbosity[]
Definition: bloaty/third_party/googletest/googlemock/include/gmock/internal/gmock-internal-utils.h:302
testing::internal::Base64Unescape
bool Base64Unescape(const std::string &encoded, std::string *decoded)
Definition: googletest/googlemock/src/gmock-internal-utils.cc:227
ssize_t
intptr_t ssize_t
Definition: win.h:27
a2
T::first_type a2
Definition: abseil-cpp/absl/container/internal/hash_function_defaults_test.cc:307
xds_interop_client.int
int
Definition: xds_interop_client.py:113
gen_stats_data.c_str
def c_str(s, encoding='ascii')
Definition: gen_stats_data.py:38
MOCK_METHOD1
#define MOCK_METHOD1(m,...)
Definition: bloaty/third_party/googletest/googlemock/include/gmock/gmock-generated-function-mockers.h:600
testing::internal::TupleMatches
bool TupleMatches(const MatcherTuple &matcher_tuple, const ValueTuple &value_tuple)
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:5615
testing::Eq
internal::EqMatcher< T > Eq(T x)
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:8561
uint64_t
unsigned __int64 uint64_t
Definition: stdint-msvc2008.h:90
ref
unsigned ref
Definition: cxa_demangle.cpp:4909
testing::internal::kFloatingPoint
@ kFloatingPoint
Definition: bloaty/third_party/googletest/googlemock/include/gmock/internal/gmock-internal-utils.h:115
testing::internal::kWarningVerbosity
const char kWarningVerbosity[]
Definition: bloaty/third_party/googletest/googlemock/include/gmock/internal/gmock-internal-utils.h:304
benchmark::internal::Function
void() Function(State &)
Definition: benchmark/include/benchmark/benchmark.h:826
a1
T::first_type a1
Definition: abseil-cpp/absl/container/internal/hash_function_defaults_test.cc:305
log
Definition: bloaty/third_party/zlib/examples/gzlog.c:289
testing::internal::TEST_F
TEST_F(ListenerTest, DoesFoo)
Definition: bloaty/third_party/googletest/googletest/test/googletest-listener-test.cc:226
proto2
Definition: bloaty/third_party/googletest/googlemock/test/gmock-internal-utils_test.cc:64
F
#define F(b, c, d)
Definition: md4.c:112
n
int n
Definition: abseil-cpp/absl/container/btree_test.cc:1080
EXPECT_DEATH_IF_SUPPORTED
#define EXPECT_DEATH_IF_SUPPORTED(statement, regex)
Definition: bloaty/third_party/googletest/googletest/include/gtest/gtest-death-test.h:335
testing::internal::LogSeverity
LogSeverity
Definition: bloaty/third_party/googletest/googlemock/include/gmock/internal/gmock-internal-utils.h:294
EXPECT_CALL
#define EXPECT_CALL(obj, call)
ON_CALL
#define ON_CALL(obj, call)
value
const char * value
Definition: hpack_parser_table.cc:165
EXPECT_STREQ
#define EXPECT_STREQ(s1, s2)
Definition: bloaty/third_party/googletest/googletest/include/gtest/gtest.h:2095
verbose
bool verbose
Definition: bloaty/third_party/protobuf/conformance/conformance_cpp.cc:70
testing::internal::kBool
@ kBool
Definition: bloaty/third_party/googletest/googlemock/include/gmock/internal/gmock-internal-utils.h:115
testing::StaticAssertTypeEq
bool StaticAssertTypeEq()
Definition: bloaty/third_party/googletest/googletest/include/gtest/gtest.h:2300
testing::internal::kInteger
@ kInteger
Definition: bloaty/third_party/googletest/googlemock/include/gmock/internal/gmock-internal-utils.h:115
GMOCK_KIND_OF_
#define GMOCK_KIND_OF_(type)
Definition: bloaty/third_party/googletest/googlemock/include/gmock/internal/gmock-internal-utils.h:156
testing::internal::GetRawPointer
const Pointer::element_type * GetRawPointer(const Pointer &p)
Definition: bloaty/third_party/googletest/googlemock/include/gmock/internal/gmock-internal-utils.h:92
testing::_
const internal::AnythingMatcher _
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:8548
GetString
static bool GetString(std::string *out, CBS *cbs)
Definition: ssl_ctx_api.cc:228
testing::internal::StlContainerView::ConstReference
static const_reference ConstReference(const RawContainer &container)
Definition: bloaty/third_party/googletest/googlemock/include/gmock/internal/gmock-internal-utils.h:390
testing::internal::Assert
void Assert(bool condition, const char *file, int line)
Definition: bloaty/third_party/googletest/googlemock/include/gmock/internal/gmock-internal-utils.h:276
GTEST_INTENTIONAL_CONST_COND_POP_
#define GTEST_INTENTIONAL_CONST_COND_POP_()
Definition: bloaty/third_party/googletest/googletest/include/gtest/internal/gtest-port.h:708
testing::internal::kInfo
@ kInfo
Definition: bloaty/third_party/googletest/googlemock/include/gmock/internal/gmock-internal-utils.h:295
testing::internal::LosslessArithmeticConvertible
LosslessArithmeticConvertibleImpl< GMOCK_KIND_OF_(From), From, GMOCK_KIND_OF_(To), To > LosslessArithmeticConvertible
Definition: googletest/googlemock/include/gmock/internal/gmock-internal-utils.h:200
testing::Le
internal::LeMatcher< Rhs > Le(Rhs x)
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:8597
original_verbose_
std::string original_verbose_
Definition: googletest/googlemock/test/gmock-internal-utils_test.cc:373
Copy
@ Copy
Definition: upb/benchmarks/benchmark.cc:200
testing::internal::JoinAsKeyValueTuple
GTEST_API_ std::string JoinAsKeyValueTuple(const std::vector< const char * > &names, const Strings &values)
Definition: googletest/googlemock/src/gmock-internal-utils.cc:58
values
std::array< int64_t, Size > values
Definition: abseil-cpp/absl/container/btree_benchmark.cc:608
testing::internal::UnitTestImpl::set_os_stack_trace_getter
void set_os_stack_trace_getter(OsStackTraceGetterInterface *getter)
Definition: bloaty/third_party/googletest/googletest/src/gtest.cc:5627
absl::ABSL_NAMESPACE_BEGIN::dummy
int dummy
Definition: function_type_benchmark.cc:28
testing::internal::TEST
TEST(IsXDigitTest, WorksForNarrowAscii)
Definition: bloaty/third_party/googletest/googletest/test/googletest-port-test.cc:54
GMOCK_FLAG_GET
#define GMOCK_FLAG_GET(name)
Definition: googletest/googlemock/include/gmock/internal/gmock-port.h:101
testing::internal::Strings
::std::vector< ::std::string > Strings
Definition: bloaty/third_party/googletest/googletest/include/gtest/gtest-printers.h:872
EXPECT_TRUE
#define EXPECT_TRUE(condition)
Definition: bloaty/third_party/googletest/googletest/include/gtest/gtest.h:1967
GTEST_INTENTIONAL_CONST_COND_PUSH_
#define GTEST_INTENTIONAL_CONST_COND_PUSH_()
Definition: bloaty/third_party/googletest/googletest/include/gtest/internal/gtest-port.h:706
GTEST_FLAG_GET
#define GTEST_FLAG_GET(name)
Definition: googletest/googletest/include/gtest/internal/gtest-port.h:2218
testing::internal::LogIsVisible
GTEST_API_ bool LogIsVisible(LogSeverity severity)
Definition: bloaty/third_party/googletest/googlemock/src/gmock-internal-utils.cc:128
testing::AllOf
internal::AllOfResult2< M1, M2 >::type AllOf(M1 m1, M2 m2)
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:13472
internal
Definition: benchmark/test/output_test_helper.cc:20
testing::gmock_generated_actions_test::Binary
const char * Binary(const char *input, short n)
Definition: bloaty/third_party/googletest/googlemock/test/gmock-generated-actions_test.cc:79
asyncio_get_stats.type
type
Definition: asyncio_get_stats.py:37
EXPECT_NONFATAL_FAILURE
#define EXPECT_NONFATAL_FAILURE(statement, substr)
absl::inlined_vector_internal::ConstReference
const ValueType< A > & ConstReference
Definition: abseil-cpp/absl/container/internal/inlined_vector.h:62
const_reference
const typedef T & const_reference
Definition: cxa_demangle.cpp:4831
testing::HasSubstr
PolymorphicMatcher< internal::HasSubstrMatcher< internal::string > > HasSubstr(const internal::string &substring)
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:8803
_auth_example_test.verbosity
verbosity
Definition: _auth_example_test.py:69
if
if(p->owned &&p->wrapped !=NULL)
Definition: call.c:42
testing::internal::Expect
void Expect(bool condition, const char *file, int line, const std::string &msg)
Definition: bloaty/third_party/googletest/googlemock/include/gmock/internal/gmock-internal-utils.h:282
testing::internal::kOther
@ kOther
Definition: bloaty/third_party/googletest/googlemock/include/gmock/internal/gmock-internal-utils.h:115
Message
Definition: protobuf/php/ext/google/protobuf/message.c:53
ASSERT_EQ
#define ASSERT_EQ(val1, val2)
Definition: bloaty/third_party/googletest/googletest/include/gtest/gtest.h:2056
testing::internal::StlContainerView::const_reference
const typedef type & const_reference
Definition: bloaty/third_party/googletest/googlemock/include/gmock/internal/gmock-internal-utils.h:388
testing::internal::StlContainerView::type
RawContainer type
Definition: bloaty/third_party/googletest/googlemock/include/gmock/internal/gmock-internal-utils.h:387


grpc
Author(s):
autogenerated on Fri May 16 2025 02:58:31