2011-09-12 11:21:10 +02:00
|
|
|
// Copyright (c) 2011 The LevelDB Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file. See the AUTHORS file for names of contributors.
|
|
|
|
|
2013-01-20 11:07:13 +01:00
|
|
|
#include <memory>
|
2011-09-12 11:21:10 +02:00
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
2016-12-15 02:05:57 +01:00
|
|
|
#include <algorithm>
|
2011-09-12 11:21:10 +02:00
|
|
|
|
2016-06-04 00:13:03 +02:00
|
|
|
#include "rocksdb/env.h"
|
2017-01-26 00:54:09 +01:00
|
|
|
#include "rocksdb/utilities/object_registry.h"
|
2016-06-04 00:13:03 +02:00
|
|
|
#include "util/mock_env.h"
|
|
|
|
#include "util/testharness.h"
|
|
|
|
|
2013-10-04 06:49:15 +02:00
|
|
|
namespace rocksdb {
|
2011-09-12 11:21:10 +02:00
|
|
|
|
2016-07-01 03:34:29 +02:00
|
|
|
// Normalizes trivial differences across Envs such that these test cases can
|
|
|
|
// run on all Envs.
|
|
|
|
class NormalizingEnvWrapper : public EnvWrapper {
|
|
|
|
public:
|
|
|
|
explicit NormalizingEnvWrapper(Env* base) : EnvWrapper(base) {}
|
|
|
|
|
|
|
|
// Removes . and .. from directory listing
|
|
|
|
virtual Status GetChildren(const std::string& dir,
|
|
|
|
std::vector<std::string>* result) override {
|
|
|
|
Status status = EnvWrapper::GetChildren(dir, result);
|
|
|
|
if (status.ok()) {
|
|
|
|
result->erase(std::remove_if(result->begin(), result->end(),
|
|
|
|
[](const std::string& s) {
|
|
|
|
return s == "." || s == "..";
|
|
|
|
}),
|
|
|
|
result->end());
|
|
|
|
}
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Removes . and .. from directory listing
|
|
|
|
virtual Status GetChildrenFileAttributes(
|
|
|
|
const std::string& dir, std::vector<FileAttributes>* result) override {
|
|
|
|
Status status = EnvWrapper::GetChildrenFileAttributes(dir, result);
|
|
|
|
if (status.ok()) {
|
|
|
|
result->erase(std::remove_if(result->begin(), result->end(),
|
|
|
|
[](const FileAttributes& fa) {
|
|
|
|
return fa.name == "." || fa.name == "..";
|
|
|
|
}),
|
|
|
|
result->end());
|
|
|
|
}
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-06-04 00:13:03 +02:00
|
|
|
class EnvBasicTestWithParam : public testing::Test,
|
|
|
|
public ::testing::WithParamInterface<Env*> {
|
2011-09-12 11:21:10 +02:00
|
|
|
public:
|
|
|
|
Env* env_;
|
2013-06-08 00:35:17 +02:00
|
|
|
const EnvOptions soptions_;
|
2016-06-04 03:44:22 +02:00
|
|
|
std::string test_dir_;
|
2011-09-12 11:21:10 +02:00
|
|
|
|
2016-07-01 03:34:29 +02:00
|
|
|
EnvBasicTestWithParam() : env_(GetParam()) {
|
2016-06-04 03:44:22 +02:00
|
|
|
test_dir_ = test::TmpDir(env_) + "/env_basic_test";
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetUp() {
|
|
|
|
env_->CreateDirIfMissing(test_dir_);
|
2016-07-01 03:33:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void TearDown() {
|
2016-06-04 03:44:22 +02:00
|
|
|
std::vector<std::string> files;
|
|
|
|
env_->GetChildren(test_dir_, &files);
|
|
|
|
for (const auto& file : files) {
|
2016-07-01 03:33:49 +02:00
|
|
|
// don't know whether it's file or directory, try both. The tests must
|
|
|
|
// only create files or empty directories, so one must succeed, else the
|
|
|
|
// directory's corrupted.
|
|
|
|
Status s = env_->DeleteFile(test_dir_ + "/" + file);
|
|
|
|
if (!s.ok()) {
|
|
|
|
ASSERT_OK(env_->DeleteDir(test_dir_ + "/" + file));
|
|
|
|
}
|
2016-06-04 03:44:22 +02:00
|
|
|
}
|
|
|
|
}
|
2011-09-12 11:21:10 +02:00
|
|
|
};
|
|
|
|
|
2016-06-23 01:16:21 +02:00
|
|
|
class EnvMoreTestWithParam : public EnvBasicTestWithParam {};
|
|
|
|
|
2016-07-01 03:34:29 +02:00
|
|
|
static std::unique_ptr<Env> def_env(new NormalizingEnvWrapper(Env::Default()));
|
|
|
|
INSTANTIATE_TEST_CASE_P(EnvDefault, EnvBasicTestWithParam,
|
|
|
|
::testing::Values(def_env.get()));
|
|
|
|
INSTANTIATE_TEST_CASE_P(EnvDefault, EnvMoreTestWithParam,
|
|
|
|
::testing::Values(def_env.get()));
|
|
|
|
|
2016-06-04 00:13:03 +02:00
|
|
|
static std::unique_ptr<Env> mock_env(new MockEnv(Env::Default()));
|
2016-06-04 03:44:22 +02:00
|
|
|
INSTANTIATE_TEST_CASE_P(MockEnv, EnvBasicTestWithParam,
|
|
|
|
::testing::Values(mock_env.get()));
|
2016-06-04 00:13:03 +02:00
|
|
|
#ifndef ROCKSDB_LITE
|
|
|
|
static std::unique_ptr<Env> mem_env(NewMemEnv(Env::Default()));
|
|
|
|
INSTANTIATE_TEST_CASE_P(MemEnv, EnvBasicTestWithParam,
|
|
|
|
::testing::Values(mem_env.get()));
|
2016-06-04 03:44:22 +02:00
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
// Returns a vector of 0 or 1 Env*, depending whether an Env is registered for
|
|
|
|
// TEST_ENV_URI.
|
|
|
|
//
|
|
|
|
// The purpose of returning an empty vector (instead of nullptr) is that gtest
|
|
|
|
// ValuesIn() will skip running tests when given an empty collection.
|
|
|
|
std::vector<Env*> GetCustomEnvs() {
|
|
|
|
static Env* custom_env;
|
|
|
|
static std::unique_ptr<Env> custom_env_guard;
|
|
|
|
static bool init = false;
|
|
|
|
if (!init) {
|
|
|
|
init = true;
|
|
|
|
const char* uri = getenv("TEST_ENV_URI");
|
|
|
|
if (uri != nullptr) {
|
2017-01-26 00:54:09 +01:00
|
|
|
custom_env = NewCustomObject<Env>(uri, &custom_env_guard);
|
2016-06-04 03:44:22 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<Env*> res;
|
|
|
|
if (custom_env != nullptr) {
|
|
|
|
res.emplace_back(custom_env);
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // anonymous namespace
|
|
|
|
|
|
|
|
INSTANTIATE_TEST_CASE_P(CustomEnv, EnvBasicTestWithParam,
|
|
|
|
::testing::ValuesIn(GetCustomEnvs()));
|
2016-06-23 01:16:21 +02:00
|
|
|
|
|
|
|
INSTANTIATE_TEST_CASE_P(CustomEnv, EnvMoreTestWithParam,
|
|
|
|
::testing::ValuesIn(GetCustomEnvs()));
|
|
|
|
|
2016-06-04 00:13:03 +02:00
|
|
|
#endif // ROCKSDB_LITE
|
|
|
|
|
|
|
|
TEST_P(EnvBasicTestWithParam, Basics) {
|
2011-09-26 18:37:09 +02:00
|
|
|
uint64_t file_size;
|
2013-01-20 11:07:13 +01:00
|
|
|
unique_ptr<WritableFile> writable_file;
|
2011-09-12 11:21:10 +02:00
|
|
|
std::vector<std::string> children;
|
|
|
|
|
|
|
|
// Check that the directory is empty.
|
2016-06-04 03:44:22 +02:00
|
|
|
ASSERT_EQ(Status::NotFound(), env_->FileExists(test_dir_ + "/non_existent"));
|
|
|
|
ASSERT_TRUE(!env_->GetFileSize(test_dir_ + "/non_existent", &file_size).ok());
|
|
|
|
ASSERT_OK(env_->GetChildren(test_dir_, &children));
|
2012-11-06 21:02:18 +01:00
|
|
|
ASSERT_EQ(0U, children.size());
|
2011-09-12 11:21:10 +02:00
|
|
|
|
|
|
|
// Create a file.
|
2016-06-04 03:44:22 +02:00
|
|
|
ASSERT_OK(env_->NewWritableFile(test_dir_ + "/f", &writable_file, soptions_));
|
2016-06-30 00:33:27 +02:00
|
|
|
ASSERT_OK(writable_file->Close());
|
2013-01-20 11:07:13 +01:00
|
|
|
writable_file.reset();
|
2011-09-12 11:21:10 +02:00
|
|
|
|
|
|
|
// Check that the file exists.
|
2016-06-04 03:44:22 +02:00
|
|
|
ASSERT_OK(env_->FileExists(test_dir_ + "/f"));
|
|
|
|
ASSERT_OK(env_->GetFileSize(test_dir_ + "/f", &file_size));
|
2012-11-06 21:02:18 +01:00
|
|
|
ASSERT_EQ(0U, file_size);
|
2016-06-04 03:44:22 +02:00
|
|
|
ASSERT_OK(env_->GetChildren(test_dir_, &children));
|
2012-11-06 21:02:18 +01:00
|
|
|
ASSERT_EQ(1U, children.size());
|
2011-09-12 11:21:10 +02:00
|
|
|
ASSERT_EQ("f", children[0]);
|
2016-07-08 02:51:36 +02:00
|
|
|
ASSERT_OK(env_->DeleteFile(test_dir_ + "/f"));
|
2011-09-12 11:21:10 +02:00
|
|
|
|
|
|
|
// Write to the file.
|
2016-07-08 02:51:36 +02:00
|
|
|
ASSERT_OK(
|
|
|
|
env_->NewWritableFile(test_dir_ + "/f1", &writable_file, soptions_));
|
2011-09-12 11:21:10 +02:00
|
|
|
ASSERT_OK(writable_file->Append("abc"));
|
2016-06-30 00:33:27 +02:00
|
|
|
ASSERT_OK(writable_file->Close());
|
2013-01-20 11:07:13 +01:00
|
|
|
writable_file.reset();
|
2016-07-08 02:51:36 +02:00
|
|
|
ASSERT_OK(
|
|
|
|
env_->NewWritableFile(test_dir_ + "/f2", &writable_file, soptions_));
|
|
|
|
ASSERT_OK(writable_file->Close());
|
|
|
|
writable_file.reset();
|
2011-09-12 11:21:10 +02:00
|
|
|
|
|
|
|
// Check for expected size.
|
2016-07-08 02:51:36 +02:00
|
|
|
ASSERT_OK(env_->GetFileSize(test_dir_ + "/f1", &file_size));
|
2012-11-06 21:02:18 +01:00
|
|
|
ASSERT_EQ(3U, file_size);
|
2011-09-12 11:21:10 +02:00
|
|
|
|
|
|
|
// Check that renaming works.
|
2016-07-08 02:51:36 +02:00
|
|
|
ASSERT_TRUE(
|
|
|
|
!env_->RenameFile(test_dir_ + "/non_existent", test_dir_ + "/g").ok());
|
|
|
|
ASSERT_OK(env_->RenameFile(test_dir_ + "/f1", test_dir_ + "/g"));
|
|
|
|
ASSERT_EQ(Status::NotFound(), env_->FileExists(test_dir_ + "/f1"));
|
2016-06-04 03:44:22 +02:00
|
|
|
ASSERT_OK(env_->FileExists(test_dir_ + "/g"));
|
|
|
|
ASSERT_OK(env_->GetFileSize(test_dir_ + "/g", &file_size));
|
2012-11-06 21:02:18 +01:00
|
|
|
ASSERT_EQ(3U, file_size);
|
2011-09-12 11:21:10 +02:00
|
|
|
|
2016-07-08 02:51:36 +02:00
|
|
|
// Check that renaming overwriting works
|
|
|
|
ASSERT_OK(env_->RenameFile(test_dir_ + "/f2", test_dir_ + "/g"));
|
|
|
|
ASSERT_OK(env_->GetFileSize(test_dir_ + "/g", &file_size));
|
|
|
|
ASSERT_EQ(0U, file_size);
|
|
|
|
|
2011-09-12 11:21:10 +02:00
|
|
|
// Check that opening non-existent file fails.
|
2013-01-20 11:07:13 +01:00
|
|
|
unique_ptr<SequentialFile> seq_file;
|
|
|
|
unique_ptr<RandomAccessFile> rand_file;
|
2016-06-04 03:44:22 +02:00
|
|
|
ASSERT_TRUE(!env_->NewSequentialFile(test_dir_ + "/non_existent", &seq_file,
|
|
|
|
soptions_)
|
|
|
|
.ok());
|
2011-09-12 11:21:10 +02:00
|
|
|
ASSERT_TRUE(!seq_file);
|
2016-06-04 03:44:22 +02:00
|
|
|
ASSERT_TRUE(!env_->NewRandomAccessFile(test_dir_ + "/non_existent",
|
|
|
|
&rand_file, soptions_)
|
|
|
|
.ok());
|
2011-09-12 11:21:10 +02:00
|
|
|
ASSERT_TRUE(!rand_file);
|
|
|
|
|
|
|
|
// Check that deleting works.
|
2016-06-04 03:44:22 +02:00
|
|
|
ASSERT_TRUE(!env_->DeleteFile(test_dir_ + "/non_existent").ok());
|
|
|
|
ASSERT_OK(env_->DeleteFile(test_dir_ + "/g"));
|
|
|
|
ASSERT_EQ(Status::NotFound(), env_->FileExists(test_dir_ + "/g"));
|
|
|
|
ASSERT_OK(env_->GetChildren(test_dir_, &children));
|
2012-11-06 21:02:18 +01:00
|
|
|
ASSERT_EQ(0U, children.size());
|
2016-12-12 21:38:43 +01:00
|
|
|
ASSERT_TRUE(
|
|
|
|
env_->GetChildren(test_dir_ + "/non_existent", &children).IsNotFound());
|
2011-09-12 11:21:10 +02:00
|
|
|
}
|
|
|
|
|
2016-06-04 00:13:03 +02:00
|
|
|
TEST_P(EnvBasicTestWithParam, ReadWrite) {
|
2013-01-20 11:07:13 +01:00
|
|
|
unique_ptr<WritableFile> writable_file;
|
|
|
|
unique_ptr<SequentialFile> seq_file;
|
|
|
|
unique_ptr<RandomAccessFile> rand_file;
|
2011-09-12 11:21:10 +02:00
|
|
|
Slice result;
|
|
|
|
char scratch[100];
|
|
|
|
|
2016-06-04 03:44:22 +02:00
|
|
|
ASSERT_OK(env_->NewWritableFile(test_dir_ + "/f", &writable_file, soptions_));
|
2011-09-12 11:21:10 +02:00
|
|
|
ASSERT_OK(writable_file->Append("hello "));
|
|
|
|
ASSERT_OK(writable_file->Append("world"));
|
2016-06-30 00:33:27 +02:00
|
|
|
ASSERT_OK(writable_file->Close());
|
2013-01-20 11:07:13 +01:00
|
|
|
writable_file.reset();
|
2011-09-12 11:21:10 +02:00
|
|
|
|
|
|
|
// Read sequentially.
|
2016-06-04 03:44:22 +02:00
|
|
|
ASSERT_OK(env_->NewSequentialFile(test_dir_ + "/f", &seq_file, soptions_));
|
2016-06-04 00:13:03 +02:00
|
|
|
ASSERT_OK(seq_file->Read(5, &result, scratch)); // Read "hello".
|
2011-09-12 11:21:10 +02:00
|
|
|
ASSERT_EQ(0, result.compare("hello"));
|
|
|
|
ASSERT_OK(seq_file->Skip(1));
|
2016-06-04 00:13:03 +02:00
|
|
|
ASSERT_OK(seq_file->Read(1000, &result, scratch)); // Read "world".
|
2011-09-12 11:21:10 +02:00
|
|
|
ASSERT_EQ(0, result.compare("world"));
|
2016-06-04 00:13:03 +02:00
|
|
|
ASSERT_OK(seq_file->Read(1000, &result, scratch)); // Try reading past EOF.
|
2012-11-06 21:02:18 +01:00
|
|
|
ASSERT_EQ(0U, result.size());
|
2016-06-04 00:13:03 +02:00
|
|
|
ASSERT_OK(seq_file->Skip(100)); // Try to skip past end of file.
|
2011-09-12 11:21:10 +02:00
|
|
|
ASSERT_OK(seq_file->Read(1000, &result, scratch));
|
2012-11-06 21:02:18 +01:00
|
|
|
ASSERT_EQ(0U, result.size());
|
2011-09-12 11:21:10 +02:00
|
|
|
|
|
|
|
// Random reads.
|
2016-06-04 03:44:22 +02:00
|
|
|
ASSERT_OK(env_->NewRandomAccessFile(test_dir_ + "/f", &rand_file, soptions_));
|
2016-06-04 00:13:03 +02:00
|
|
|
ASSERT_OK(rand_file->Read(6, 5, &result, scratch)); // Read "world".
|
2011-09-12 11:21:10 +02:00
|
|
|
ASSERT_EQ(0, result.compare("world"));
|
2016-06-04 00:13:03 +02:00
|
|
|
ASSERT_OK(rand_file->Read(0, 5, &result, scratch)); // Read "hello".
|
2011-09-12 11:21:10 +02:00
|
|
|
ASSERT_EQ(0, result.compare("hello"));
|
2016-06-04 00:13:03 +02:00
|
|
|
ASSERT_OK(rand_file->Read(10, 100, &result, scratch)); // Read "d".
|
2011-09-12 11:21:10 +02:00
|
|
|
ASSERT_EQ(0, result.compare("d"));
|
|
|
|
|
|
|
|
// Too high offset.
|
2016-05-27 21:10:26 +02:00
|
|
|
ASSERT_TRUE(rand_file->Read(1000, 5, &result, scratch).ok());
|
2011-09-12 11:21:10 +02:00
|
|
|
}
|
|
|
|
|
2016-06-04 00:13:03 +02:00
|
|
|
TEST_P(EnvBasicTestWithParam, Misc) {
|
2013-01-20 11:07:13 +01:00
|
|
|
unique_ptr<WritableFile> writable_file;
|
2016-06-04 03:44:22 +02:00
|
|
|
ASSERT_OK(env_->NewWritableFile(test_dir_ + "/b", &writable_file, soptions_));
|
2011-09-12 11:21:10 +02:00
|
|
|
|
|
|
|
// These are no-ops, but we test they return success.
|
|
|
|
ASSERT_OK(writable_file->Sync());
|
|
|
|
ASSERT_OK(writable_file->Flush());
|
|
|
|
ASSERT_OK(writable_file->Close());
|
2013-01-20 11:07:13 +01:00
|
|
|
writable_file.reset();
|
2011-09-12 11:21:10 +02:00
|
|
|
}
|
|
|
|
|
2016-06-04 00:13:03 +02:00
|
|
|
TEST_P(EnvBasicTestWithParam, LargeWrite) {
|
2011-09-12 11:21:10 +02:00
|
|
|
const size_t kWriteSize = 300 * 1024;
|
|
|
|
char* scratch = new char[kWriteSize * 2];
|
|
|
|
|
|
|
|
std::string write_data;
|
|
|
|
for (size_t i = 0; i < kWriteSize; ++i) {
|
|
|
|
write_data.append(1, static_cast<char>(i));
|
|
|
|
}
|
|
|
|
|
2013-01-20 11:07:13 +01:00
|
|
|
unique_ptr<WritableFile> writable_file;
|
2016-06-04 03:44:22 +02:00
|
|
|
ASSERT_OK(env_->NewWritableFile(test_dir_ + "/f", &writable_file, soptions_));
|
2011-09-12 11:21:10 +02:00
|
|
|
ASSERT_OK(writable_file->Append("foo"));
|
|
|
|
ASSERT_OK(writable_file->Append(write_data));
|
2016-06-30 00:33:27 +02:00
|
|
|
ASSERT_OK(writable_file->Close());
|
2013-01-20 11:07:13 +01:00
|
|
|
writable_file.reset();
|
2011-09-12 11:21:10 +02:00
|
|
|
|
2013-01-20 11:07:13 +01:00
|
|
|
unique_ptr<SequentialFile> seq_file;
|
2011-09-12 11:21:10 +02:00
|
|
|
Slice result;
|
2016-06-04 03:44:22 +02:00
|
|
|
ASSERT_OK(env_->NewSequentialFile(test_dir_ + "/f", &seq_file, soptions_));
|
2016-06-04 00:13:03 +02:00
|
|
|
ASSERT_OK(seq_file->Read(3, &result, scratch)); // Read "foo".
|
2011-09-12 11:21:10 +02:00
|
|
|
ASSERT_EQ(0, result.compare("foo"));
|
|
|
|
|
|
|
|
size_t read = 0;
|
|
|
|
std::string read_data;
|
|
|
|
while (read < kWriteSize) {
|
|
|
|
ASSERT_OK(seq_file->Read(kWriteSize - read, &result, scratch));
|
|
|
|
read_data.append(result.data(), result.size());
|
|
|
|
read += result.size();
|
|
|
|
}
|
|
|
|
ASSERT_TRUE(write_data == read_data);
|
|
|
|
delete [] scratch;
|
|
|
|
}
|
|
|
|
|
2016-06-23 01:16:21 +02:00
|
|
|
TEST_P(EnvMoreTestWithParam, GetModTime) {
|
|
|
|
ASSERT_OK(env_->CreateDirIfMissing(test_dir_ + "/dir1"));
|
|
|
|
uint64_t mtime1 = 0x0;
|
|
|
|
ASSERT_OK(env_->GetFileModificationTime(test_dir_ + "/dir1", &mtime1));
|
|
|
|
}
|
2011-09-12 11:21:10 +02:00
|
|
|
|
2016-06-23 01:16:21 +02:00
|
|
|
TEST_P(EnvMoreTestWithParam, MakeDir) {
|
2016-06-24 21:31:58 +02:00
|
|
|
ASSERT_OK(env_->CreateDir(test_dir_ + "/j"));
|
2016-06-23 01:16:21 +02:00
|
|
|
ASSERT_OK(env_->FileExists(test_dir_ + "/j"));
|
|
|
|
std::vector<std::string> children;
|
|
|
|
env_->GetChildren(test_dir_, &children);
|
|
|
|
ASSERT_EQ(1U, children.size());
|
|
|
|
// fail because file already exists
|
|
|
|
ASSERT_TRUE(!env_->CreateDir(test_dir_ + "/j").ok());
|
|
|
|
ASSERT_OK(env_->CreateDirIfMissing(test_dir_ + "/j"));
|
|
|
|
ASSERT_OK(env_->DeleteDir(test_dir_ + "/j"));
|
2016-06-24 21:31:58 +02:00
|
|
|
ASSERT_EQ(Status::NotFound(), env_->FileExists(test_dir_ + "/j"));
|
2016-06-23 01:16:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_P(EnvMoreTestWithParam, GetChildren) {
|
|
|
|
// empty folder returns empty vector
|
|
|
|
std::vector<std::string> children;
|
|
|
|
std::vector<Env::FileAttributes> childAttr;
|
2016-06-24 21:31:58 +02:00
|
|
|
ASSERT_OK(env_->CreateDirIfMissing(test_dir_));
|
|
|
|
ASSERT_OK(env_->GetChildren(test_dir_, &children));
|
|
|
|
ASSERT_OK(env_->FileExists(test_dir_));
|
|
|
|
ASSERT_OK(env_->GetChildrenFileAttributes(test_dir_, &childAttr));
|
2016-06-23 01:16:21 +02:00
|
|
|
ASSERT_EQ(0U, children.size());
|
|
|
|
ASSERT_EQ(0U, childAttr.size());
|
|
|
|
|
2016-06-24 21:31:58 +02:00
|
|
|
// folder with contents returns relative path to test dir
|
2016-08-20 00:10:31 +02:00
|
|
|
ASSERT_OK(env_->CreateDirIfMissing(test_dir_ + "/niu"));
|
|
|
|
ASSERT_OK(env_->CreateDirIfMissing(test_dir_ + "/you"));
|
|
|
|
ASSERT_OK(env_->CreateDirIfMissing(test_dir_ + "/guo"));
|
2016-06-24 21:31:58 +02:00
|
|
|
ASSERT_OK(env_->GetChildren(test_dir_, &children));
|
|
|
|
ASSERT_OK(env_->GetChildrenFileAttributes(test_dir_, &childAttr));
|
2016-06-23 01:16:21 +02:00
|
|
|
ASSERT_EQ(3U, children.size());
|
|
|
|
ASSERT_EQ(3U, childAttr.size());
|
2016-06-24 21:31:58 +02:00
|
|
|
for (auto each : children) {
|
|
|
|
env_->DeleteDir(test_dir_ + "/" + each);
|
2016-07-01 03:33:49 +02:00
|
|
|
} // necessary for default POSIX env
|
2016-06-23 01:16:21 +02:00
|
|
|
|
|
|
|
// non-exist directory returns IOError
|
2016-06-24 21:31:58 +02:00
|
|
|
ASSERT_OK(env_->DeleteDir(test_dir_));
|
|
|
|
ASSERT_TRUE(!env_->FileExists(test_dir_).ok());
|
|
|
|
ASSERT_TRUE(!env_->GetChildren(test_dir_, &children).ok());
|
|
|
|
ASSERT_TRUE(!env_->GetChildrenFileAttributes(test_dir_, &childAttr).ok());
|
2016-06-23 01:16:21 +02:00
|
|
|
|
|
|
|
// if dir is a file, returns IOError
|
2016-06-24 21:31:58 +02:00
|
|
|
ASSERT_OK(env_->CreateDir(test_dir_));
|
2016-06-23 01:16:21 +02:00
|
|
|
unique_ptr<WritableFile> writable_file;
|
|
|
|
ASSERT_OK(
|
|
|
|
env_->NewWritableFile(test_dir_ + "/file", &writable_file, soptions_));
|
2016-06-30 00:33:27 +02:00
|
|
|
ASSERT_OK(writable_file->Close());
|
2016-06-23 01:16:21 +02:00
|
|
|
writable_file.reset();
|
|
|
|
ASSERT_TRUE(!env_->GetChildren(test_dir_ + "/file", &children).ok());
|
|
|
|
ASSERT_EQ(0U, children.size());
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace rocksdb
|
2011-09-12 11:21:10 +02:00
|
|
|
int main(int argc, char** argv) {
|
2015-03-17 22:08:00 +01:00
|
|
|
::testing::InitGoogleTest(&argc, argv);
|
|
|
|
return RUN_ALL_TESTS();
|
2011-09-12 11:21:10 +02:00
|
|
|
}
|