// Copyright (c) 2010 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "net/base/cookie_monster.h" #include "base/perftimer.h" #include "base/string_util.h" #include "googleurl/src/gurl.h" #include "net/base/cookie_monster_store_test.h" #include "testing/gtest/include/gtest/gtest.h" namespace { class ParsedCookieTest : public testing::Test { }; class CookieMonsterTest : public testing::Test { }; } static const int kNumCookies = 20000; static const char kCookieLine[] = "A = \"b=;\\\"\" ;secure;;;"; namespace net { TEST(ParsedCookieTest, TestParseCookies) { std::string cookie(kCookieLine); PerfTimeLogger timer("Parsed_cookie_parse_cookies"); for (int i = 0; i < kNumCookies; ++i) { CookieMonster::ParsedCookie pc(cookie); EXPECT_TRUE(pc.IsValid()); } timer.Done(); } TEST(ParsedCookieTest, TestParseBigCookies) { std::string cookie(3800, 'z'); cookie += kCookieLine; PerfTimeLogger timer("Parsed_cookie_parse_big_cookies"); for (int i = 0; i < kNumCookies; ++i) { CookieMonster::ParsedCookie pc(cookie); EXPECT_TRUE(pc.IsValid()); } timer.Done(); } static const GURL kUrlGoogle("http://www.google.izzle"); TEST(CookieMonsterTest, TestAddCookiesOnSingleHost) { scoped_refptr cm(new CookieMonster(NULL, NULL)); std::vector cookies; for (int i = 0; i < kNumCookies; i++) { cookies.push_back(StringPrintf("a%03d=b", i)); } // Add a bunch of cookies on a single host PerfTimeLogger timer("Cookie_monster_add_single_host"); for (std::vector::const_iterator it = cookies.begin(); it != cookies.end(); ++it) { EXPECT_TRUE(cm->SetCookie(kUrlGoogle, *it)); } timer.Done(); PerfTimeLogger timer2("Cookie_monster_query_single_host"); for (std::vector::const_iterator it = cookies.begin(); it != cookies.end(); ++it) { cm->GetCookies(kUrlGoogle); } timer2.Done(); PerfTimeLogger timer3("Cookie_monster_deleteall_single_host"); cm->DeleteAll(false); timer3.Done(); } TEST(CookieMonsterTest, TestAddCookieOnManyHosts) { scoped_refptr cm(new CookieMonster(NULL, NULL)); std::string cookie(kCookieLine); std::vector gurls; // just wanna have ffffuunnn for (int i = 0; i < kNumCookies; ++i) { gurls.push_back(GURL(StringPrintf("http://a%04d.izzle", i))); } // Add a cookie on a bunch of host PerfTimeLogger timer("Cookie_monster_add_many_hosts"); for (std::vector::const_iterator it = gurls.begin(); it != gurls.end(); ++it) { EXPECT_TRUE(cm->SetCookie(*it, cookie)); } timer.Done(); PerfTimeLogger timer2("Cookie_monster_query_many_hosts"); for (std::vector::const_iterator it = gurls.begin(); it != gurls.end(); ++it) { cm->GetCookies(*it); } timer2.Done(); PerfTimeLogger timer3("Cookie_monster_deleteall_many_hosts"); cm->DeleteAll(false); timer3.Done(); } static int CountInString(const std::string& str, char c) { return std::count(str.begin(), str.end(), c); } TEST(CookieMonsterTest, TestDomainTree) { scoped_refptr cm(new CookieMonster(NULL, NULL)); const char* domain_cookie_format_tree = "a=b; domain=%s"; const std::string domain_base("top.com"); std::vector domain_list; // Create a balanced binary tree of domains on which the cookie is set. domain_list.push_back(domain_base); for (int i1 = 0; i1 < 2; i1++) { std::string domain_base_1((i1 ? "a." : "b.") + domain_base); EXPECT_EQ("top.com", cm->GetKey(domain_base_1)); domain_list.push_back(domain_base_1); for (int i2 = 0; i2 < 2; i2++) { std::string domain_base_2((i2 ? "a." : "b.") + domain_base_1); EXPECT_EQ("top.com", cm->GetKey(domain_base_2)); domain_list.push_back(domain_base_2); for (int i3 = 0; i3 < 2; i3++) { std::string domain_base_3((i3 ? "a." : "b.") + domain_base_2); EXPECT_EQ("top.com", cm->GetKey(domain_base_3)); domain_list.push_back(domain_base_3); for (int i4 = 0; i4 < 2; i4++) { std::string domain_base_4((i4 ? "a." : "b.") + domain_base_3); EXPECT_EQ("top.com", cm->GetKey(domain_base_4)); domain_list.push_back(domain_base_4); } } } } EXPECT_EQ(31u, domain_list.size()); for (std::vector::const_iterator it = domain_list.begin(); it != domain_list.end(); it++) { GURL gurl("https://" + *it + "/"); const std::string cookie = StringPrintf(domain_cookie_format_tree, it->c_str()); EXPECT_TRUE(cm->SetCookie(gurl, cookie)); } EXPECT_EQ(31u, cm->GetAllCookies().size()); GURL probe_gurl("https://b.a.b.a.top.com/"); std::string cookie_line; cookie_line = cm->GetCookies(probe_gurl); EXPECT_EQ(5, CountInString(cookie_line, '=')) << "Cookie line: " << cookie_line; PerfTimeLogger timer("Cookie_monster_query_domain_tree"); for (int i = 0; i < kNumCookies; i++) { cm->GetCookies(probe_gurl); } timer.Done(); } TEST(CookieMonsterTest, TestDomainLine) { scoped_refptr cm(new CookieMonster(NULL, NULL)); std::vector domain_list; GURL probe_gurl("https://b.a.b.a.top.com/"); std::string cookie_line; // Create a line of 32 domain cookies such that all cookies stored // by effective TLD+1 will apply to probe GURL. // (TLD + 1 is the level above .com/org/net/etc, e.g. "top.com" // or "google.com". "Effective" is added to include sites like // bbc.co.uk, where the effetive TLD+1 is more than one level // below the top level.) domain_list.push_back("a.top.com"); domain_list.push_back("b.a.top.com"); domain_list.push_back("a.b.a.top.com"); domain_list.push_back("b.a.b.a.top.com"); EXPECT_EQ(4u, domain_list.size()); const char* domain_cookie_format_line = "a%03d=b; domain=%s"; for (int i = 0; i < 8; i++) { for (std::vector::const_iterator it = domain_list.begin(); it != domain_list.end(); it++) { GURL gurl("https://" + *it + "/"); const std::string cookie = StringPrintf(domain_cookie_format_line, i, it->c_str()); EXPECT_TRUE(cm->SetCookie(gurl, cookie)); } } EXPECT_EQ(32u, cm->GetAllCookies().size()); cookie_line = cm->GetCookies(probe_gurl); EXPECT_EQ(32, CountInString(cookie_line, '=')); PerfTimeLogger timer2("Cookie_monster_query_domain_line"); for (int i = 0; i < kNumCookies; i++) { cm->GetCookies(probe_gurl); } timer2.Done(); } TEST(CookieMonsterTest, TestImport) { scoped_refptr store(new MockPersistentCookieStore); std::vector initial_cookies; // We want to setup a fairly large backing store, with 300 domains of 50 // cookies each. Creation times must be unique. int64 time_tick(base::Time::Now().ToInternalValue()); for (int domain_num = 0; domain_num < 300; domain_num++) { std::string domain_name(StringPrintf(".Domain_%d.com", domain_num)); std::string gurl("www" + domain_name); for (int cookie_num = 0; cookie_num < 50; cookie_num++) { std::string cookie_line(StringPrintf("Cookie_%d=1; Path=/", cookie_num)); AddCookieToList(gurl, cookie_line, base::Time::FromInternalValue(time_tick++), &initial_cookies); } } store->SetLoadExpectation(true, initial_cookies); scoped_refptr cm(new CookieMonster(store, NULL)); // Import will happen on first access. GURL gurl("www.google.com"); CookieOptions options; PerfTimeLogger timer("Cookie_monster_import_from_store"); cm->GetCookiesWithOptions(gurl, options); timer.Done(); // Just confirm keys were set as expected. EXPECT_EQ("domain_1.com", cm->GetKey("www.Domain_1.com")); } TEST(CookieMonsterTest, TestGetKey) { scoped_refptr cm(new CookieMonster(NULL, NULL)); PerfTimeLogger timer("Cookie_monster_get_key"); for (int i = 0; i < kNumCookies; i++) cm->GetKey("www.google.com"); timer.Done(); } } // namespace