2016-02-10 00:12:00 +01:00
|
|
|
// Copyright (c) 2011-present, Facebook, Inc. All rights reserved.
|
2013-10-16 23:59:46 +02:00
|
|
|
// This source code is licensed under the BSD-style license found in the
|
|
|
|
// LICENSE file in the root directory of this source tree. An additional grant
|
|
|
|
// of patent rights can be found in the PATENTS file in the same directory.
|
2017-04-28 02:50:56 +02:00
|
|
|
// This source code is also licensed under the GPLv2 license found in the
|
|
|
|
// COPYING file in the root directory of this source tree.
|
2013-10-16 23:59:46 +02:00
|
|
|
//
|
2013-08-23 17:38:13 +02:00
|
|
|
#include "rocksdb/status.h"
|
|
|
|
#include "rocksdb/env.h"
|
2012-08-18 09:26:50 +02:00
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
#include "util/coding.h"
|
|
|
|
#include "util/testharness.h"
|
|
|
|
|
2013-10-04 06:49:15 +02:00
|
|
|
namespace rocksdb {
|
2012-08-18 09:26:50 +02:00
|
|
|
|
2015-03-17 22:08:00 +01:00
|
|
|
class LockTest : public testing::Test {
|
2012-08-18 09:26:50 +02:00
|
|
|
public:
|
|
|
|
static LockTest* current_;
|
|
|
|
std::string file_;
|
2013-10-04 06:49:15 +02:00
|
|
|
rocksdb::Env* env_;
|
2012-08-18 09:26:50 +02:00
|
|
|
|
|
|
|
LockTest() : file_(test::TmpDir() + "/db_testlock_file"),
|
2013-10-04 06:49:15 +02:00
|
|
|
env_(rocksdb::Env::Default()) {
|
2012-08-18 09:26:50 +02:00
|
|
|
current_ = this;
|
|
|
|
}
|
|
|
|
|
|
|
|
~LockTest() {
|
|
|
|
}
|
|
|
|
|
|
|
|
Status LockFile(FileLock** db_lock) {
|
|
|
|
return env_->LockFile(file_, db_lock);
|
|
|
|
}
|
|
|
|
|
|
|
|
Status UnlockFile(FileLock* db_lock) {
|
|
|
|
return env_->UnlockFile(db_lock);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
LockTest* LockTest::current_;
|
|
|
|
|
2015-03-17 22:08:00 +01:00
|
|
|
TEST_F(LockTest, LockBySameThread) {
|
2012-08-18 09:26:50 +02:00
|
|
|
FileLock* lock1;
|
|
|
|
FileLock* lock2;
|
|
|
|
|
|
|
|
// acquire a lock on a file
|
|
|
|
ASSERT_OK(LockFile(&lock1));
|
|
|
|
|
|
|
|
// re-acquire the lock on the same file. This should fail.
|
|
|
|
ASSERT_TRUE(LockFile(&lock2).IsIOError());
|
|
|
|
|
|
|
|
// release the lock
|
|
|
|
ASSERT_OK(UnlockFile(lock1));
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-10-04 06:49:15 +02:00
|
|
|
} // namespace rocksdb
|
2012-08-18 09:26:50 +02:00
|
|
|
|
|
|
|
int main(int argc, char** argv) {
|
2015-03-17 22:08:00 +01:00
|
|
|
::testing::InitGoogleTest(&argc, argv);
|
|
|
|
return RUN_ALL_TESTS();
|
2012-08-18 09:26:50 +02:00
|
|
|
}
|