Bump version to 43:0
[folly.git] / folly / futures / test / Try.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 // Make sure we can copy Trys for copyable types
25 TEST(Try, copy) {
26   Try<int> t;
27   auto t2 = t;
28 }
29
30 // But don't choke on move-only types
31 TEST(Try, moveOnly) {
32   Try<std::unique_ptr<int>> t;
33   std::vector<Try<std::unique_ptr<int>>> v;
34   v.reserve(10);
35 }
36
37 TEST(Try, makeTryWith) {
38   auto func = []() {
39     return folly::make_unique<int>(1);
40   };
41
42   auto result = makeTryWith(func);
43   EXPECT_TRUE(result.hasValue());
44   EXPECT_EQ(*result.value(), 1);
45 }
46
47 TEST(Try, makeTryWithThrow) {
48   auto func = []() {
49     throw std::runtime_error("Runtime");
50     return folly::make_unique<int>(1);
51   };
52
53   auto result = makeTryWith(func);
54   EXPECT_TRUE(result.hasException<std::runtime_error>());
55 }
56
57 TEST(Try, makeTryWithVoid) {
58   auto func = []() {
59     return;
60   };
61
62   auto result = makeTryWith(func);
63   EXPECT_TRUE(result.hasValue());
64 }
65
66 TEST(Try, makeTryWithVoidThrow) {
67   auto func = []() {
68     throw std::runtime_error("Runtime");
69     return;
70   };
71
72   auto result = makeTryWith(func);
73   EXPECT_TRUE(result.hasException<std::runtime_error>());
74 }