xref: /aosp_15_r20/external/abseil-cpp/absl/log/internal/test_actions.h (revision 9356374a3709195abf420251b3e825997ff56c0f)
1*9356374aSAndroid Build Coastguard Worker // Copyright 2022 The Abseil Authors.
2*9356374aSAndroid Build Coastguard Worker //
3*9356374aSAndroid Build Coastguard Worker // Licensed under the Apache License, Version 2.0 (the "License");
4*9356374aSAndroid Build Coastguard Worker // you may not use this file except in compliance with the License.
5*9356374aSAndroid Build Coastguard Worker // You may obtain a copy of the License at
6*9356374aSAndroid Build Coastguard Worker //
7*9356374aSAndroid Build Coastguard Worker //      https://www.apache.org/licenses/LICENSE-2.0
8*9356374aSAndroid Build Coastguard Worker //
9*9356374aSAndroid Build Coastguard Worker // Unless required by applicable law or agreed to in writing, software
10*9356374aSAndroid Build Coastguard Worker // distributed under the License is distributed on an "AS IS" BASIS,
11*9356374aSAndroid Build Coastguard Worker // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12*9356374aSAndroid Build Coastguard Worker // See the License for the specific language governing permissions and
13*9356374aSAndroid Build Coastguard Worker // limitations under the License.
14*9356374aSAndroid Build Coastguard Worker //
15*9356374aSAndroid Build Coastguard Worker // -----------------------------------------------------------------------------
16*9356374aSAndroid Build Coastguard Worker // File: log/internal/test_actions.h
17*9356374aSAndroid Build Coastguard Worker // -----------------------------------------------------------------------------
18*9356374aSAndroid Build Coastguard Worker //
19*9356374aSAndroid Build Coastguard Worker // This file declares Googletest's actions used in the Abseil Logging library
20*9356374aSAndroid Build Coastguard Worker // unit tests.
21*9356374aSAndroid Build Coastguard Worker 
22*9356374aSAndroid Build Coastguard Worker #ifndef ABSL_LOG_INTERNAL_TEST_ACTIONS_H_
23*9356374aSAndroid Build Coastguard Worker #define ABSL_LOG_INTERNAL_TEST_ACTIONS_H_
24*9356374aSAndroid Build Coastguard Worker 
25*9356374aSAndroid Build Coastguard Worker #include <iostream>
26*9356374aSAndroid Build Coastguard Worker #include <ostream>
27*9356374aSAndroid Build Coastguard Worker #include <string>
28*9356374aSAndroid Build Coastguard Worker 
29*9356374aSAndroid Build Coastguard Worker #include "absl/base/config.h"
30*9356374aSAndroid Build Coastguard Worker #include "absl/base/log_severity.h"
31*9356374aSAndroid Build Coastguard Worker #include "absl/log/log_entry.h"
32*9356374aSAndroid Build Coastguard Worker #include "absl/strings/string_view.h"
33*9356374aSAndroid Build Coastguard Worker 
34*9356374aSAndroid Build Coastguard Worker namespace absl {
35*9356374aSAndroid Build Coastguard Worker ABSL_NAMESPACE_BEGIN
36*9356374aSAndroid Build Coastguard Worker namespace log_internal {
37*9356374aSAndroid Build Coastguard Worker 
38*9356374aSAndroid Build Coastguard Worker // These actions are used by the child process in a death test.
39*9356374aSAndroid Build Coastguard Worker //
40*9356374aSAndroid Build Coastguard Worker // Expectations set in the child cannot cause test failure in the parent
41*9356374aSAndroid Build Coastguard Worker // directly.  Instead, the child can use these actions with
42*9356374aSAndroid Build Coastguard Worker // `EXPECT_CALL`/`WillOnce` and `ON_CALL`/`WillByDefault` (for unexpected calls)
43*9356374aSAndroid Build Coastguard Worker // to write messages to stderr that the parent can match against.
44*9356374aSAndroid Build Coastguard Worker struct WriteToStderr final {
WriteToStderrfinal45*9356374aSAndroid Build Coastguard Worker   explicit WriteToStderr(absl::string_view m) : message(m) {}
46*9356374aSAndroid Build Coastguard Worker   std::string message;
47*9356374aSAndroid Build Coastguard Worker 
48*9356374aSAndroid Build Coastguard Worker   template <typename... Args>
operatorfinal49*9356374aSAndroid Build Coastguard Worker   void operator()(const Args&...) const {
50*9356374aSAndroid Build Coastguard Worker     std::cerr << message << std::endl;
51*9356374aSAndroid Build Coastguard Worker   }
52*9356374aSAndroid Build Coastguard Worker };
53*9356374aSAndroid Build Coastguard Worker 
54*9356374aSAndroid Build Coastguard Worker struct WriteToStderrWithFilename final {
WriteToStderrWithFilenamefinal55*9356374aSAndroid Build Coastguard Worker   explicit WriteToStderrWithFilename(absl::string_view m) : message(m) {}
56*9356374aSAndroid Build Coastguard Worker 
57*9356374aSAndroid Build Coastguard Worker   std::string message;
58*9356374aSAndroid Build Coastguard Worker 
59*9356374aSAndroid Build Coastguard Worker   void operator()(const absl::LogEntry& entry) const;
60*9356374aSAndroid Build Coastguard Worker };
61*9356374aSAndroid Build Coastguard Worker 
62*9356374aSAndroid Build Coastguard Worker struct WriteEntryToStderr final {
WriteEntryToStderrfinal63*9356374aSAndroid Build Coastguard Worker   explicit WriteEntryToStderr(absl::string_view m) : message(m) {}
64*9356374aSAndroid Build Coastguard Worker 
65*9356374aSAndroid Build Coastguard Worker   std::string message = "";
66*9356374aSAndroid Build Coastguard Worker 
67*9356374aSAndroid Build Coastguard Worker   void operator()(const absl::LogEntry& entry) const;
68*9356374aSAndroid Build Coastguard Worker   void operator()(absl::LogSeverity, absl::string_view,
69*9356374aSAndroid Build Coastguard Worker                   absl::string_view) const;
70*9356374aSAndroid Build Coastguard Worker };
71*9356374aSAndroid Build Coastguard Worker 
72*9356374aSAndroid Build Coastguard Worker // See the documentation for `DeathTestValidateExpectations` above.
73*9356374aSAndroid Build Coastguard Worker // `DeathTestExpectedLogging` should be used once in a given death test, and the
74*9356374aSAndroid Build Coastguard Worker // applicable severity level is the one that should be passed to
75*9356374aSAndroid Build Coastguard Worker // `DeathTestValidateExpectations`.
DeathTestExpectedLogging()76*9356374aSAndroid Build Coastguard Worker inline WriteEntryToStderr DeathTestExpectedLogging() {
77*9356374aSAndroid Build Coastguard Worker   return WriteEntryToStderr{"Mock received expected entry:"};
78*9356374aSAndroid Build Coastguard Worker }
79*9356374aSAndroid Build Coastguard Worker 
80*9356374aSAndroid Build Coastguard Worker // `DeathTestUnexpectedLogging` should be used zero or more times to mark
81*9356374aSAndroid Build Coastguard Worker // messages that should not hit the logs as the process dies.
DeathTestUnexpectedLogging()82*9356374aSAndroid Build Coastguard Worker inline WriteEntryToStderr DeathTestUnexpectedLogging() {
83*9356374aSAndroid Build Coastguard Worker   return WriteEntryToStderr{"Mock received unexpected entry:"};
84*9356374aSAndroid Build Coastguard Worker }
85*9356374aSAndroid Build Coastguard Worker 
86*9356374aSAndroid Build Coastguard Worker }  // namespace log_internal
87*9356374aSAndroid Build Coastguard Worker ABSL_NAMESPACE_END
88*9356374aSAndroid Build Coastguard Worker }  // namespace absl
89*9356374aSAndroid Build Coastguard Worker 
90*9356374aSAndroid Build Coastguard Worker #endif  // ABSL_LOG_INTERNAL_TEST_ACTIONS_H_
91