add Synchronized::withLock() methods
[folly.git] / folly / test / ConditionallyExistentTest.cpp
1 /*
2  * Copyright 2016 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/ConditionallyExistent.h>
18
19 #include <gtest/gtest.h>
20
21 using namespace std;
22 using namespace folly;
23
24 namespace {
25
26 class ConditionallyExistentTest : public testing::Test {};
27 }
28
29 TEST_F(ConditionallyExistentTest, WhenConditionFalse) {
30   folly::ConditionallyExistent<string, false> foobar("hello world");
31   EXPECT_FALSE(foobar.present());
32   bool called = false;
33   foobar.with([&](const string&) { called = true; });
34   EXPECT_FALSE(called);
35 }
36
37 TEST_F(ConditionallyExistentTest, WhenConditionTrue) {
38   folly::ConditionallyExistent<string, true> foobar("hello world");
39   EXPECT_TRUE(foobar.present());
40   bool called = false;
41   foobar.with([&](const string&) { called = true; });
42   EXPECT_TRUE(called);
43 }