Copyright 2014->2015
[folly.git] / folly / futures / test / Interrupts.cpp
1 /*
2  * Copyright 2015 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 <gtest/gtest.h>
18
19 #include <folly/futures/Future.h>
20 #include <folly/futures/Promise.h>
21
22 using namespace folly;
23 using folly::exception_wrapper;
24
25 TEST(Interrupts, raise) {
26   std::runtime_error eggs("eggs");
27   Promise<void> p;
28   p.setInterruptHandler([&](const exception_wrapper& e) {
29     EXPECT_THROW(e.throwException(), decltype(eggs));
30   });
31   p.getFuture().raise(eggs);
32 }
33
34 TEST(Interrupts, cancel) {
35   Promise<void> p;
36   p.setInterruptHandler([&](const exception_wrapper& e) {
37     EXPECT_THROW(e.throwException(), FutureCancellation);
38   });
39   p.getFuture().cancel();
40 }
41
42 TEST(Interrupts, handleThenInterrupt) {
43   Promise<int> p;
44   bool flag = false;
45   p.setInterruptHandler([&](const exception_wrapper& e) { flag = true; });
46   p.getFuture().cancel();
47   EXPECT_TRUE(flag);
48 }
49
50 TEST(Interrupts, interruptThenHandle) {
51   Promise<int> p;
52   bool flag = false;
53   p.getFuture().cancel();
54   p.setInterruptHandler([&](const exception_wrapper& e) { flag = true; });
55   EXPECT_TRUE(flag);
56 }
57
58 TEST(Interrupts, interruptAfterFulfilNoop) {
59   Promise<void> p;
60   bool flag = false;
61   p.setInterruptHandler([&](const exception_wrapper& e) { flag = true; });
62   p.setValue();
63   p.getFuture().cancel();
64   EXPECT_FALSE(flag);
65 }
66
67 TEST(Interrupts, secondInterruptNoop) {
68   Promise<void> p;
69   int count = 0;
70   p.setInterruptHandler([&](const exception_wrapper& e) { count++; });
71   auto f = p.getFuture();
72   f.cancel();
73   f.cancel();
74   EXPECT_EQ(1, count);
75 }