OSDN Git Service

DTXMania089リリースに際してのtag付け。
[dtxmania/dtxmania.git] / 110401(DTXMania089) / SlimDXc_Jun2010(VC++2008) / external / GTest / gtest / gtest-death-test.h
1 // Copyright 2005, 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 // The Google C++ Testing Framework (Google Test)
33 //
34 // This header file defines the public API for death tests.  It is
35 // #included by gtest.h so a user doesn't need to include this
36 // directly.
37
38 #ifndef GTEST_INCLUDE_GTEST_GTEST_DEATH_TEST_H_
39 #define GTEST_INCLUDE_GTEST_GTEST_DEATH_TEST_H_
40
41 #include <gtest/internal/gtest-death-test-internal.h>
42
43 namespace testing {
44
45 // This flag controls the style of death tests.  Valid values are "threadsafe",
46 // meaning that the death test child process will re-execute the test binary
47 // from the start, running only a single death test, or "fast",
48 // meaning that the child process will execute the test logic immediately
49 // after forking.
50 GTEST_DECLARE_string_(death_test_style);
51
52 #if GTEST_HAS_DEATH_TEST
53
54 // The following macros are useful for writing death tests.
55
56 // Here's what happens when an ASSERT_DEATH* or EXPECT_DEATH* is
57 // executed:
58 //
59 //   1. It generates a warning if there is more than one active
60 //   thread.  This is because it's safe to fork() or clone() only
61 //   when there is a single thread.
62 //
63 //   2. The parent process clone()s a sub-process and runs the death
64 //   test in it; the sub-process exits with code 0 at the end of the
65 //   death test, if it hasn't exited already.
66 //
67 //   3. The parent process waits for the sub-process to terminate.
68 //
69 //   4. The parent process checks the exit code and error message of
70 //   the sub-process.
71 //
72 // Examples:
73 //
74 //   ASSERT_DEATH(server.SendMessage(56, "Hello"), "Invalid port number");
75 //   for (int i = 0; i < 5; i++) {
76 //     EXPECT_DEATH(server.ProcessRequest(i),
77 //                  "Invalid request .* in ProcessRequest()")
78 //         << "Failed to die on request " << i);
79 //   }
80 //
81 //   ASSERT_EXIT(server.ExitNow(), ::testing::ExitedWithCode(0), "Exiting");
82 //
83 //   bool KilledBySIGHUP(int exit_code) {
84 //     return WIFSIGNALED(exit_code) && WTERMSIG(exit_code) == SIGHUP;
85 //   }
86 //
87 //   ASSERT_EXIT(client.HangUpServer(), KilledBySIGHUP, "Hanging up!");
88 //
89 // On the regular expressions used in death tests:
90 //
91 //   On POSIX-compliant systems (*nix), we use the <regex.h> library,
92 //   which uses the POSIX extended regex syntax.
93 //
94 //   On other platforms (e.g. Windows), we only support a simple regex
95 //   syntax implemented as part of Google Test.  This limited
96 //   implementation should be enough most of the time when writing
97 //   death tests; though it lacks many features you can find in PCRE
98 //   or POSIX extended regex syntax.  For example, we don't support
99 //   union ("x|y"), grouping ("(xy)"), brackets ("[xy]"), and
100 //   repetition count ("x{5,7}"), among others.
101 //
102 //   Below is the syntax that we do support.  We chose it to be a
103 //   subset of both PCRE and POSIX extended regex, so it's easy to
104 //   learn wherever you come from.  In the following: 'A' denotes a
105 //   literal character, period (.), or a single \\ escape sequence;
106 //   'x' and 'y' denote regular expressions; 'm' and 'n' are for
107 //   natural numbers.
108 //
109 //     c     matches any literal character c
110 //     \\d   matches any decimal digit
111 //     \\D   matches any character that's not a decimal digit
112 //     \\f   matches \f
113 //     \\n   matches \n
114 //     \\r   matches \r
115 //     \\s   matches any ASCII whitespace, including \n
116 //     \\S   matches any character that's not a whitespace
117 //     \\t   matches \t
118 //     \\v   matches \v
119 //     \\w   matches any letter, _, or decimal digit
120 //     \\W   matches any character that \\w doesn't match
121 //     \\c   matches any literal character c, which must be a punctuation
122 //     .     matches any single character except \n
123 //     A?    matches 0 or 1 occurrences of A
124 //     A*    matches 0 or many occurrences of A
125 //     A+    matches 1 or many occurrences of A
126 //     ^     matches the beginning of a string (not that of each line)
127 //     $     matches the end of a string (not that of each line)
128 //     xy    matches x followed by y
129 //
130 //   If you accidentally use PCRE or POSIX extended regex features
131 //   not implemented by us, you will get a run-time failure.  In that
132 //   case, please try to rewrite your regular expression within the
133 //   above syntax.
134 //
135 //   This implementation is *not* meant to be as highly tuned or robust
136 //   as a compiled regex library, but should perform well enough for a
137 //   death test, which already incurs significant overhead by launching
138 //   a child process.
139 //
140 // Known caveats:
141 //
142 //   A "threadsafe" style death test obtains the path to the test
143 //   program from argv[0] and re-executes it in the sub-process.  For
144 //   simplicity, the current implementation doesn't search the PATH
145 //   when launching the sub-process.  This means that the user must
146 //   invoke the test program via a path that contains at least one
147 //   path separator (e.g. path/to/foo_test and
148 //   /absolute/path/to/bar_test are fine, but foo_test is not).  This
149 //   is rarely a problem as people usually don't put the test binary
150 //   directory in PATH.
151 //
152 // TODO(wan@google.com): make thread-safe death tests search the PATH.
153
154 // Asserts that a given statement causes the program to exit, with an
155 // integer exit status that satisfies predicate, and emitting error output
156 // that matches regex.
157 #define ASSERT_EXIT(statement, predicate, regex) \
158   GTEST_DEATH_TEST_(statement, predicate, regex, GTEST_FATAL_FAILURE_)
159
160 // Like ASSERT_EXIT, but continues on to successive tests in the
161 // test case, if any:
162 #define EXPECT_EXIT(statement, predicate, regex) \
163   GTEST_DEATH_TEST_(statement, predicate, regex, GTEST_NONFATAL_FAILURE_)
164
165 // Asserts that a given statement causes the program to exit, either by
166 // explicitly exiting with a nonzero exit code or being killed by a
167 // signal, and emitting error output that matches regex.
168 #define ASSERT_DEATH(statement, regex) \
169   ASSERT_EXIT(statement, ::testing::internal::ExitedUnsuccessfully, regex)
170
171 // Like ASSERT_DEATH, but continues on to successive tests in the
172 // test case, if any:
173 #define EXPECT_DEATH(statement, regex) \
174   EXPECT_EXIT(statement, ::testing::internal::ExitedUnsuccessfully, regex)
175
176 // Two predicate classes that can be used in {ASSERT,EXPECT}_EXIT*:
177
178 // Tests that an exit code describes a normal exit with a given exit code.
179 class ExitedWithCode {
180  public:
181   explicit ExitedWithCode(int exit_code);
182   bool operator()(int exit_status) const;
183  private:
184   const int exit_code_;
185 };
186
187 #if !GTEST_OS_WINDOWS
188 // Tests that an exit code describes an exit due to termination by a
189 // given signal.
190 class KilledBySignal {
191  public:
192   explicit KilledBySignal(int signum);
193   bool operator()(int exit_status) const;
194  private:
195   const int signum_;
196 };
197 #endif  // !GTEST_OS_WINDOWS
198
199 // EXPECT_DEBUG_DEATH asserts that the given statements die in debug mode.
200 // The death testing framework causes this to have interesting semantics,
201 // since the sideeffects of the call are only visible in opt mode, and not
202 // in debug mode.
203 //
204 // In practice, this can be used to test functions that utilize the
205 // LOG(DFATAL) macro using the following style:
206 //
207 // int DieInDebugOr12(int* sideeffect) {
208 //   if (sideeffect) {
209 //     *sideeffect = 12;
210 //   }
211 //   LOG(DFATAL) << "death";
212 //   return 12;
213 // }
214 //
215 // TEST(TestCase, TestDieOr12WorksInDgbAndOpt) {
216 //   int sideeffect = 0;
217 //   // Only asserts in dbg.
218 //   EXPECT_DEBUG_DEATH(DieInDebugOr12(&sideeffect), "death");
219 //
220 // #ifdef NDEBUG
221 //   // opt-mode has sideeffect visible.
222 //   EXPECT_EQ(12, sideeffect);
223 // #else
224 //   // dbg-mode no visible sideeffect.
225 //   EXPECT_EQ(0, sideeffect);
226 // #endif
227 // }
228 //
229 // This will assert that DieInDebugReturn12InOpt() crashes in debug
230 // mode, usually due to a DCHECK or LOG(DFATAL), but returns the
231 // appropriate fallback value (12 in this case) in opt mode. If you
232 // need to test that a function has appropriate side-effects in opt
233 // mode, include assertions against the side-effects.  A general
234 // pattern for this is:
235 //
236 // EXPECT_DEBUG_DEATH({
237 //   // Side-effects here will have an effect after this statement in
238 //   // opt mode, but none in debug mode.
239 //   EXPECT_EQ(12, DieInDebugOr12(&sideeffect));
240 // }, "death");
241 //
242 #ifdef NDEBUG
243
244 #define EXPECT_DEBUG_DEATH(statement, regex) \
245   do { statement; } while (false)
246
247 #define ASSERT_DEBUG_DEATH(statement, regex) \
248   do { statement; } while (false)
249
250 #else
251
252 #define EXPECT_DEBUG_DEATH(statement, regex) \
253   EXPECT_DEATH(statement, regex)
254
255 #define ASSERT_DEBUG_DEATH(statement, regex) \
256   ASSERT_DEATH(statement, regex)
257
258 #endif  // NDEBUG for EXPECT_DEBUG_DEATH
259 #endif  // GTEST_HAS_DEATH_TEST
260 }  // namespace testing
261
262 #endif  // GTEST_INCLUDE_GTEST_GTEST_DEATH_TEST_H_