diff options
author | ppi@chromium.org <ppi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-03-20 20:27:25 +0000 |
---|---|---|
committer | ppi@chromium.org <ppi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-03-20 20:27:25 +0000 |
commit | 6b775ee9071613f5a56d7c681841db136c9d4879 (patch) | |
tree | 5e11d1cf6f9ba452ef90e18fc41eab9266f62124 /url/gurl_unittest.cc | |
parent | 5c2f32e78d718586f3024935b90664385feb91b4 (diff) | |
download | chromium_src-6b775ee9071613f5a56d7c681841db136c9d4879.zip chromium_src-6b775ee9071613f5a56d7c681841db136c9d4879.tar.gz chromium_src-6b775ee9071613f5a56d7c681841db136c9d4879.tar.bz2 |
Move referrer stripping into GURL::GetAsReferrer().
This patch moves the code that removes username, password and ref parts
of the url from http referrers into GURL::GetAsReferrer().
BUG=340295
Review URL: https://codereview.chromium.org/185133005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@258392 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'url/gurl_unittest.cc')
-rw-r--r-- | url/gurl_unittest.cc | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/url/gurl_unittest.cc b/url/gurl_unittest.cc index c2d86e9..738f2cc 100644 --- a/url/gurl_unittest.cc +++ b/url/gurl_unittest.cc @@ -287,6 +287,25 @@ TEST(GURLTest, GetOrigin) { } } +TEST(GURLTest, GetAsReferrer) { + struct TestCase { + const char* input; + const char* expected; + } cases[] = { + {"http://www.google.com", "http://www.google.com/"}, + {"http://user:pass@www.google.com:21/blah#baz", "http://www.google.com:21/blah"}, + {"http://user@www.google.com", "http://www.google.com/"}, + {"http://:pass@www.google.com", "http://www.google.com/"}, + {"http://:@www.google.com", "http://www.google.com/"}, + {"http://www.google.com/temp/foo?q#b", "http://www.google.com/temp/foo?q"}, + }; + for (size_t i = 0; i < ARRAYSIZE(cases); i++) { + GURL url(cases[i].input); + GURL origin = url.GetAsReferrer(); + EXPECT_EQ(cases[i].expected, origin.spec()); + } +} + TEST(GURLTest, GetWithEmptyPath) { struct TestCase { const char* input; |