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.
44 lines
1.2 KiB
44 lines
1.2 KiB
9 years ago
|
// Copyright (c) 2011-present, Facebook, Inc. All rights reserved.
|
||
7 years ago
|
// This source code is licensed under both the GPLv2 (found in the
|
||
|
// COPYING file in the root directory) and Apache 2.0 License
|
||
|
// (found in the LICENSE.Apache file in the root directory).
|
||
10 years ago
|
|
||
|
#include <string>
|
||
|
|
||
6 years ago
|
#include "logging/event_logger.h"
|
||
6 years ago
|
#include "test_util/testharness.h"
|
||
10 years ago
|
|
||
|
namespace rocksdb {
|
||
|
|
||
10 years ago
|
class EventLoggerTest : public testing::Test {};
|
||
10 years ago
|
|
||
|
class StringLogger : public Logger {
|
||
|
public:
|
||
|
using Logger::Logv;
|
||
6 years ago
|
void Logv(const char* format, va_list ap) override {
|
||
10 years ago
|
vsnprintf(buffer_, sizeof(buffer_), format, ap);
|
||
|
}
|
||
|
char* buffer() { return buffer_; }
|
||
|
|
||
|
private:
|
||
|
char buffer_[1000];
|
||
|
};
|
||
|
|
||
10 years ago
|
TEST_F(EventLoggerTest, SimpleTest) {
|
||
10 years ago
|
StringLogger logger;
|
||
|
EventLogger event_logger(&logger);
|
||
|
event_logger.Log() << "id" << 5 << "event"
|
||
|
<< "just_testing";
|
||
|
std::string output(logger.buffer());
|
||
|
ASSERT_TRUE(output.find("\"event\": \"just_testing\"") != std::string::npos);
|
||
|
ASSERT_TRUE(output.find("\"id\": 5") != std::string::npos);
|
||
|
ASSERT_TRUE(output.find("\"time_micros\"") != std::string::npos);
|
||
|
}
|
||
|
|
||
|
} // namespace rocksdb
|
||
|
|
||
|
int main(int argc, char** argv) {
|
||
10 years ago
|
::testing::InitGoogleTest(&argc, argv);
|
||
|
return RUN_ALL_TESTS();
|
||
10 years ago
|
}
|