blob: dd38132a780aa8c6e090c9eebeeabcabbdc36fd7 [file] [log] [blame]
shiqiane35fdd92008-12-10 05:08:54 +00001// 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// Author: wan@google.com (Zhanyong Wan)
31
32// Google Mock - a framework for writing C++ mock classes.
33//
34// This file defines some utilities useful for implementing Google
35// Mock. They are subject to change without notice, so please DO NOT
36// USE THEM IN USER CODE.
37
zhanyong.wan53e08c42010-09-14 05:38:21 +000038#include "gmock/internal/gmock-internal-utils.h"
shiqiane35fdd92008-12-10 05:08:54 +000039
zhanyong.wance198ff2009-02-12 01:34:27 +000040#include <ctype.h>
shiqiane35fdd92008-12-10 05:08:54 +000041#include <ostream> // NOLINT
42#include <string>
zhanyong.wan53e08c42010-09-14 05:38:21 +000043#include "gmock/gmock.h"
44#include "gmock/internal/gmock-port.h"
45#include "gtest/gtest.h"
shiqiane35fdd92008-12-10 05:08:54 +000046
47namespace testing {
48namespace internal {
49
zhanyong.wance198ff2009-02-12 01:34:27 +000050// Converts an identifier name to a space-separated list of lower-case
51// words. Each maximum substring of the form [A-Za-z][a-z]*|\d+ is
52// treated as one word. For example, both "FooBar123" and
53// "foo_bar_123" are converted to "foo bar 123".
54string ConvertIdentifierNameToWords(const char* id_name) {
55 string result;
56 char prev_char = '\0';
57 for (const char* p = id_name; *p != '\0'; prev_char = *(p++)) {
58 // We don't care about the current locale as the input is
59 // guaranteed to be a valid C++ identifier name.
zhanyong.wan2516f602010-08-31 18:28:02 +000060 const bool starts_new_word = IsUpper(*p) ||
61 (!IsAlpha(prev_char) && IsLower(*p)) ||
62 (!IsDigit(prev_char) && IsDigit(*p));
zhanyong.wance198ff2009-02-12 01:34:27 +000063
zhanyong.wan2516f602010-08-31 18:28:02 +000064 if (IsAlNum(*p)) {
zhanyong.wance198ff2009-02-12 01:34:27 +000065 if (starts_new_word && result != "")
66 result += ' ';
zhanyong.wan2516f602010-08-31 18:28:02 +000067 result += ToLower(*p);
zhanyong.wance198ff2009-02-12 01:34:27 +000068 }
69 }
70 return result;
71}
72
shiqiane35fdd92008-12-10 05:08:54 +000073// This class reports Google Mock failures as Google Test failures. A
74// user can define another class in a similar fashion if he intends to
75// use Google Mock with a testing framework other than Google Test.
76class GoogleTestFailureReporter : public FailureReporterInterface {
77 public:
78 virtual void ReportFailure(FailureType type, const char* file, int line,
79 const string& message) {
zhanyong.wanbbd6e102009-09-18 18:17:19 +000080 AssertHelper(type == FATAL ?
81 TestPartResult::kFatalFailure :
82 TestPartResult::kNonFatalFailure,
83 file,
84 line,
85 message.c_str()) = Message();
shiqiane35fdd92008-12-10 05:08:54 +000086 if (type == FATAL) {
zhanyong.wan9571b282009-08-07 07:15:56 +000087 posix::Abort();
shiqiane35fdd92008-12-10 05:08:54 +000088 }
89 }
90};
91
92// Returns the global failure reporter. Will create a
93// GoogleTestFailureReporter and return it the first time called.
94FailureReporterInterface* GetFailureReporter() {
95 // Points to the global failure reporter used by Google Mock. gcc
96 // guarantees that the following use of failure_reporter is
97 // thread-safe. We may need to add additional synchronization to
98 // protect failure_reporter if we port Google Mock to other
99 // compilers.
100 static FailureReporterInterface* const failure_reporter =
101 new GoogleTestFailureReporter();
102 return failure_reporter;
103}
104
105// Protects global resources (stdout in particular) used by Log().
zhanyong.wan5905ba02010-02-24 17:21:37 +0000106static GTEST_DEFINE_STATIC_MUTEX_(g_log_mutex);
shiqiane35fdd92008-12-10 05:08:54 +0000107
zhanyong.wan9413f2f2009-05-29 19:50:06 +0000108// Returns true iff a log with the given severity is visible according
109// to the --gmock_verbose flag.
110bool LogIsVisible(LogSeverity severity) {
111 if (GMOCK_FLAG(verbose) == kInfoVerbosity) {
112 // Always show the log if --gmock_verbose=info.
113 return true;
114 } else if (GMOCK_FLAG(verbose) == kErrorVerbosity) {
115 // Always hide it if --gmock_verbose=error.
116 return false;
117 } else {
118 // If --gmock_verbose is neither "info" nor "error", we treat it
119 // as "warning" (its default value).
120 return severity == WARNING;
121 }
122}
123
shiqiane35fdd92008-12-10 05:08:54 +0000124// Prints the given message to stdout iff 'severity' >= the level
125// specified by the --gmock_verbose flag. If stack_frames_to_skip >=
126// 0, also prints the stack trace excluding the top
127// stack_frames_to_skip frames. In opt mode, any positive
128// stack_frames_to_skip is treated as 0, since we don't know which
129// function calls will be inlined by the compiler and need to be
130// conservative.
131void Log(LogSeverity severity, const string& message,
132 int stack_frames_to_skip) {
zhanyong.wan9413f2f2009-05-29 19:50:06 +0000133 if (!LogIsVisible(severity))
shiqiane35fdd92008-12-10 05:08:54 +0000134 return;
shiqiane35fdd92008-12-10 05:08:54 +0000135
136 // Ensures that logs from different threads don't interleave.
137 MutexLock l(&g_log_mutex);
zhanyong.wanbf550852009-06-09 06:09:53 +0000138
139 // "using ::std::cout;" doesn't work with Symbian's STLport, where cout is a
140 // macro.
141
shiqiane35fdd92008-12-10 05:08:54 +0000142 if (severity == WARNING) {
143 // Prints a GMOCK WARNING marker to make the warnings easily searchable.
zhanyong.wanbf550852009-06-09 06:09:53 +0000144 std::cout << "\nGMOCK WARNING:";
shiqiane35fdd92008-12-10 05:08:54 +0000145 }
146 // Pre-pends a new-line to message if it doesn't start with one.
147 if (message.empty() || message[0] != '\n') {
zhanyong.wanbf550852009-06-09 06:09:53 +0000148 std::cout << "\n";
shiqiane35fdd92008-12-10 05:08:54 +0000149 }
zhanyong.wanbf550852009-06-09 06:09:53 +0000150 std::cout << message;
shiqiane35fdd92008-12-10 05:08:54 +0000151 if (stack_frames_to_skip >= 0) {
152#ifdef NDEBUG
153 // In opt mode, we have to be conservative and skip no stack frame.
154 const int actual_to_skip = 0;
155#else
156 // In dbg mode, we can do what the caller tell us to do (plus one
157 // for skipping this function's stack frame).
158 const int actual_to_skip = stack_frames_to_skip + 1;
159#endif // NDEBUG
160
161 // Appends a new-line to message if it doesn't end with one.
162 if (!message.empty() && *message.rbegin() != '\n') {
zhanyong.wanbf550852009-06-09 06:09:53 +0000163 std::cout << "\n";
shiqiane35fdd92008-12-10 05:08:54 +0000164 }
zhanyong.wanbf550852009-06-09 06:09:53 +0000165 std::cout << "Stack trace:\n"
shiqiane35fdd92008-12-10 05:08:54 +0000166 << ::testing::internal::GetCurrentOsStackTraceExceptTop(
167 ::testing::UnitTest::GetInstance(), actual_to_skip);
168 }
zhanyong.wanbf550852009-06-09 06:09:53 +0000169 std::cout << ::std::flush;
shiqiane35fdd92008-12-10 05:08:54 +0000170}
171
172} // namespace internal
173} // namespace testing