blob: 816374860368ca17402828543d1837b1bc4e4a1f [file] [log] [blame]
Brian Silverman9c614bc2016-02-15 20:20:02 -05001// Protocol Buffers - Google's data interchange format
2// Copyright 2008 Google Inc. All rights reserved.
3// https://developers.google.com/protocol-buffers/
4//
5// Redistribution and use in source and binary forms, with or without
6// modification, are permitted provided that the following conditions are
7// met:
8//
9// * Redistributions of source code must retain the above copyright
10// notice, this list of conditions and the following disclaimer.
11// * Redistributions in binary form must reproduce the above
12// copyright notice, this list of conditions and the following disclaimer
13// in the documentation and/or other materials provided with the
14// distribution.
15// * Neither the name of Google Inc. nor the names of its
16// contributors may be used to endorse or promote products derived from
17// this software without specific prior written permission.
18//
19// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
23// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30
31// Author: kenton@google.com (Kenton Varda)
32// emulates google3/testing/base/public/googletest.h
33
34#ifndef GOOGLE_PROTOBUF_GOOGLETEST_H__
35#define GOOGLE_PROTOBUF_GOOGLETEST_H__
36
37#include <map>
38#include <vector>
39#include <google/protobuf/stubs/common.h>
Austin Schuh40c16522018-10-28 20:27:54 -070040#include <gmock/gmock.h>
Brian Silverman9c614bc2016-02-15 20:20:02 -050041// Disable death tests if we use exceptions in CHECK().
Austin Schuh40c16522018-10-28 20:27:54 -070042#if !PROTOBUF_USE_EXCEPTIONS && defined(GTEST_HAS_DEATH_TEST) && \
43 !GTEST_OS_WINDOWS
Brian Silverman9c614bc2016-02-15 20:20:02 -050044#define PROTOBUF_HAS_DEATH_TEST
45#endif
46
47namespace google {
48namespace protobuf {
49
50// When running unittests, get the directory containing the source code.
51string TestSourceDir();
52
53// When running unittests, get a directory where temporary files may be
54// placed.
55string TestTempDir();
56
57// Capture all text written to stdout or stderr.
58void CaptureTestStdout();
59void CaptureTestStderr();
60
61// Stop capturing stdout or stderr and return the text captured.
62string GetCapturedTestStdout();
63string GetCapturedTestStderr();
64
65// For use with ScopedMemoryLog::GetMessages(). Inside Google the LogLevel
66// constants don't have the LOGLEVEL_ prefix, so the code that used
67// ScopedMemoryLog refers to LOGLEVEL_ERROR as just ERROR.
68#undef ERROR // defend against promiscuous windows.h
69static const LogLevel ERROR = LOGLEVEL_ERROR;
70static const LogLevel WARNING = LOGLEVEL_WARNING;
71
72// Receives copies of all LOG(ERROR) messages while in scope. Sample usage:
73// {
74// ScopedMemoryLog log; // constructor registers object as a log sink
75// SomeRoutineThatMayLogMessages();
76// const vector<string>& warnings = log.GetMessages(ERROR);
77// } // destructor unregisters object as a log sink
78// This is a dummy implementation which covers only what is used by protocol
79// buffer unit tests.
80class ScopedMemoryLog {
81 public:
82 ScopedMemoryLog();
83 virtual ~ScopedMemoryLog();
84
85 // Fetches all messages with the given severity level.
Austin Schuh40c16522018-10-28 20:27:54 -070086 const std::vector<string>& GetMessages(LogLevel error);
Brian Silverman9c614bc2016-02-15 20:20:02 -050087
88 private:
Austin Schuh40c16522018-10-28 20:27:54 -070089 std::map<LogLevel, std::vector<string> > messages_;
Brian Silverman9c614bc2016-02-15 20:20:02 -050090 LogHandler* old_handler_;
91
92 static void HandleLog(LogLevel level, const char* filename, int line,
93 const string& message);
94
95 static ScopedMemoryLog* active_log_;
96
97 GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(ScopedMemoryLog);
98};
99
100} // namespace protobuf
101} // namespace google
102
103#endif // GOOGLE_PROTOBUF_GOOGLETEST_H__