| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "base/auto_reset.h" | 5 #include "base/auto_reset.h" |
| 6 #include "base/command_line.h" | 6 #include "base/command_line.h" |
| 7 #include "base/message_loop.h" | 7 #include "base/message_loop.h" |
| 8 #include "base/prefs/pref_service.h" | 8 #include "base/prefs/pref_service.h" |
| 9 #include "chrome/browser/content_settings/cookie_settings.h" | 9 #include "chrome/browser/content_settings/cookie_settings.h" |
| 10 #include "chrome/common/chrome_switches.h" | 10 #include "chrome/common/chrome_switches.h" |
| 11 #include "chrome/common/content_settings_pattern.h" | 11 #include "chrome/common/content_settings_pattern.h" |
| 12 #include "chrome/common/pref_names.h" | 12 #include "chrome/common/pref_names.h" |
| 13 #include "chrome/test/base/testing_profile.h" | 13 #include "chrome/test/base/testing_profile.h" |
| 14 #include "content/public/test/test_browser_thread.h" | 14 #include "content/public/test/test_browser_thread.h" |
| 15 #include "googleurl/src/gurl.h" | 15 #include "googleurl/src/gurl.h" |
| 16 #include "net/base/static_cookie_policy.h" | 16 #include "net/base/static_cookie_policy.h" |
| 17 #include "testing/gtest/include/gtest/gtest.h" | 17 #include "testing/gtest/include/gtest/gtest.h" |
| 18 | 18 |
| 19 using content::BrowserThread; | 19 using content::BrowserThread; |
| 20 | 20 |
| 21 namespace { | 21 namespace { |
| 22 | 22 |
| 23 class CookieSettingsTest : public testing::Test { | 23 class CookieSettingsTest : public testing::Test { |
| 24 public: | 24 public: |
| 25 CookieSettingsTest() : | 25 CookieSettingsTest() |
| 26 ui_thread_(BrowserThread::UI, &message_loop_), | 26 : ui_thread_(BrowserThread::UI, &message_loop_), |
| 27 cookie_settings_(CookieSettings::Factory::GetForProfile(&profile_)), | 27 cookie_settings_(CookieSettings::Factory::GetForProfile(&profile_) |
| 28 kBlockedSite("http://ads.thirdparty.com"), | 28 .get()), |
| 29 kAllowedSite("http://good.allays.com"), | 29 kBlockedSite("http://ads.thirdparty.com"), |
| 30 kFirstPartySite("http://cool.things.com"), | 30 kAllowedSite("http://good.allays.com"), |
| 31 kBlockedFirstPartySite("http://no.thirdparties.com"), | 31 kFirstPartySite("http://cool.things.com"), |
| 32 kExtensionURL("chrome-extension://deadbeef"), | 32 kBlockedFirstPartySite("http://no.thirdparties.com"), |
| 33 kHttpsSite("https://example.com"), | 33 kExtensionURL("chrome-extension://deadbeef"), |
| 34 kAllHttpsSitesPattern(ContentSettingsPattern::FromString("https://*")) { | 34 kHttpsSite("https://example.com"), |
| 35 } | 35 kAllHttpsSitesPattern(ContentSettingsPattern::FromString("https://*")) { |
| 36 } |
| 36 | 37 |
| 37 protected: | 38 protected: |
| 38 base::MessageLoop message_loop_; | 39 base::MessageLoop message_loop_; |
| 39 content::TestBrowserThread ui_thread_; | 40 content::TestBrowserThread ui_thread_; |
| 40 TestingProfile profile_; | 41 TestingProfile profile_; |
| 41 CookieSettings* cookie_settings_; | 42 CookieSettings* cookie_settings_; |
| 42 const GURL kBlockedSite; | 43 const GURL kBlockedSite; |
| 43 const GURL kAllowedSite; | 44 const GURL kAllowedSite; |
| 44 const GURL kFirstPartySite; | 45 const GURL kFirstPartySite; |
| 45 const GURL kBlockedFirstPartySite; | 46 const GURL kBlockedFirstPartySite; |
| (...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 284 TEST_F(CookieSettingsTest, ExtensionsThirdParty) { | 285 TEST_F(CookieSettingsTest, ExtensionsThirdParty) { |
| 285 profile_.GetPrefs()->SetBoolean(prefs::kBlockThirdPartyCookies, true); | 286 profile_.GetPrefs()->SetBoolean(prefs::kBlockThirdPartyCookies, true); |
| 286 | 287 |
| 287 // XHRs stemming from extensions are exempt from third-party cookie blocking | 288 // XHRs stemming from extensions are exempt from third-party cookie blocking |
| 288 // rules (as the first party is always the extension's security origin). | 289 // rules (as the first party is always the extension's security origin). |
| 289 EXPECT_TRUE(cookie_settings_->IsSettingCookieAllowed( | 290 EXPECT_TRUE(cookie_settings_->IsSettingCookieAllowed( |
| 290 kBlockedSite, kExtensionURL)); | 291 kBlockedSite, kExtensionURL)); |
| 291 } | 292 } |
| 292 | 293 |
| 293 } // namespace | 294 } // namespace |
| OLD | NEW |