2017
[folly.git] / folly / futures / test / ContextTest.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 using namespace folly;
21
22 class TestData : public RequestData {
23  public:
24   explicit TestData(int data) : data_(data) {}
25   ~TestData() override {}
26   int data_;
27 };
28
29 TEST(Context, basic) {
30
31   // Start a new context
32   folly::RequestContextScopeGuard rctx;
33
34   EXPECT_EQ(nullptr, RequestContext::get()->getContextData("test"));
35
36   // Set some test data
37   RequestContext::get()->setContextData(
38     "test",
39     std::unique_ptr<TestData>(new TestData(10)));
40
41   // Start a future
42   Promise<Unit> p;
43   auto future = p.getFuture().then([&]{
44     // Check that the context followed the future
45     EXPECT_TRUE(RequestContext::get() != nullptr);
46     auto a = dynamic_cast<TestData*>(
47       RequestContext::get()->getContextData("test"));
48     auto data = a->data_;
49     EXPECT_EQ(10, data);
50   });
51
52   // Clear the context
53   RequestContext::setContext(nullptr);
54
55   EXPECT_EQ(nullptr, RequestContext::get()->getContextData("test"));
56
57   // Fulfill the promise
58   p.setValue();
59 }