fork of https://github.com/oxigraph/rocksdb and https://github.com/facebook/rocksdb for nextgraph and oxigraph
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
81 lines
1.9 KiB
81 lines
1.9 KiB
8 years ago
|
// 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.
|
||
|
|
||
|
#ifndef ROCKSDB_LITE
|
||
|
|
||
|
#include "utilities/blob_db/blob_db.h"
|
||
|
#include "util/random.h"
|
||
|
#include "util/testharness.h"
|
||
|
#include "util/testutil.h"
|
||
|
|
||
|
namespace rocksdb {
|
||
|
class BlobDBTest : public testing::Test {
|
||
|
public:
|
||
|
BlobDBTest() {
|
||
|
dbname_ = test::TmpDir() + "/blob_db_test";
|
||
|
Options options;
|
||
|
options.create_if_missing = true;
|
||
|
EXPECT_TRUE(NewBlobDB(options, dbname_, &db_).ok());
|
||
|
}
|
||
|
|
||
|
~BlobDBTest() { delete db_; }
|
||
|
|
||
|
DB* db_;
|
||
|
std::string dbname_;
|
||
|
}; // class BlobDBTest
|
||
|
|
||
|
TEST_F(BlobDBTest, Basic) {
|
||
|
WriteOptions wo;
|
||
|
ReadOptions ro;
|
||
|
std::string value;
|
||
|
|
||
|
ASSERT_OK(db_->Put(wo, "foo", "v1"));
|
||
|
ASSERT_OK(db_->Put(wo, "bar", "v2"));
|
||
|
|
||
|
ASSERT_OK(db_->Get(ro, "foo", &value));
|
||
|
ASSERT_EQ("v1", value);
|
||
|
ASSERT_OK(db_->Get(ro, "bar", &value));
|
||
|
ASSERT_EQ("v2", value);
|
||
|
}
|
||
|
|
||
|
TEST_F(BlobDBTest, Large) {
|
||
|
WriteOptions wo;
|
||
|
ReadOptions ro;
|
||
|
std::string value1, value2, value3;
|
||
|
Random rnd(301);
|
||
|
|
||
|
value1.assign(8999, '1');
|
||
|
ASSERT_OK(db_->Put(wo, "foo", value1));
|
||
|
value2.assign(9001, '2');
|
||
|
ASSERT_OK(db_->Put(wo, "bar", value2));
|
||
|
test::RandomString(&rnd, 13333, &value3);
|
||
|
ASSERT_OK(db_->Put(wo, "barfoo", value3));
|
||
|
|
||
|
std::string value;
|
||
|
ASSERT_OK(db_->Get(ro, "foo", &value));
|
||
|
ASSERT_EQ(value1, value);
|
||
|
ASSERT_OK(db_->Get(ro, "bar", &value));
|
||
|
ASSERT_EQ(value2, value);
|
||
|
ASSERT_OK(db_->Get(ro, "barfoo", &value));
|
||
|
ASSERT_EQ(value3, value);
|
||
|
}
|
||
|
|
||
|
} // namespace rocksdb
|
||
|
|
||
|
// A black-box test for the ttl wrapper around rocksdb
|
||
|
int main(int argc, char** argv) {
|
||
|
::testing::InitGoogleTest(&argc, argv);
|
||
|
return RUN_ALL_TESTS();
|
||
|
}
|
||
|
|
||
|
#else
|
||
|
#include <stdio.h>
|
||
|
|
||
|
int main(int argc, char** argv) {
|
||
|
fprintf(stderr, "SKIPPED as BlobDB is not supported in ROCKSDB_LITE\n");
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
#endif // !ROCKSDB_LITE
|