googletest.h 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. // 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. // Author: kenton@google.com (Kenton Varda)
  31. // emulates google3/testing/base/public/googletest.h
  32. #ifndef GOOGLE_PROTOBUF_GOOGLETEST_H__
  33. #define GOOGLE_PROTOBUF_GOOGLETEST_H__
  34. #include <map>
  35. #include <vector>
  36. #include <google/protobuf/stubs/common.h>
  37. #include <gmock/gmock.h>
  38. // Disable death tests if we use exceptions in CHECK().
  39. #if !PROTOBUF_USE_EXCEPTIONS && defined(GTEST_HAS_DEATH_TEST) && \
  40. !GTEST_OS_WINDOWS
  41. #define PROTOBUF_HAS_DEATH_TEST
  42. #endif
  43. namespace google {
  44. namespace protobuf {
  45. // When running unittests, get the directory containing the source code.
  46. string TestSourceDir();
  47. // When running unittests, get a directory where temporary files may be
  48. // placed.
  49. string TestTempDir();
  50. // Capture all text written to stdout or stderr.
  51. void CaptureTestStdout();
  52. void CaptureTestStderr();
  53. // Stop capturing stdout or stderr and return the text captured.
  54. string GetCapturedTestStdout();
  55. string GetCapturedTestStderr();
  56. // For use with ScopedMemoryLog::GetMessages(). Inside Google the LogLevel
  57. // constants don't have the LOGLEVEL_ prefix, so the code that used
  58. // ScopedMemoryLog refers to LOGLEVEL_ERROR as just ERROR.
  59. #undef ERROR // defend against promiscuous windows.h
  60. static const LogLevel ERROR = LOGLEVEL_ERROR;
  61. static const LogLevel WARNING = LOGLEVEL_WARNING;
  62. // Receives copies of all LOG(ERROR) messages while in scope. Sample usage:
  63. // {
  64. // ScopedMemoryLog log; // constructor registers object as a log sink
  65. // SomeRoutineThatMayLogMessages();
  66. // const vector<string>& warnings = log.GetMessages(ERROR);
  67. // } // destructor unregisters object as a log sink
  68. // This is a dummy implementation which covers only what is used by protocol
  69. // buffer unit tests.
  70. class ScopedMemoryLog {
  71. public:
  72. ScopedMemoryLog();
  73. virtual ~ScopedMemoryLog();
  74. // Fetches all messages with the given severity level.
  75. const std::vector<string>& GetMessages(LogLevel error);
  76. private:
  77. std::map<LogLevel, std::vector<string> > messages_;
  78. LogHandler* old_handler_;
  79. static void HandleLog(LogLevel level, const char* filename, int line,
  80. const string& message);
  81. static ScopedMemoryLog* active_log_;
  82. GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(ScopedMemoryLog);
  83. };
  84. } // namespace protobuf
  85. } // namespace google
  86. #endif // GOOGLE_PROTOBUF_GOOGLETEST_H__