proxygen
AsyncSignalHandlerTest.cpp
Go to the documentation of this file.
1 /*
2  * Copyright 2017-present 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  */
18 
20 
21 using namespace folly;
22 
23 namespace {
24 class TestSignalHandler : public AsyncSignalHandler {
25  public:
27 
28  void signalReceived(int /* signum */) noexcept override {
29  called = true;
30  }
31 
32  bool called{false};
33 };
34 } // namespace
35 
37  EventBase evb;
38  TestSignalHandler handler{&evb};
39 
40  handler.registerSignalHandler(SIGUSR1);
41  kill(getpid(), SIGUSR1);
42 
43  EXPECT_FALSE(handler.called);
44  evb.loopOnce(EVLOOP_NONBLOCK);
45  EXPECT_TRUE(handler.called);
46 }
47 
48 TEST(AsyncSignalHandler, attachEventBase) {
49  TestSignalHandler handler{nullptr};
50  EXPECT_FALSE(handler.getEventBase());
51  EventBase evb;
52 
53  handler.attachEventBase(&evb);
54  EXPECT_EQ(&evb, handler.getEventBase());
55 
56  handler.registerSignalHandler(SIGUSR1);
57  kill(getpid(), SIGUSR1);
58  EXPECT_FALSE(handler.called);
59  evb.loopOnce(EVLOOP_NONBLOCK);
60  EXPECT_TRUE(handler.called);
61 
62  handler.unregisterSignalHandler(SIGUSR1);
63  handler.detachEventBase();
64  EXPECT_FALSE(handler.getEventBase());
65 }
#define EXPECT_EQ(val1, val2)
Definition: gtest.h:1922
static void basic()
—— Concurrent Priority Queue Implementation ——
Definition: AtomicBitSet.h:29
requires E e noexcept(noexcept(s.error(std::move(e))))
void handler(int, siginfo_t *, void *)
bool loopOnce(int flags=0)
Definition: EventBase.cpp:271
#define EXPECT_TRUE(condition)
Definition: gtest.h:1859
#define EXPECT_FALSE(condition)
Definition: gtest.h:1862
TEST(SequencedExecutor, CPUThreadPoolExecutor)
AsyncSignalHandler(EventBase *eventBase)