Content-conversion constructors for Future
[folly.git] / folly / futures / test / ConversionOperatorTest.cpp
1 /*
2  * Copyright 2017 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/futures/Future.h>
18 #include <folly/portability/GTest.h>
19
20 #include <thread>
21
22 using namespace folly;
23
24 namespace {
25 struct Widget {
26   int v_;
27   /* implicit */ Widget(int v) : v_(v) {}
28   Widget(const Widget& other) = default;
29   Widget(Widget&& other) noexcept = default;
30   Widget& operator=(const Widget& /* other */) {
31     throw std::logic_error("unexpected copy assignment");
32   }
33   Widget& operator=(Widget&& /* other */) {
34     throw std::logic_error("unexpected move assignment");
35   }
36   explicit operator int() && {
37     return v_;
38   }
39 };
40 }
41
42 TEST(ConverstionOperator, DirectInitialization) {
43   auto future = makeFuture<Widget>(23);
44   EXPECT_EQ(future.value().v_, 23);
45   Future<int> secondFuture{std::move(future)};
46   EXPECT_EQ(secondFuture.value(), 23);
47 }
48
49 TEST(ConverstionOperator, StaticCast) {
50   auto future = makeFuture<Widget>(23);
51   EXPECT_EQ(future.value().v_, 23);
52   EXPECT_EQ(static_cast<Future<int>>(std::move(future)).value(), 23);
53 }