2016-06-03 17:15:16 +02:00
|
|
|
// Copyright (c) 2016-present, Facebook, Inc. All rights reserved.
|
|
|
|
// 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.
|
|
|
|
|
|
|
|
#ifndef ROCKSDB_LITE
|
|
|
|
|
2017-01-26 00:54:09 +01:00
|
|
|
#include "rocksdb/utilities/object_registry.h"
|
2016-06-03 17:15:16 +02:00
|
|
|
#include "util/testharness.h"
|
|
|
|
|
|
|
|
namespace rocksdb {
|
|
|
|
|
|
|
|
class EnvRegistryTest : public testing::Test {
|
|
|
|
public:
|
|
|
|
static int num_a, num_b;
|
|
|
|
};
|
|
|
|
|
|
|
|
int EnvRegistryTest::num_a = 0;
|
|
|
|
int EnvRegistryTest::num_b = 0;
|
|
|
|
|
2017-01-26 00:54:09 +01:00
|
|
|
static Registrar<Env> test_reg_a("a://.*", [](const std::string& uri,
|
|
|
|
std::unique_ptr<Env>* env_guard) {
|
2016-06-03 17:15:16 +02:00
|
|
|
++EnvRegistryTest::num_a;
|
|
|
|
return Env::Default();
|
|
|
|
});
|
|
|
|
|
2017-01-26 00:54:09 +01:00
|
|
|
static Registrar<Env> test_reg_b("b://.*", [](const std::string& uri,
|
|
|
|
std::unique_ptr<Env>* env_guard) {
|
2016-06-03 17:15:16 +02:00
|
|
|
++EnvRegistryTest::num_b;
|
|
|
|
// Env::Default() is a singleton so we can't grant ownership directly to the
|
|
|
|
// caller - we must wrap it first.
|
|
|
|
env_guard->reset(new EnvWrapper(Env::Default()));
|
|
|
|
return env_guard->get();
|
|
|
|
});
|
|
|
|
|
|
|
|
TEST_F(EnvRegistryTest, Basics) {
|
|
|
|
std::unique_ptr<Env> env_guard;
|
2017-01-26 00:54:09 +01:00
|
|
|
auto res = NewCustomObject<Env>("a://test", &env_guard);
|
2016-06-03 17:15:16 +02:00
|
|
|
ASSERT_NE(res, nullptr);
|
|
|
|
ASSERT_EQ(env_guard, nullptr);
|
|
|
|
ASSERT_EQ(1, num_a);
|
|
|
|
ASSERT_EQ(0, num_b);
|
|
|
|
|
2017-01-26 00:54:09 +01:00
|
|
|
res = NewCustomObject<Env>("b://test", &env_guard);
|
2016-06-03 17:15:16 +02:00
|
|
|
ASSERT_NE(res, nullptr);
|
|
|
|
ASSERT_NE(env_guard, nullptr);
|
|
|
|
ASSERT_EQ(1, num_a);
|
|
|
|
ASSERT_EQ(1, num_b);
|
|
|
|
|
2017-01-26 00:54:09 +01:00
|
|
|
res = NewCustomObject<Env>("c://test", &env_guard);
|
2016-06-03 17:15:16 +02:00
|
|
|
ASSERT_EQ(res, nullptr);
|
|
|
|
ASSERT_EQ(env_guard, nullptr);
|
|
|
|
ASSERT_EQ(1, num_a);
|
|
|
|
ASSERT_EQ(1, num_b);
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace rocksdb
|
|
|
|
|
|
|
|
int main(int argc, char** argv) {
|
|
|
|
::testing::InitGoogleTest(&argc, argv);
|
|
|
|
return RUN_ALL_TESTS();
|
|
|
|
}
|
|
|
|
|
|
|
|
#else // ROCKSDB_LITE
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
int main(int argc, char** argv) {
|
|
|
|
fprintf(stderr, "SKIPPED as EnvRegistry is not supported in ROCKSDB_LITE\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // ROCKSDB_LITE
|