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.
|
|
|
|
|
|
|
|
#include "db/db_impl.h"
|
2013-08-23 17:38:13 +02:00
|
|
|
#include "rocksdb/db.h"
|
|
|
|
#include "rocksdb/env.h"
|
2011-09-12 11:21:10 +02:00
|
|
|
#include "util/testharness.h"
|
2013-01-20 11:07:13 +01:00
|
|
|
#include <memory>
|
2011-09-12 11:21:10 +02:00
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
2013-10-04 06:49:15 +02:00
|
|
|
namespace rocksdb {
|
2011-09-12 11:21:10 +02:00
|
|
|
|
2015-03-17 22:08:00 +01:00
|
|
|
class MemEnvTest : public testing::Test {
|
2011-09-12 11:21:10 +02:00
|
|
|
public:
|
|
|
|
Env* env_;
|
2013-06-08 00:35:17 +02:00
|
|
|
const EnvOptions soptions_;
|
2011-09-12 11:21:10 +02:00
|
|
|
|
|
|
|
MemEnvTest()
|
|
|
|
: env_(NewMemEnv(Env::Default())) {
|
|
|
|
}
|
|
|
|
~MemEnvTest() {
|
|
|
|
delete env_;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2015-03-17 22:08:00 +01:00
|
|
|
TEST_F(MemEnvTest, 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;
|
|
|
|
|
|
|
|
ASSERT_OK(env_->CreateDir("/dir"));
|
|
|
|
|
|
|
|
// Check that the directory is empty.
|
|
|
|
ASSERT_TRUE(!env_->FileExists("/dir/non_existent"));
|
|
|
|
ASSERT_TRUE(!env_->GetFileSize("/dir/non_existent", &file_size).ok());
|
|
|
|
ASSERT_OK(env_->GetChildren("/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.
|
2013-03-15 01:00:04 +01:00
|
|
|
ASSERT_OK(env_->NewWritableFile("/dir/f", &writable_file, soptions_));
|
2013-01-20 11:07:13 +01:00
|
|
|
writable_file.reset();
|
2011-09-12 11:21:10 +02:00
|
|
|
|
|
|
|
// Check that the file exists.
|
|
|
|
ASSERT_TRUE(env_->FileExists("/dir/f"));
|
|
|
|
ASSERT_OK(env_->GetFileSize("/dir/f", &file_size));
|
2012-11-06 21:02:18 +01:00
|
|
|
ASSERT_EQ(0U, file_size);
|
2011-09-12 11:21:10 +02:00
|
|
|
ASSERT_OK(env_->GetChildren("/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]);
|
|
|
|
|
|
|
|
// Write to the file.
|
2013-03-15 01:00:04 +01:00
|
|
|
ASSERT_OK(env_->NewWritableFile("/dir/f", &writable_file, soptions_));
|
2011-09-12 11:21:10 +02:00
|
|
|
ASSERT_OK(writable_file->Append("abc"));
|
2013-01-20 11:07:13 +01:00
|
|
|
writable_file.reset();
|
2011-09-12 11:21:10 +02:00
|
|
|
|
|
|
|
// Check for expected size.
|
|
|
|
ASSERT_OK(env_->GetFileSize("/dir/f", &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.
|
|
|
|
ASSERT_TRUE(!env_->RenameFile("/dir/non_existent", "/dir/g").ok());
|
|
|
|
ASSERT_OK(env_->RenameFile("/dir/f", "/dir/g"));
|
|
|
|
ASSERT_TRUE(!env_->FileExists("/dir/f"));
|
|
|
|
ASSERT_TRUE(env_->FileExists("/dir/g"));
|
|
|
|
ASSERT_OK(env_->GetFileSize("/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
|
|
|
|
|
|
|
// 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;
|
2013-03-15 01:00:04 +01:00
|
|
|
ASSERT_TRUE(!env_->NewSequentialFile("/dir/non_existent", &seq_file,
|
|
|
|
soptions_).ok());
|
2011-09-12 11:21:10 +02:00
|
|
|
ASSERT_TRUE(!seq_file);
|
2013-03-15 01:00:04 +01:00
|
|
|
ASSERT_TRUE(!env_->NewRandomAccessFile("/dir/non_existent", &rand_file,
|
|
|
|
soptions_).ok());
|
2011-09-12 11:21:10 +02:00
|
|
|
ASSERT_TRUE(!rand_file);
|
|
|
|
|
|
|
|
// Check that deleting works.
|
|
|
|
ASSERT_TRUE(!env_->DeleteFile("/dir/non_existent").ok());
|
|
|
|
ASSERT_OK(env_->DeleteFile("/dir/g"));
|
|
|
|
ASSERT_TRUE(!env_->FileExists("/dir/g"));
|
|
|
|
ASSERT_OK(env_->GetChildren("/dir", &children));
|
2012-11-06 21:02:18 +01:00
|
|
|
ASSERT_EQ(0U, children.size());
|
2011-09-12 11:21:10 +02:00
|
|
|
ASSERT_OK(env_->DeleteDir("/dir"));
|
|
|
|
}
|
|
|
|
|
2015-03-17 22:08:00 +01:00
|
|
|
TEST_F(MemEnvTest, 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];
|
|
|
|
|
|
|
|
ASSERT_OK(env_->CreateDir("/dir"));
|
|
|
|
|
2013-03-15 01:00:04 +01:00
|
|
|
ASSERT_OK(env_->NewWritableFile("/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"));
|
2013-01-20 11:07:13 +01:00
|
|
|
writable_file.reset();
|
2011-09-12 11:21:10 +02:00
|
|
|
|
|
|
|
// Read sequentially.
|
2013-03-15 01:00:04 +01:00
|
|
|
ASSERT_OK(env_->NewSequentialFile("/dir/f", &seq_file, soptions_));
|
2011-09-12 11:21:10 +02:00
|
|
|
ASSERT_OK(seq_file->Read(5, &result, scratch)); // Read "hello".
|
|
|
|
ASSERT_EQ(0, result.compare("hello"));
|
|
|
|
ASSERT_OK(seq_file->Skip(1));
|
|
|
|
ASSERT_OK(seq_file->Read(1000, &result, scratch)); // Read "world".
|
|
|
|
ASSERT_EQ(0, result.compare("world"));
|
|
|
|
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());
|
2011-09-12 11:21:10 +02:00
|
|
|
ASSERT_OK(seq_file->Skip(100)); // Try to skip past end of file.
|
|
|
|
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.
|
2013-03-15 01:00:04 +01:00
|
|
|
ASSERT_OK(env_->NewRandomAccessFile("/dir/f", &rand_file, soptions_));
|
2011-09-12 11:21:10 +02:00
|
|
|
ASSERT_OK(rand_file->Read(6, 5, &result, scratch)); // Read "world".
|
|
|
|
ASSERT_EQ(0, result.compare("world"));
|
|
|
|
ASSERT_OK(rand_file->Read(0, 5, &result, scratch)); // Read "hello".
|
|
|
|
ASSERT_EQ(0, result.compare("hello"));
|
|
|
|
ASSERT_OK(rand_file->Read(10, 100, &result, scratch)); // Read "d".
|
|
|
|
ASSERT_EQ(0, result.compare("d"));
|
|
|
|
|
|
|
|
// Too high offset.
|
|
|
|
ASSERT_TRUE(!rand_file->Read(1000, 5, &result, scratch).ok());
|
|
|
|
}
|
|
|
|
|
2015-03-17 22:08:00 +01:00
|
|
|
TEST_F(MemEnvTest, Locks) {
|
2011-09-12 11:21:10 +02:00
|
|
|
FileLock* lock;
|
|
|
|
|
|
|
|
// These are no-ops, but we test they return success.
|
|
|
|
ASSERT_OK(env_->LockFile("some file", &lock));
|
|
|
|
ASSERT_OK(env_->UnlockFile(lock));
|
|
|
|
}
|
|
|
|
|
2015-03-17 22:08:00 +01:00
|
|
|
TEST_F(MemEnvTest, Misc) {
|
2011-09-12 11:21:10 +02:00
|
|
|
std::string test_dir;
|
|
|
|
ASSERT_OK(env_->GetTestDirectory(&test_dir));
|
|
|
|
ASSERT_TRUE(!test_dir.empty());
|
|
|
|
|
2013-01-20 11:07:13 +01:00
|
|
|
unique_ptr<WritableFile> writable_file;
|
2013-03-15 01:00:04 +01:00
|
|
|
ASSERT_OK(env_->NewWritableFile("/a/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
|
|
|
}
|
|
|
|
|
2015-03-17 22:08:00 +01:00
|
|
|
TEST_F(MemEnvTest, 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;
|
2013-03-15 01:00:04 +01:00
|
|
|
ASSERT_OK(env_->NewWritableFile("/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));
|
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;
|
2013-03-15 01:00:04 +01:00
|
|
|
ASSERT_OK(env_->NewSequentialFile("/dir/f", &seq_file, soptions_));
|
2011-09-12 11:21:10 +02:00
|
|
|
ASSERT_OK(seq_file->Read(3, &result, scratch)); // Read "foo".
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2015-03-17 22:08:00 +01:00
|
|
|
TEST_F(MemEnvTest, DBTest) {
|
2011-09-12 11:21:10 +02:00
|
|
|
Options options;
|
|
|
|
options.create_if_missing = true;
|
|
|
|
options.env = env_;
|
|
|
|
DB* db;
|
|
|
|
|
|
|
|
const Slice keys[] = {Slice("aaa"), Slice("bbb"), Slice("ccc")};
|
|
|
|
const Slice vals[] = {Slice("foo"), Slice("bar"), Slice("baz")};
|
|
|
|
|
|
|
|
ASSERT_OK(DB::Open(options, "/dir/db", &db));
|
|
|
|
for (size_t i = 0; i < 3; ++i) {
|
|
|
|
ASSERT_OK(db->Put(WriteOptions(), keys[i], vals[i]));
|
|
|
|
}
|
|
|
|
|
|
|
|
for (size_t i = 0; i < 3; ++i) {
|
|
|
|
std::string res;
|
|
|
|
ASSERT_OK(db->Get(ReadOptions(), keys[i], &res));
|
|
|
|
ASSERT_TRUE(res == vals[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
Iterator* iterator = db->NewIterator(ReadOptions());
|
|
|
|
iterator->SeekToFirst();
|
|
|
|
for (size_t i = 0; i < 3; ++i) {
|
|
|
|
ASSERT_TRUE(iterator->Valid());
|
|
|
|
ASSERT_TRUE(keys[i] == iterator->key());
|
|
|
|
ASSERT_TRUE(vals[i] == iterator->value());
|
|
|
|
iterator->Next();
|
|
|
|
}
|
|
|
|
ASSERT_TRUE(!iterator->Valid());
|
|
|
|
delete iterator;
|
|
|
|
|
|
|
|
DBImpl* dbi = reinterpret_cast<DBImpl*>(db);
|
2013-10-15 00:12:15 +02:00
|
|
|
ASSERT_OK(dbi->TEST_FlushMemTable());
|
2011-09-12 11:21:10 +02:00
|
|
|
|
|
|
|
for (size_t i = 0; i < 3; ++i) {
|
|
|
|
std::string res;
|
|
|
|
ASSERT_OK(db->Get(ReadOptions(), keys[i], &res));
|
|
|
|
ASSERT_TRUE(res == vals[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
delete db;
|
2015-01-17 00:12:54 +01:00
|
|
|
|
|
|
|
options.create_if_missing = false;
|
|
|
|
ASSERT_OK(DB::Open(options, "/dir/db", &db));
|
|
|
|
for (size_t i = 0; i < 3; ++i) {
|
|
|
|
std::string res;
|
|
|
|
ASSERT_OK(db->Get(ReadOptions(), keys[i], &res));
|
|
|
|
ASSERT_TRUE(res == vals[i]);
|
|
|
|
}
|
|
|
|
delete db;
|
2011-09-12 11:21:10 +02:00
|
|
|
}
|
|
|
|
|
2013-10-04 06:49:15 +02:00
|
|
|
} // 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
|
|
|
}
|