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
TEST(JoinAsKeyValueTupleTest,JoinsEmptyTuple)73 TEST(JoinAsKeyValueTupleTest, JoinsEmptyTuple) {
74 EXPECT_EQ("", JoinAsKeyValueTuple({}, Strings()));
75 }
76
TEST(JoinAsKeyValueTupleTest,JoinsOneTuple)77 TEST(JoinAsKeyValueTupleTest, JoinsOneTuple) {
78 EXPECT_EQ("(a: 1)", JoinAsKeyValueTuple({"a"}, {"1"}));
79 }
80
TEST(JoinAsKeyValueTupleTest,JoinsTwoTuple)81 TEST(JoinAsKeyValueTupleTest, JoinsTwoTuple) {
82 EXPECT_EQ("(a: 1, b: 2)", JoinAsKeyValueTuple({"a", "b"}, {"1", "2"}));
83 }
84
TEST(JoinAsKeyValueTupleTest,JoinsTenTuple)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
TEST(ConvertIdentifierNameToWordsTest,WorksWhenNameContainsNoWord)92 TEST(ConvertIdentifierNameToWordsTest, WorksWhenNameContainsNoWord) {
93 EXPECT_EQ("", ConvertIdentifierNameToWords(""));
94 EXPECT_EQ("", ConvertIdentifierNameToWords("_"));
95 EXPECT_EQ("", ConvertIdentifierNameToWords("__"));
96 }
97
TEST(ConvertIdentifierNameToWordsTest,WorksWhenNameContainsDigits)98 TEST(ConvertIdentifierNameToWordsTest, WorksWhenNameContainsDigits) {
99 EXPECT_EQ("1", ConvertIdentifierNameToWords("_1"));
100 EXPECT_EQ("2", ConvertIdentifierNameToWords("2_"));
101 EXPECT_EQ("34", ConvertIdentifierNameToWords("_34_"));
102 EXPECT_EQ("34 56", ConvertIdentifierNameToWords("_34_56"));
103 }
104
TEST(ConvertIdentifierNameToWordsTest,WorksWhenNameContainsCamelCaseWords)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
TEST(ConvertIdentifierNameToWordsTest,WorksWhenNameContains_SeparatedWords)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
TEST(ConvertIdentifierNameToWordsTest,WorksWhenNameIsMixture)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
TEST(GetRawPointerTest,WorksForSmartPointers)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
TEST(GetRawPointerTest,WorksForRawPointers)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
TEST(GetRawPointerTest,WorksForStdReferenceWrapper)142 TEST(GetRawPointerTest, WorksForStdReferenceWrapper) {
143 int n = 1;
144 EXPECT_EQ(&n, GetRawPointer(std::ref(n)));
145 EXPECT_EQ(&n, GetRawPointer(std::cref(n)));
146 }
147
148 // Tests KindOf<T>.
149
150 class Base {};
151 class Derived : public Base {};
152
TEST(KindOfTest,Bool)153 TEST(KindOfTest, Bool) {
154 EXPECT_EQ(kBool, GMOCK_KIND_OF_(bool)); // NOLINT
155 }
156
TEST(KindOfTest,Integer)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.
173 EXPECT_EQ(kInteger, GMOCK_KIND_OF_(ssize_t)); // NOLINT
174 #endif
175 }
176
TEST(KindOfTest,FloatingPoint)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
TEST(KindOfTest,Other)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
TEST(LosslessArithmeticConvertibleTest,BoolToBool)191 TEST(LosslessArithmeticConvertibleTest, BoolToBool) {
192 EXPECT_TRUE((LosslessArithmeticConvertible<bool, bool>::value));
193 }
194
TEST(LosslessArithmeticConvertibleTest,BoolToInteger)195 TEST(LosslessArithmeticConvertibleTest, BoolToInteger) {
196 EXPECT_TRUE((LosslessArithmeticConvertible<bool, char>::value));
197 EXPECT_TRUE((LosslessArithmeticConvertible<bool, int>::value));
198 EXPECT_TRUE(
199 (LosslessArithmeticConvertible<bool, unsigned long>::value)); // NOLINT
200 }
201
TEST(LosslessArithmeticConvertibleTest,BoolToFloatingPoint)202 TEST(LosslessArithmeticConvertibleTest, BoolToFloatingPoint) {
203 EXPECT_TRUE((LosslessArithmeticConvertible<bool, float>::value));
204 EXPECT_TRUE((LosslessArithmeticConvertible<bool, double>::value));
205 }
206
TEST(LosslessArithmeticConvertibleTest,IntegerToBool)207 TEST(LosslessArithmeticConvertibleTest, IntegerToBool) {
208 EXPECT_FALSE((LosslessArithmeticConvertible<unsigned char, bool>::value));
209 EXPECT_FALSE((LosslessArithmeticConvertible<int, bool>::value));
210 }
211
TEST(LosslessArithmeticConvertibleTest,IntegerToInteger)212 TEST(LosslessArithmeticConvertibleTest, IntegerToInteger) {
213 // Unsigned => larger signed is fine.
214 EXPECT_TRUE((LosslessArithmeticConvertible<unsigned char, int>::value));
215
216 // Unsigned => larger unsigned is fine.
217 EXPECT_TRUE((LosslessArithmeticConvertible<
218 unsigned short, uint64_t>::value)); // NOLINT
219
220 // Signed => unsigned is not fine.
221 EXPECT_FALSE((LosslessArithmeticConvertible<
222 short, uint64_t>::value)); // NOLINT
223 EXPECT_FALSE((LosslessArithmeticConvertible<
224 signed char, unsigned int>::value)); // NOLINT
225
226 // Same size and same signedness: fine too.
227 EXPECT_TRUE((LosslessArithmeticConvertible<
228 unsigned char, unsigned char>::value));
229 EXPECT_TRUE((LosslessArithmeticConvertible<int, int>::value));
230 EXPECT_TRUE((LosslessArithmeticConvertible<wchar_t, wchar_t>::value));
231 EXPECT_TRUE((LosslessArithmeticConvertible<
232 unsigned long, unsigned long>::value)); // NOLINT
233
234 // Same size, different signedness: not fine.
235 EXPECT_FALSE((LosslessArithmeticConvertible<
236 unsigned char, signed char>::value));
237 EXPECT_FALSE((LosslessArithmeticConvertible<int, unsigned int>::value));
238 EXPECT_FALSE((LosslessArithmeticConvertible<uint64_t, int64_t>::value));
239
240 // Larger size => smaller size is not fine.
241 EXPECT_FALSE((LosslessArithmeticConvertible<long, char>::value)); // NOLINT
242 EXPECT_FALSE((LosslessArithmeticConvertible<int, signed char>::value));
243 EXPECT_FALSE((LosslessArithmeticConvertible<int64_t, unsigned int>::value));
244 }
245
TEST(LosslessArithmeticConvertibleTest,IntegerToFloatingPoint)246 TEST(LosslessArithmeticConvertibleTest, IntegerToFloatingPoint) {
247 // Integers cannot be losslessly converted to floating-points, as
248 // the format of the latter is implementation-defined.
249 EXPECT_FALSE((LosslessArithmeticConvertible<char, float>::value));
250 EXPECT_FALSE((LosslessArithmeticConvertible<int, double>::value));
251 EXPECT_FALSE((LosslessArithmeticConvertible<
252 short, long double>::value)); // NOLINT
253 }
254
TEST(LosslessArithmeticConvertibleTest,FloatingPointToBool)255 TEST(LosslessArithmeticConvertibleTest, FloatingPointToBool) {
256 EXPECT_FALSE((LosslessArithmeticConvertible<float, bool>::value));
257 EXPECT_FALSE((LosslessArithmeticConvertible<double, bool>::value));
258 }
259
TEST(LosslessArithmeticConvertibleTest,FloatingPointToInteger)260 TEST(LosslessArithmeticConvertibleTest, FloatingPointToInteger) {
261 EXPECT_FALSE((LosslessArithmeticConvertible<float, long>::value)); // NOLINT
262 EXPECT_FALSE((LosslessArithmeticConvertible<double, int64_t>::value));
263 EXPECT_FALSE((LosslessArithmeticConvertible<long double, int>::value));
264 }
265
TEST(LosslessArithmeticConvertibleTest,FloatingPointToFloatingPoint)266 TEST(LosslessArithmeticConvertibleTest, FloatingPointToFloatingPoint) {
267 // Smaller size => larger size is fine.
268 EXPECT_TRUE((LosslessArithmeticConvertible<float, double>::value));
269 EXPECT_TRUE((LosslessArithmeticConvertible<float, long double>::value));
270 EXPECT_TRUE((LosslessArithmeticConvertible<double, long double>::value));
271
272 // Same size: fine.
273 EXPECT_TRUE((LosslessArithmeticConvertible<float, float>::value));
274 EXPECT_TRUE((LosslessArithmeticConvertible<double, double>::value));
275
276 // Larger size => smaller size is not fine.
277 EXPECT_FALSE((LosslessArithmeticConvertible<double, float>::value));
278 GTEST_INTENTIONAL_CONST_COND_PUSH_()
279 if (sizeof(double) == sizeof(long double)) { // NOLINT
280 GTEST_INTENTIONAL_CONST_COND_POP_()
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 {
285 EXPECT_FALSE((LosslessArithmeticConvertible<long double, double>::value));
286 }
287 }
288
289 // Tests the TupleMatches() template function.
290
TEST(TupleMatchesTest,WorksForSize0)291 TEST(TupleMatchesTest, WorksForSize0) {
292 std::tuple<> matchers;
293 std::tuple<> values;
294
295 EXPECT_TRUE(TupleMatches(matchers, values));
296 }
297
TEST(TupleMatchesTest,WorksForSize1)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));
303 EXPECT_FALSE(TupleMatches(matchers, values2));
304 }
305
TEST(TupleMatchesTest,WorksForSize2)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));
312 EXPECT_FALSE(TupleMatches(matchers, values2));
313 EXPECT_FALSE(TupleMatches(matchers, values3));
314 EXPECT_FALSE(TupleMatches(matchers, values4));
315 }
316
TEST(TupleMatchesTest,WorksForSize5)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));
327 EXPECT_FALSE(TupleMatches(matchers, values2));
328 EXPECT_FALSE(TupleMatches(matchers, values3));
329 }
330
331 // Tests that Assert(true, ...) succeeds.
TEST(AssertTest,SucceedsOnTrue)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.
TEST(AssertTest,FailsFatallyOnFalse)338 TEST(AssertTest, FailsFatallyOnFalse) {
339 EXPECT_DEATH_IF_SUPPORTED({
340 Assert(false, __FILE__, __LINE__, "This should fail.");
341 }, "");
342
343 EXPECT_DEATH_IF_SUPPORTED({
344 Assert(false, __FILE__, __LINE__);
345 }, "");
346 }
347
348 // Tests that Expect(true, ...) succeeds.
TEST(ExpectTest,SucceedsOnTrue)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.
TEST(ExpectTest,FailsNonfatallyOnFalse)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:
SetUp()369 void SetUp() override { original_verbose_ = GMOCK_FLAG_GET(verbose); }
370
TearDown()371 void TearDown() override { GMOCK_FLAG_SET(verbose, original_verbose_); }
372
373 std::string original_verbose_;
374 };
375
TEST_F(LogIsVisibleTest,AlwaysReturnsTrueIfVerbosityIsInfo)376 TEST_F(LogIsVisibleTest, AlwaysReturnsTrueIfVerbosityIsInfo) {
377 GMOCK_FLAG_SET(verbose, kInfoVerbosity);
378 EXPECT_TRUE(LogIsVisible(kInfo));
379 EXPECT_TRUE(LogIsVisible(kWarning));
380 }
381
TEST_F(LogIsVisibleTest,AlwaysReturnsFalseIfVerbosityIsError)382 TEST_F(LogIsVisibleTest, AlwaysReturnsFalseIfVerbosityIsError) {
383 GMOCK_FLAG_SET(verbose, kErrorVerbosity);
384 EXPECT_FALSE(LogIsVisible(kInfo));
385 EXPECT_FALSE(LogIsVisible(kWarning));
386 }
387
TEST_F(LogIsVisibleTest,WorksWhenVerbosityIsWarning)388 TEST_F(LogIsVisibleTest, WorksWhenVerbosityIsWarning) {
389 GMOCK_FLAG_SET(verbose, kWarningVerbosity);
390 EXPECT_FALSE(LogIsVisible(kInfo));
391 EXPECT_TRUE(LogIsVisible(kWarning));
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.
TestLogWithSeverity(const std::string & verbosity,LogSeverity severity,bool should_print)400 void TestLogWithSeverity(const std::string& verbosity, LogSeverity severity,
401 bool should_print) {
402 const std::string old_flag = GMOCK_FLAG_GET(verbose);
403 GMOCK_FLAG_SET(verbose, verbosity);
404 CaptureStdout();
405 Log(severity, "Test log.\n", 0);
406 if (should_print) {
407 EXPECT_THAT(GetCapturedStdout().c_str(),
408 ContainsRegex(
409 severity == kWarning ?
410 "^\nGMOCK WARNING:\nTest log\\.\nStack trace:\n" :
411 "^\nTest log\\.\nStack trace:\n"));
412 } else {
413 EXPECT_STREQ("", GetCapturedStdout().c_str());
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.
TEST(LogTest,NoStackTraceWhenStackFramesToSkipIsNegative)420 TEST(LogTest, NoStackTraceWhenStackFramesToSkipIsNegative) {
421 const std::string saved_flag = GMOCK_FLAG_GET(verbose);
422 GMOCK_FLAG_SET(verbose, kInfoVerbosity);
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 {
CurrentStackTracetesting::internal::__anonbfb7fa730111::MockStackTraceGetter430 std::string CurrentStackTrace(int max_depth, int skip_count) override {
431 return (testing::Message() << max_depth << "::" << skip_count << "\n")
432 .GetString();
433 }
UponLeavingGTesttesting::internal::__anonbfb7fa730111::MockStackTraceGetter434 void UponLeavingGTest() override {}
435 };
436
437 // Tests that in opt mode, a positive stack_frames_to_skip argument is
438 // treated as 0.
TEST(LogTest,NoSkippingStackFrameInOptMode)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);
445 const std::string log = GetCapturedStdout();
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.
473 GetUnitTestImpl()->set_os_stack_trace_getter(nullptr);
474 }
475
476 // Tests that all logs are printed when the value of the
477 // --gmock_verbose flag is "info".
TEST(LogTest,AllLogsArePrintedWhenVerbosityIsInfo)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".
TEST(LogTest,OnlyWarningsArePrintedWhenVerbosityIsWarning)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".
TEST(LogTest,NoLogsArePrintedWhenVerbosityIsError)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.
TEST(LogTest,OnlyWarningsArePrintedWhenVerbosityIsInvalid)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.
GrabOutput(void (* logger)(),const char * verbosity)506 std::string GrabOutput(void(*logger)(), const char* verbosity) {
507 const std::string saved_flag = GMOCK_FLAG_GET(verbose);
508 GMOCK_FLAG_SET(verbose, verbosity);
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
ExpectCallLogger()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".
TEST(ExpectCallTest,LogsWhenVerbosityIsInfo)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".
TEST(ExpectCallTest,DoesNotLogWhenVerbosityIsWarning)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".
TEST(ExpectCallTest,DoesNotLogWhenVerbosityIsError)541 TEST(ExpectCallTest, DoesNotLogWhenVerbosityIsError) {
542 EXPECT_STREQ("", GrabOutput(ExpectCallLogger, kErrorVerbosity).c_str());
543 }
544
OnCallLogger()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".
TEST(OnCallTest,LogsWhenVerbosityIsInfo)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".
TEST(OnCallTest,DoesNotLogWhenVerbosityIsWarning)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".
TEST(OnCallTest,DoesNotLogWhenVerbosityIsError)564 TEST(OnCallTest, DoesNotLogWhenVerbosityIsError) {
565 EXPECT_STREQ("", GrabOutput(OnCallLogger, kErrorVerbosity).c_str());
566 }
567
OnCallAnyArgumentLogger()568 void OnCallAnyArgumentLogger() {
569 DummyMock mock;
570 ON_CALL(mock, TestMethodArg(_));
571 }
572
573 // Verifies that ON_CALL prints provided _ argument.
TEST(OnCallTest,LogsAnythingArgument)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
TEST(StlContainerViewTest,WorksForStlContainer)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
TEST(StlContainerViewTest,WorksForStaticNativeArray)599 TEST(StlContainerViewTest, WorksForStaticNativeArray) {
600 StaticAssertTypeEq<NativeArray<int>,
601 StlContainerView<int[3]>::type>();
602 StaticAssertTypeEq<NativeArray<double>,
603 StlContainerView<const double[4]>::type>();
604 StaticAssertTypeEq<NativeArray<char[3]>,
605 StlContainerView<const char[2][3]>::type>();
606
607 StaticAssertTypeEq<const NativeArray<int>,
608 StlContainerView<int[2]>::const_reference>();
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
TEST(StlContainerViewTest,WorksForDynamicNativeArray)626 TEST(StlContainerViewTest, WorksForDynamicNativeArray) {
627 StaticAssertTypeEq<NativeArray<int>,
628 StlContainerView<std::tuple<const int*, size_t> >::type>();
629 StaticAssertTypeEq<
630 NativeArray<double>,
631 StlContainerView<std::tuple<std::shared_ptr<double>, int> >::type>();
632
633 StaticAssertTypeEq<
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
TEST(FunctionTest,Nullary)659 TEST(FunctionTest, Nullary) {
660 typedef Function<int()> F; // NOLINT
661 EXPECT_EQ(0u, F::ArgumentCount);
662 EXPECT_TRUE((std::is_same<int, F::Result>::value));
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
TEST(FunctionTest,Unary)669 TEST(FunctionTest, Unary) {
670 typedef Function<int(bool)> F; // NOLINT
671 EXPECT_EQ(1u, F::ArgumentCount);
672 EXPECT_TRUE((std::is_same<int, F::Result>::value));
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
TEST(FunctionTest,Binary)682 TEST(FunctionTest, Binary) {
683 typedef Function<int(bool, const long&)> F; // NOLINT
684 EXPECT_EQ(2u, F::ArgumentCount);
685 EXPECT_TRUE((std::is_same<int, F::Result>::value));
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
TEST(FunctionTest,LongArgumentList)699 TEST(FunctionTest, LongArgumentList) {
700 typedef Function<char(bool, int, char*, int&, const long&)> F; // NOLINT
701 EXPECT_EQ(5u, F::ArgumentCount);
702 EXPECT_TRUE((std::is_same<char, F::Result>::value));
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
TEST(Base64Unescape,InvalidString)724 TEST(Base64Unescape, InvalidString) {
725 std::string unescaped;
726 EXPECT_FALSE(Base64Unescape("(invalid)", &unescaped));
727 }
728
TEST(Base64Unescape,ShortString)729 TEST(Base64Unescape, ShortString) {
730 std::string unescaped;
731 EXPECT_TRUE(Base64Unescape("SGVsbG8gd29ybGQh", &unescaped));
732 EXPECT_EQ("Hello world!", unescaped);
733 }
734
TEST(Base64Unescape,ShortStringWithPadding)735 TEST(Base64Unescape, ShortStringWithPadding) {
736 std::string unescaped;
737 EXPECT_TRUE(Base64Unescape("SGVsbG8gd29ybGQ=", &unescaped));
738 EXPECT_EQ("Hello world", unescaped);
739 }
740
TEST(Base64Unescape,ShortStringWithoutPadding)741 TEST(Base64Unescape, ShortStringWithoutPadding) {
742 std::string unescaped;
743 EXPECT_TRUE(Base64Unescape("SGVsbG8gd29ybGQ", &unescaped));
744 EXPECT_EQ("Hello world", unescaped);
745 }
746
TEST(Base64Unescape,LongStringWithWhiteSpaces)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
767