summaryrefslogtreecommitdiffstats
path: root/chrome/browser/metrics/rappor/sampling_unittest.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/metrics/rappor/sampling_unittest.cc')
-rw-r--r--chrome/browser/metrics/rappor/sampling_unittest.cc12
1 files changed, 12 insertions, 0 deletions
diff --git a/chrome/browser/metrics/rappor/sampling_unittest.cc b/chrome/browser/metrics/rappor/sampling_unittest.cc
index fdaa1ab..6cb1071 100644
--- a/chrome/browser/metrics/rappor/sampling_unittest.cc
+++ b/chrome/browser/metrics/rappor/sampling_unittest.cc
@@ -19,6 +19,18 @@ TEST(RapporSamplingTest, GetDomainAndRegistrySampleFromGURLTest) {
GURL("chrome-extension://abc1234/foo.html")));
EXPECT_EQ("chrome-search://local-ntp", GetDomainAndRegistrySampleFromGURL(
GURL("chrome-search://local-ntp/local-ntp.html")));
+ EXPECT_EQ("localhost", GetDomainAndRegistrySampleFromGURL(
+ GURL("http://localhost:8000/foo.html")));
+ EXPECT_EQ("localhost", GetDomainAndRegistrySampleFromGURL(
+ GURL("http://127.0.0.1/foo.html")));
+ EXPECT_EQ("ip_address", GetDomainAndRegistrySampleFromGURL(
+ GURL("http://192.168.0.1/foo.html")));
+ EXPECT_EQ("ip_address", GetDomainAndRegistrySampleFromGURL(
+ GURL("http://[2001:db8::1]/")));
+ EXPECT_EQ("", GetDomainAndRegistrySampleFromGURL(
+ GURL("http://www/")));
+ EXPECT_EQ("www.corp", GetDomainAndRegistrySampleFromGURL(
+ GURL("http://www.corp/")));
}
// Make sure recording a sample during tests, when the Rappor service is NULL,