479fcb9909ab90f8c0c128979f3b47f457b723b0
[folly.git] / folly / futures / test / TryTest.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/Memory.h>
20 #include <folly/futures/Try.h>
21
22 using namespace folly;
23
24 TEST(Try, basic) {
25   class A {
26    public:
27     A(int x) : x_(x) {}
28
29     int x() const {
30       return x_;
31     }
32    private:
33     int x_;
34   };
35
36   A a(5);
37   Try<A> t_a(std::move(a));
38
39   Try<void> t_void;
40
41   EXPECT_EQ(5, t_a.value().x());
42 }
43
44 // Make sure we can copy Trys for copyable types
45 TEST(Try, copy) {
46   Try<int> t;
47   auto t2 = t;
48 }
49
50 // But don't choke on move-only types
51 TEST(Try, moveOnly) {
52   Try<std::unique_ptr<int>> t;
53   std::vector<Try<std::unique_ptr<int>>> v;
54   v.reserve(10);
55 }
56
57 TEST(Try, makeTryWith) {
58   auto func = []() {
59     return folly::make_unique<int>(1);
60   };
61
62   auto result = makeTryWith(func);
63   EXPECT_TRUE(result.hasValue());
64   EXPECT_EQ(*result.value(), 1);
65 }
66
67 TEST(Try, makeTryWithThrow) {
68   auto func = []() {
69     throw std::runtime_error("Runtime");
70     return folly::make_unique<int>(1);
71   };
72
73   auto result = makeTryWith(func);
74   EXPECT_TRUE(result.hasException<std::runtime_error>());
75 }
76
77 TEST(Try, makeTryWithVoid) {
78   auto func = []() {
79     return;
80   };
81
82   auto result = makeTryWith(func);
83   EXPECT_TRUE(result.hasValue());
84 }
85
86 TEST(Try, makeTryWithVoidThrow) {
87   auto func = []() {
88     throw std::runtime_error("Runtime");
89     return;
90   };
91
92   auto result = makeTryWith(func);
93   EXPECT_TRUE(result.hasException<std::runtime_error>());
94 }