diff options
author | eroman@chromium.org <eroman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-04-09 04:34:47 +0000 |
---|---|---|
committer | eroman@chromium.org <eroman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-04-09 04:34:47 +0000 |
commit | 1f0e32b947057d19c6772587e72799f2644119f1 (patch) | |
tree | 57fcee3c417e40c87cb81bf316ccef45a1878e0f /chrome/browser/net/passive_log_collector_unittest.cc | |
parent | 3ef4bc6355b48c74928feefd8bbaff501bb8d59f (diff) | |
download | chromium_src-1f0e32b947057d19c6772587e72799f2644119f1.zip chromium_src-1f0e32b947057d19c6772587e72799f2644119f1.tar.gz chromium_src-1f0e32b947057d19c6772587e72799f2644119f1.tar.bz2 |
Add support for attaching custom parameters to NetLog events.
BUG=37421
Review URL: http://codereview.chromium.org/1556018
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@44057 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/net/passive_log_collector_unittest.cc')
-rw-r--r-- | chrome/browser/net/passive_log_collector_unittest.cc | 51 |
1 files changed, 16 insertions, 35 deletions
diff --git a/chrome/browser/net/passive_log_collector_unittest.cc b/chrome/browser/net/passive_log_collector_unittest.cc index ae18839..9c31ee0 100644 --- a/chrome/browser/net/passive_log_collector_unittest.cc +++ b/chrome/browser/net/passive_log_collector_unittest.cc @@ -16,31 +16,28 @@ typedef PassiveLogCollector::RequestInfoList RequestInfoList; const net::NetLog::SourceType kSourceType = net::NetLog::SOURCE_NONE; -net::NetLog::Entry MakeStartLogEntryWithURL(int source_id, - const std::string& url) { - net::NetLog::Entry entry; - entry.source.type = kSourceType; - entry.source.id = source_id; - entry.type = net::NetLog::Entry::TYPE_EVENT; - entry.event = net::NetLog::Event(net::NetLog::TYPE_REQUEST_ALIVE, - net::NetLog::PHASE_BEGIN); - entry.string = url; - return entry; +net::CapturingNetLog::Entry MakeStartLogEntryWithURL(int source_id, + const std::string& url) { + return net::CapturingNetLog::Entry( + net::NetLog::TYPE_URL_REQUEST_START, + base::TimeTicks(), + net::NetLog::Source(kSourceType, source_id), + net::NetLog::PHASE_BEGIN, + new net::NetLogStringParameter(url)); } -net::NetLog::Entry MakeStartLogEntry(int source_id) { +net::CapturingNetLog::Entry MakeStartLogEntry(int source_id) { return MakeStartLogEntryWithURL(source_id, StringPrintf("http://req%d", source_id)); } -net::NetLog::Entry MakeEndLogEntry(int source_id) { - net::NetLog::Entry entry; - entry.source.type = kSourceType; - entry.source.id = source_id; - entry.type = net::NetLog::Entry::TYPE_EVENT; - entry.event = net::NetLog::Event(net::NetLog::TYPE_REQUEST_ALIVE, - net::NetLog::PHASE_END); - return entry; +net::CapturingNetLog::Entry MakeEndLogEntry(int source_id) { + return net::CapturingNetLog::Entry( + net::NetLog::TYPE_REQUEST_ALIVE, + base::TimeTicks(), + net::NetLog::Source(kSourceType, source_id), + net::NetLog::PHASE_END, + NULL); } static const int kMaxNumLoadLogEntries = 1; @@ -134,22 +131,6 @@ TEST(RequestTrackerTest, GraveyardUnbounded) { } } -// Check that very long URLs are truncated. -TEST(RequestTrackerTest, GraveyardURLBounded) { - RequestTracker tracker(NULL); - EXPECT_FALSE(tracker.IsUnbounded()); - - std::string big_url("http://"); - big_url.resize(2 * RequestTracker::kMaxGraveyardURLSize, 'x'); - - tracker.OnAddEntry(MakeStartLogEntryWithURL(1, big_url)); - tracker.OnAddEntry(MakeEndLogEntry(1)); - - ASSERT_EQ(1u, tracker.GetRecentlyDeceased().size()); - EXPECT_EQ(RequestTracker::kMaxGraveyardURLSize, - tracker.GetRecentlyDeceased()[0].url.size()); -} - // Check that we exclude "chrome://" URLs from being saved into the recent // requests list (graveyard). TEST(RequestTrackerTest, GraveyardIsFiltered) { |