proxygen
FileLockTest.cpp
Go to the documentation of this file.
1 /*
2  * Copyright 2016-present 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/File.h>
18 
19 #include <mutex>
20 
21 #include <boost/thread/locks.hpp>
22 #include <glog/logging.h>
23 
24 #include <folly/String.h>
25 #include <folly/Subprocess.h>
30 
31 using namespace folly;
32 using namespace folly::test;
33 
34 DEFINE_bool(s, false, "get shared lock");
35 DEFINE_bool(x, false, "get exclusive lock");
36 
37 TEST(File, Locks) {
38  typedef std::unique_lock<File> Lock;
39  typedef boost::shared_lock<File> SharedLock;
40 
41  // Find out where we are.
42  static constexpr size_t pathLength = 2048;
43  char buf[pathLength + 1];
44  int r = readlink("/proc/self/exe", buf, pathLength);
45  CHECK(r != -1);
46  buf[r] = '\0';
47 
48  fs::path me(buf);
49  auto helper_basename = "file_test_lock_helper";
50  fs::path helper;
51  if (fs::exists(me.parent_path() / helper_basename)) {
52  helper = me.parent_path() / helper_basename;
53  } else {
54  throw std::runtime_error(
55  folly::to<std::string>("cannot find helper ", helper_basename));
56  }
57 
58  TemporaryFile tempFile;
59  File f(tempFile.fd());
60 
61  enum LockMode { EXCLUSIVE, SHARED };
62  auto testLock = [&](LockMode mode, bool expectedSuccess) {
63  auto ret = Subprocess({helper.string(),
64  mode == SHARED ? "-s" : "-x",
65  tempFile.path().string()})
66  .wait();
67  EXPECT_TRUE(ret.exited());
68  if (ret.exited()) {
69  EXPECT_EQ(expectedSuccess ? 0 : 42, ret.exitStatus());
70  }
71  };
72 
73  // Make sure nothing breaks and things compile.
74  { Lock lock(f); }
75 
76  { SharedLock lock(f); }
77 
78  {
79  Lock lock(f, std::defer_lock);
80  EXPECT_TRUE(lock.try_lock());
81  }
82 
83  {
84  SharedLock lock(f, boost::defer_lock);
85  EXPECT_TRUE(lock.try_lock());
86  }
87 
88  // X blocks X
89  {
90  Lock lock(f);
91  testLock(EXCLUSIVE, false);
92  }
93 
94  // X blocks S
95  {
96  Lock lock(f);
97  testLock(SHARED, false);
98  }
99 
100  // S blocks X
101  {
102  SharedLock lock(f);
103  testLock(EXCLUSIVE, false);
104  }
105 
106  // S does not block S
107  {
108  SharedLock lock(f);
109  testLock(SHARED, true);
110  }
111 }
Definition: InvokeTest.cpp:58
DEFINE_bool(s, false,"get shared lock")
auto f
#define EXPECT_EQ(val1, val2)
Definition: gtest.h:1922
—— Concurrent Priority Queue Implementation ——
Definition: AtomicBitSet.h:29
folly::Optional< PskKeyExchangeMode > mode
auto lock(Synchronized< D, M > &synchronized, Args &&...args)
bool wait(Waiter *waiter, bool shouldSleep, Waiter *&next)
const fs::path & path() const
Definition: TestUtil.cpp:85
TEST(ProgramOptionsTest, Errors)
#define EXPECT_TRUE(condition)
Definition: gtest.h:1859
static set< string > s