(Wangle) Clean up tests
[folly.git] / folly / futures / test / UnwrapTest.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
21 using namespace folly;
22
23 // A simple scenario for the unwrap call, when the promise was fulfilled
24 // before calling to unwrap.
25 TEST(Unwrap, simpleScenario) {
26   Future<int> encapsulated_future = makeFuture(5484);
27   Future<Future<int>> future = makeFuture(std::move(encapsulated_future));
28   EXPECT_EQ(5484, future.unwrap().value());
29 }
30
31 // Makes sure that unwrap() works when chaning Future's commands.
32 TEST(Unwrap, chainCommands) {
33   Future<Future<int>> future = makeFuture(makeFuture(5484));
34   auto unwrapped = future.unwrap().then([](int i){ return i; });
35   EXPECT_EQ(5484, unwrapped.value());
36 }
37
38 // Makes sure that the unwrap call also works when the promise was not yet
39 // fulfilled, and that the returned Future<T> becomes ready once the promise
40 // is fulfilled.
41 TEST(Unwrap, futureNotReady) {
42   Promise<Future<int>> p;
43   Future<Future<int>> future = p.getFuture();
44   Future<int> unwrapped = future.unwrap();
45   // Sanity - should not be ready before the promise is fulfilled.
46   ASSERT_FALSE(unwrapped.isReady());
47   // Fulfill the promise and make sure the unwrapped future is now ready.
48   p.setValue(makeFuture(5484));
49   ASSERT_TRUE(unwrapped.isReady());
50   EXPECT_EQ(5484, unwrapped.value());
51 }