Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(262)

Unified Diff: net/base/net_log_logger_unittest.cc

Issue 976483002: Add ability for NetLogLogger to gather data from more than just NetLog (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Merge Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/base/net_log_logger.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/net_log_logger_unittest.cc
diff --git a/net/base/net_log_logger_unittest.cc b/net/base/net_log_logger_unittest.cc
index 16fea5858b202dc36fd4739ee946e0d14cc39f8a..f66a3da40cccfe45604df5fc6c35b69b499def57 100644
--- a/net/base/net_log_logger_unittest.cc
+++ b/net/base/net_log_logger_unittest.cc
@@ -6,11 +6,16 @@
#include "base/files/file_path.h"
#include "base/files/file_util.h"
+#include "base/files/scoped_file.h"
#include "base/files/scoped_temp_dir.h"
#include "base/json/json_reader.h"
+#include "base/memory/scoped_ptr.h"
#include "base/values.h"
#include "net/base/net_log.h"
#include "net/base/net_log_util.h"
+#include "net/url_request/url_request.h"
+#include "net/url_request/url_request_context.h"
+#include "net/url_request/url_request_test_util.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace net {
@@ -27,14 +32,16 @@ class NetLogLoggerTest : public testing::Test {
protected:
base::ScopedTempDir temp_dir_;
base::FilePath log_path_;
+ NetLog net_log_;
};
TEST_F(NetLogLoggerTest, GeneratesValidJSONForNoEvents) {
// Create and destroy a logger.
- FILE* file = base::OpenFile(log_path_, "w");
+ base::ScopedFILE file(base::OpenFile(log_path_, "w"));
ASSERT_TRUE(file);
- scoped_ptr<base::Value> constants(GetNetConstants());
- scoped_ptr<NetLogLogger> logger(new NetLogLogger(file, *constants));
+ scoped_ptr<NetLogLogger> logger(new NetLogLogger());
+ logger->StartObserving(&net_log_, file.Pass(), nullptr, nullptr);
+ logger->StopObserving(nullptr);
logger.reset();
std::string input;
@@ -49,33 +56,34 @@ TEST_F(NetLogLoggerTest, GeneratesValidJSONForNoEvents) {
base::ListValue* events;
ASSERT_TRUE(dict->GetList("events", &events));
ASSERT_EQ(0u, events->GetSize());
+
+ base::DictionaryValue* constants;
+ ASSERT_TRUE(dict->GetDictionary("constants", &constants));
}
-// Make sure the log level is LOG_STRIP_PRIVATE_DATA by default.
TEST_F(NetLogLoggerTest, LogLevel) {
- FILE* file = base::OpenFile(log_path_, "w");
+ base::ScopedFILE file(base::OpenFile(log_path_, "w"));
ASSERT_TRUE(file);
- scoped_ptr<base::Value> constants(GetNetConstants());
- NetLogLogger logger(file, *constants);
-
- NetLog net_log;
- logger.StartObserving(&net_log);
+ NetLogLogger logger;
+ logger.StartObserving(&net_log_, file.Pass(), nullptr, nullptr);
EXPECT_EQ(NetLog::LOG_STRIP_PRIVATE_DATA, logger.log_level());
- EXPECT_EQ(NetLog::LOG_STRIP_PRIVATE_DATA, net_log.GetLogLevel());
- logger.StopObserving();
+ EXPECT_EQ(NetLog::LOG_STRIP_PRIVATE_DATA, net_log_.GetLogLevel());
+ logger.StopObserving(nullptr);
+ file.reset(base::OpenFile(log_path_, "w"));
+ ASSERT_TRUE(file);
logger.set_log_level(NetLog::LOG_ALL_BUT_BYTES);
- logger.StartObserving(&net_log);
+ logger.StartObserving(&net_log_, file.Pass(), nullptr, nullptr);
EXPECT_EQ(NetLog::LOG_ALL_BUT_BYTES, logger.log_level());
- EXPECT_EQ(NetLog::LOG_ALL_BUT_BYTES, net_log.GetLogLevel());
- logger.StopObserving();
+ EXPECT_EQ(NetLog::LOG_ALL_BUT_BYTES, net_log_.GetLogLevel());
+ logger.StopObserving(nullptr);
}
TEST_F(NetLogLoggerTest, GeneratesValidJSONWithOneEvent) {
- FILE* file = base::OpenFile(log_path_, "w");
+ base::ScopedFILE file(base::OpenFile(log_path_, "w"));
ASSERT_TRUE(file);
- scoped_ptr<base::Value> constants(GetNetConstants());
- scoped_ptr<NetLogLogger> logger(new NetLogLogger(file, *constants));
+ scoped_ptr<NetLogLogger> logger(new NetLogLogger());
+ logger->StartObserving(&net_log_, file.Pass(), nullptr, nullptr);
const int kDummyId = 1;
NetLog::Source source(NetLog::SOURCE_HTTP2_SESSION, kDummyId);
@@ -86,6 +94,7 @@ TEST_F(NetLogLoggerTest, GeneratesValidJSONWithOneEvent) {
NULL);
NetLog::Entry entry(&entry_data, NetLog::LOG_ALL);
logger->OnAddEntry(entry);
+ logger->StopObserving(nullptr);
logger.reset();
std::string input;
@@ -103,10 +112,10 @@ TEST_F(NetLogLoggerTest, GeneratesValidJSONWithOneEvent) {
}
TEST_F(NetLogLoggerTest, GeneratesValidJSONWithMultipleEvents) {
- FILE* file = base::OpenFile(log_path_, "w");
+ base::ScopedFILE file(base::OpenFile(log_path_, "w"));
ASSERT_TRUE(file);
- scoped_ptr<base::Value> constants(GetNetConstants());
- scoped_ptr<NetLogLogger> logger(new NetLogLogger(file, *constants));
+ scoped_ptr<NetLogLogger> logger(new NetLogLogger());
+ logger->StartObserving(&net_log_, file.Pass(), nullptr, nullptr);
const int kDummyId = 1;
NetLog::Source source(NetLog::SOURCE_HTTP2_SESSION, kDummyId);
@@ -120,6 +129,7 @@ TEST_F(NetLogLoggerTest, GeneratesValidJSONWithMultipleEvents) {
// Add the entry multiple times.
logger->OnAddEntry(entry);
logger->OnAddEntry(entry);
+ logger->StopObserving(nullptr);
logger.reset();
std::string input;
@@ -136,6 +146,100 @@ TEST_F(NetLogLoggerTest, GeneratesValidJSONWithMultipleEvents) {
ASSERT_EQ(2u, events->GetSize());
}
+TEST_F(NetLogLoggerTest, CustomConstants) {
+ const char kConstantString[] = "awesome constant";
+ scoped_ptr<base::Value> constants(new base::StringValue(kConstantString));
+ base::ScopedFILE file(base::OpenFile(log_path_, "w"));
+ ASSERT_TRUE(file);
+ scoped_ptr<NetLogLogger> logger(new NetLogLogger());
+ logger->StartObserving(&net_log_, file.Pass(), constants.get(), nullptr);
+ logger->StopObserving(nullptr);
+ logger.reset();
+
+ std::string input;
+ ASSERT_TRUE(base::ReadFileToString(log_path_, &input));
+
+ base::JSONReader reader;
+ scoped_ptr<base::Value> root(reader.ReadToValue(input));
+ ASSERT_TRUE(root) << reader.GetErrorMessage();
+
+ base::DictionaryValue* dict;
+ ASSERT_TRUE(root->GetAsDictionary(&dict));
+ std::string constants_string;
+ ASSERT_TRUE(dict->GetString("constants", &constants_string));
+ ASSERT_EQ(kConstantString, constants_string);
+}
+
+TEST_F(NetLogLoggerTest, GeneratesValidJSONWithContext) {
+ // Create context, start a request.
+ TestURLRequestContext context(true);
+ context.set_net_log(&net_log_);
+ context.Init();
+
+ // Create and destroy a logger.
+ base::ScopedFILE file(base::OpenFile(log_path_, "w"));
+ ASSERT_TRUE(file);
+ scoped_ptr<NetLogLogger> logger(new NetLogLogger());
+ logger->StartObserving(&net_log_, file.Pass(), nullptr, &context);
+ logger->StopObserving(&context);
+ logger.reset();
+
+ std::string input;
+ ASSERT_TRUE(base::ReadFileToString(log_path_, &input));
+
+ base::JSONReader reader;
+ scoped_ptr<base::Value> root(reader.ReadToValue(input));
+ ASSERT_TRUE(root) << reader.GetErrorMessage();
+
+ base::DictionaryValue* dict;
+ ASSERT_TRUE(root->GetAsDictionary(&dict));
+ base::ListValue* events;
+ ASSERT_TRUE(dict->GetList("events", &events));
+ ASSERT_EQ(0u, events->GetSize());
+
+ // Make sure additional information is present, but don't validate it.
+ base::DictionaryValue* tab_info;
+ ASSERT_TRUE(dict->GetDictionary("tabInfo", &tab_info));
+}
+
+TEST_F(NetLogLoggerTest, GeneratesValidJSONWithContextWithActiveRequest) {
+ // Create context, start a request.
+ TestURLRequestContext context(true);
+ context.set_net_log(&net_log_);
+ context.Init();
+ TestDelegate delegate;
+
+ // URL doesn't matter. Requests can't fail synchronously.
+ scoped_ptr<URLRequest> request(
+ context.CreateRequest(GURL("blah:blah"), IDLE, &delegate, nullptr));
+ request->Start();
+
+ // Create and destroy a logger.
+ base::ScopedFILE file(base::OpenFile(log_path_, "w"));
+ ASSERT_TRUE(file);
+ scoped_ptr<NetLogLogger> logger(new NetLogLogger());
+ logger->StartObserving(&net_log_, file.Pass(), nullptr, &context);
+ logger->StopObserving(&context);
+ logger.reset();
+
+ std::string input;
+ ASSERT_TRUE(base::ReadFileToString(log_path_, &input));
+
+ base::JSONReader reader;
+ scoped_ptr<base::Value> root(reader.ReadToValue(input));
+ ASSERT_TRUE(root) << reader.GetErrorMessage();
+
+ base::DictionaryValue* dict;
+ ASSERT_TRUE(root->GetAsDictionary(&dict));
+ base::ListValue* events;
+ ASSERT_TRUE(dict->GetList("events", &events));
+ ASSERT_EQ(1u, events->GetSize());
+
+ // Make sure additional information is present, but don't validate it.
+ base::DictionaryValue* tab_info;
+ ASSERT_TRUE(dict->GetDictionary("tabInfo", &tab_info));
+}
+
} // namespace
} // namespace net
« no previous file with comments | « net/base/net_log_logger.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698