Use fixed size stack traces; unify getStackTrace
[folly.git] / folly / experimental / symbolizer / test / SignalHandlerTest.cpp
1 /*
2  * Copyright 2013 Facebook, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *   http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include "folly/experimental/symbolizer/test/SignalHandlerTest.h"
18 #include "folly/experimental/symbolizer/SignalHandler.h"
19
20 #include <gtest/gtest.h>
21
22 #include "folly/FileUtil.h"
23 #include "folly/Range.h"
24
25 namespace folly { namespace symbolizer { namespace test {
26
27 namespace {
28
29 void print(StringPiece sp) {
30   writeFull(STDERR_FILENO, sp.data(), sp.size());
31 }
32
33
34 void callback1() {
35   print("Callback1\n");
36 }
37
38 void callback2() {
39   print("Callback2\n");
40 }
41
42 }  // namespace
43
44 TEST(SignalHandler, Simple) {
45   addFatalSignalCallback(callback1);
46   addFatalSignalCallback(callback2);
47   installFatalSignalHandler();
48
49   EXPECT_DEATH(
50       failHard(),
51       "^\\*\\*\\* Aborted at [0-9]+ \\(Unix time, try 'date -d @[0-9]+'\\) "
52       "\\*\\*\\*\n"
53       "\\*\\*\\* Signal 11 \\(SIGSEGV\\) \\(0x2a\\) received by PID [0-9]+ "
54       "\\(TID 0x[0-9a-f]+\\), stack trace: \\*\\*\\*\n"
55       ".*\n"
56       "    @ [0-9a-f]+ folly::symbolizer::test::SignalHandler_Simple_Test"
57       "::TestBody\\(\\)\n"
58       ".*\n"
59       "    @ [0-9a-f]+ main\n"
60       ".*\n"
61       "Callback1\n"
62       "Callback2\n"
63       );
64 }
65
66
67 }}}  // namespaces