2011-03-19 06:37:00 +08: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.
|
|
|
|
|
2011-03-31 02:35:40 +08:00
|
|
|
#include "leveldb/env.h"
|
2011-03-19 06:37:00 +08:00
|
|
|
|
|
|
|
#include "port/port.h"
|
|
|
|
#include "util/testharness.h"
|
2017-10-03 03:37:45 +08:00
|
|
|
#include "util/testutil.h"
|
2011-03-19 06:37:00 +08:00
|
|
|
|
|
|
|
namespace leveldb {
|
|
|
|
|
|
|
|
static const int kDelayMicros = 100000;
|
2017-01-04 09:39:49 +08:00
|
|
|
static const int kReadOnlyFileLimit = 4;
|
|
|
|
static const int kMMapLimit = 4;
|
2011-03-19 06:37:00 +08:00
|
|
|
|
2017-03-02 04:05:47 +08:00
|
|
|
class EnvTest {
|
2011-03-19 06:37:00 +08:00
|
|
|
private:
|
|
|
|
port::Mutex mu_;
|
|
|
|
std::string events_;
|
|
|
|
|
|
|
|
public:
|
|
|
|
Env* env_;
|
2017-03-02 04:05:47 +08:00
|
|
|
EnvTest() : env_(Env::Default()) { }
|
2011-03-19 06:37:00 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static void SetBool(void* ptr) {
|
2012-01-26 06:56:52 +08:00
|
|
|
reinterpret_cast<port::AtomicPointer*>(ptr)->NoBarrier_Store(ptr);
|
2011-03-19 06:37:00 +08:00
|
|
|
}
|
|
|
|
|
2017-10-03 03:37:45 +08:00
|
|
|
|
|
|
|
TEST(EnvTest, ReadWrite) {
|
|
|
|
Random rnd(test::RandomSeed());
|
|
|
|
|
|
|
|
// Get file to use for testing.
|
|
|
|
std::string test_dir;
|
|
|
|
ASSERT_OK(env_->GetTestDirectory(&test_dir));
|
|
|
|
std::string test_file_name = test_dir + "/open_on_read.txt";
|
2017-10-04 01:38:02 +08:00
|
|
|
WritableFile* writable_file;
|
|
|
|
ASSERT_OK(env_->NewWritableFile(test_file_name, &writable_file));
|
2017-10-03 03:37:45 +08:00
|
|
|
|
|
|
|
// Fill a file with data generated via a sequence of randomly sized writes.
|
|
|
|
static const size_t kDataSize = 10 * 1048576;
|
|
|
|
std::string data;
|
|
|
|
while (data.size() < kDataSize) {
|
|
|
|
int len = rnd.Skewed(18); // Up to 2^18 - 1, but typically much smaller
|
|
|
|
std::string r;
|
|
|
|
test::RandomString(&rnd, len, &r);
|
2017-10-04 01:38:02 +08:00
|
|
|
ASSERT_OK(writable_file->Append(r));
|
2017-10-03 03:37:45 +08:00
|
|
|
data += r;
|
|
|
|
if (rnd.OneIn(10)) {
|
2017-10-04 01:38:02 +08:00
|
|
|
ASSERT_OK(writable_file->Flush());
|
2017-10-03 03:37:45 +08:00
|
|
|
}
|
|
|
|
}
|
2017-10-04 01:38:02 +08:00
|
|
|
ASSERT_OK(writable_file->Sync());
|
|
|
|
ASSERT_OK(writable_file->Close());
|
|
|
|
delete writable_file;
|
2017-10-03 03:37:45 +08:00
|
|
|
|
|
|
|
// Read all data using a sequence of randomly sized reads.
|
2017-10-04 01:38:02 +08:00
|
|
|
SequentialFile* sequential_file;
|
|
|
|
ASSERT_OK(env_->NewSequentialFile(test_file_name, &sequential_file));
|
2017-10-03 03:37:45 +08:00
|
|
|
std::string read_result;
|
|
|
|
std::string scratch;
|
|
|
|
while (read_result.size() < data.size()) {
|
|
|
|
int len = std::min<int>(rnd.Skewed(18), data.size() - read_result.size());
|
|
|
|
scratch.resize(std::max(len, 1)); // at least 1 so &scratch[0] is legal
|
|
|
|
Slice read;
|
2017-10-04 01:38:02 +08:00
|
|
|
ASSERT_OK(sequential_file->Read(len, &read, &scratch[0]));
|
2017-10-03 03:37:45 +08:00
|
|
|
if (len > 0) {
|
|
|
|
ASSERT_GT(read.size(), 0);
|
|
|
|
}
|
|
|
|
ASSERT_LE(read.size(), len);
|
|
|
|
read_result.append(read.data(), read.size());
|
|
|
|
}
|
|
|
|
ASSERT_EQ(read_result, data);
|
2017-10-04 01:38:02 +08:00
|
|
|
delete sequential_file;
|
2017-10-03 03:37:45 +08:00
|
|
|
}
|
|
|
|
|
2017-03-02 04:05:47 +08:00
|
|
|
TEST(EnvTest, RunImmediately) {
|
2012-01-26 06:56:52 +08:00
|
|
|
port::AtomicPointer called (NULL);
|
2011-03-19 06:37:00 +08:00
|
|
|
env_->Schedule(&SetBool, &called);
|
2017-03-02 04:05:47 +08:00
|
|
|
env_->SleepForMicroseconds(kDelayMicros);
|
2012-01-26 06:56:52 +08:00
|
|
|
ASSERT_TRUE(called.NoBarrier_Load() != NULL);
|
2011-03-19 06:37:00 +08:00
|
|
|
}
|
|
|
|
|
2017-03-02 04:05:47 +08:00
|
|
|
TEST(EnvTest, RunMany) {
|
2012-01-26 06:56:52 +08:00
|
|
|
port::AtomicPointer last_id (NULL);
|
2011-03-19 06:37:00 +08:00
|
|
|
|
|
|
|
struct CB {
|
2012-01-26 06:56:52 +08:00
|
|
|
port::AtomicPointer* last_id_ptr; // Pointer to shared slot
|
|
|
|
uintptr_t id; // Order# for the execution of this callback
|
2011-03-19 06:37:00 +08:00
|
|
|
|
2012-01-26 06:56:52 +08:00
|
|
|
CB(port::AtomicPointer* p, int i) : last_id_ptr(p), id(i) { }
|
2011-03-19 06:37:00 +08:00
|
|
|
|
|
|
|
static void Run(void* v) {
|
|
|
|
CB* cb = reinterpret_cast<CB*>(v);
|
2012-01-26 06:56:52 +08:00
|
|
|
void* cur = cb->last_id_ptr->NoBarrier_Load();
|
|
|
|
ASSERT_EQ(cb->id-1, reinterpret_cast<uintptr_t>(cur));
|
|
|
|
cb->last_id_ptr->Release_Store(reinterpret_cast<void*>(cb->id));
|
2011-03-19 06:37:00 +08:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// Schedule in different order than start time
|
|
|
|
CB cb1(&last_id, 1);
|
|
|
|
CB cb2(&last_id, 2);
|
|
|
|
CB cb3(&last_id, 3);
|
|
|
|
CB cb4(&last_id, 4);
|
|
|
|
env_->Schedule(&CB::Run, &cb1);
|
|
|
|
env_->Schedule(&CB::Run, &cb2);
|
|
|
|
env_->Schedule(&CB::Run, &cb3);
|
|
|
|
env_->Schedule(&CB::Run, &cb4);
|
|
|
|
|
2017-03-02 04:05:47 +08:00
|
|
|
env_->SleepForMicroseconds(kDelayMicros);
|
2012-01-26 06:56:52 +08:00
|
|
|
void* cur = last_id.Acquire_Load();
|
|
|
|
ASSERT_EQ(4, reinterpret_cast<uintptr_t>(cur));
|
2011-03-19 06:37:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
struct State {
|
|
|
|
port::Mutex mu;
|
|
|
|
int val;
|
|
|
|
int num_running;
|
|
|
|
};
|
|
|
|
|
|
|
|
static void ThreadBody(void* arg) {
|
|
|
|
State* s = reinterpret_cast<State*>(arg);
|
|
|
|
s->mu.Lock();
|
|
|
|
s->val += 1;
|
|
|
|
s->num_running -= 1;
|
|
|
|
s->mu.Unlock();
|
|
|
|
}
|
|
|
|
|
2017-03-02 04:05:47 +08:00
|
|
|
TEST(EnvTest, StartThread) {
|
2011-03-19 06:37:00 +08:00
|
|
|
State state;
|
|
|
|
state.val = 0;
|
|
|
|
state.num_running = 3;
|
|
|
|
for (int i = 0; i < 3; i++) {
|
|
|
|
env_->StartThread(&ThreadBody, &state);
|
|
|
|
}
|
|
|
|
while (true) {
|
|
|
|
state.mu.Lock();
|
|
|
|
int num = state.num_running;
|
|
|
|
state.mu.Unlock();
|
|
|
|
if (num == 0) {
|
|
|
|
break;
|
|
|
|
}
|
2017-03-02 04:05:47 +08:00
|
|
|
env_->SleepForMicroseconds(kDelayMicros);
|
2011-03-19 06:37:00 +08:00
|
|
|
}
|
|
|
|
ASSERT_EQ(state.val, 3);
|
|
|
|
}
|
|
|
|
|
2017-07-11 04:32:58 +08:00
|
|
|
TEST(EnvTest, TestOpenNonExistentFile) {
|
|
|
|
// Write some test data to a single file that will be opened |n| times.
|
|
|
|
std::string test_dir;
|
|
|
|
ASSERT_OK(env_->GetTestDirectory(&test_dir));
|
|
|
|
|
|
|
|
std::string non_existent_file = test_dir + "/non_existent_file";
|
|
|
|
ASSERT_TRUE(!env_->FileExists(non_existent_file));
|
|
|
|
|
|
|
|
RandomAccessFile* random_access_file;
|
|
|
|
Status status = env_->NewRandomAccessFile(
|
|
|
|
non_existent_file, &random_access_file);
|
|
|
|
ASSERT_TRUE(status.IsNotFound());
|
|
|
|
|
|
|
|
SequentialFile* sequential_file;
|
|
|
|
status = env_->NewSequentialFile(non_existent_file, &sequential_file);
|
|
|
|
ASSERT_TRUE(status.IsNotFound());
|
|
|
|
}
|
|
|
|
|
2017-10-04 01:38:02 +08:00
|
|
|
TEST(EnvTest, ReopenWritableFile) {
|
|
|
|
std::string test_dir;
|
|
|
|
ASSERT_OK(env_->GetTestDirectory(&test_dir));
|
|
|
|
std::string test_file_name = test_dir + "/reopen_writable_file.txt";
|
|
|
|
env_->DeleteFile(test_file_name);
|
|
|
|
|
|
|
|
WritableFile* writable_file;
|
|
|
|
ASSERT_OK(env_->NewWritableFile(test_file_name, &writable_file));
|
|
|
|
std::string data("hello world!");
|
|
|
|
ASSERT_OK(writable_file->Append(data));
|
|
|
|
ASSERT_OK(writable_file->Close());
|
|
|
|
delete writable_file;
|
|
|
|
|
|
|
|
ASSERT_OK(env_->NewWritableFile(test_file_name, &writable_file));
|
|
|
|
data = "42";
|
|
|
|
ASSERT_OK(writable_file->Append(data));
|
|
|
|
ASSERT_OK(writable_file->Close());
|
|
|
|
delete writable_file;
|
|
|
|
|
|
|
|
ASSERT_OK(ReadFileToString(env_, test_file_name, &data));
|
|
|
|
ASSERT_EQ(std::string("42"), data);
|
|
|
|
env_->DeleteFile(test_file_name);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(EnvTest, ReopenAppendableFile) {
|
|
|
|
std::string test_dir;
|
|
|
|
ASSERT_OK(env_->GetTestDirectory(&test_dir));
|
|
|
|
std::string test_file_name = test_dir + "/reopen_appendable_file.txt";
|
|
|
|
env_->DeleteFile(test_file_name);
|
|
|
|
|
|
|
|
WritableFile* appendable_file;
|
|
|
|
ASSERT_OK(env_->NewAppendableFile(test_file_name, &appendable_file));
|
|
|
|
std::string data("hello world!");
|
|
|
|
ASSERT_OK(appendable_file->Append(data));
|
|
|
|
ASSERT_OK(appendable_file->Close());
|
|
|
|
delete appendable_file;
|
|
|
|
|
|
|
|
ASSERT_OK(env_->NewAppendableFile(test_file_name, &appendable_file));
|
|
|
|
data = "42";
|
|
|
|
ASSERT_OK(appendable_file->Append(data));
|
|
|
|
ASSERT_OK(appendable_file->Close());
|
|
|
|
delete appendable_file;
|
|
|
|
|
|
|
|
ASSERT_OK(ReadFileToString(env_, test_file_name, &data));
|
|
|
|
ASSERT_EQ(std::string("hello world!42"), data);
|
|
|
|
env_->DeleteFile(test_file_name);
|
|
|
|
}
|
|
|
|
|
2011-11-01 01:22:06 +08:00
|
|
|
} // namespace leveldb
|
2011-03-19 06:37:00 +08:00
|
|
|
|
|
|
|
int main(int argc, char** argv) {
|
|
|
|
return leveldb::test::RunAllTests();
|
|
|
|
}
|