Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(231)

Side by Side Diff: chrome/browser/browsing_data/browsing_data_remover_unittest.cc

Issue 12546016: Remove the Extensions URLRequestContext (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: compile gdi. Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 "chrome/browser/browsing_data/browsing_data_remover.h" 5 #include "chrome/browser/browsing_data/browsing_data_remover.h"
6 6
7 #include <set> 7 #include <set>
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/bind.h" 10 #include "base/bind.h"
(...skipping 13 matching lines...) Expand all
24 #include "chrome/browser/history/history_service_factory.h" 24 #include "chrome/browser/history/history_service_factory.h"
25 #include "chrome/browser/safe_browsing/safe_browsing_service.h" 25 #include "chrome/browser/safe_browsing/safe_browsing_service.h"
26 #include "chrome/common/pref_names.h" 26 #include "chrome/common/pref_names.h"
27 #include "chrome/test/base/testing_browser_process.h" 27 #include "chrome/test/base/testing_browser_process.h"
28 #include "chrome/test/base/testing_profile.h" 28 #include "chrome/test/base/testing_profile.h"
29 #include "components/autofill/core/browser/autofill_common_test.h" 29 #include "components/autofill/core/browser/autofill_common_test.h"
30 #include "components/autofill/core/browser/autofill_profile.h" 30 #include "components/autofill/core/browser/autofill_profile.h"
31 #include "components/autofill/core/browser/credit_card.h" 31 #include "components/autofill/core/browser/credit_card.h"
32 #include "components/autofill/core/browser/personal_data_manager.h" 32 #include "components/autofill/core/browser/personal_data_manager.h"
33 #include "components/autofill/core/browser/personal_data_manager_observer.h" 33 #include "components/autofill/core/browser/personal_data_manager_observer.h"
34 #include "content/public/browser/browser_context.h"
35 #include "content/public/browser/cookie_store_factory.h"
36 #include "content/public/browser/cookie_store_map.h"
34 #include "content/public/browser/dom_storage_context.h" 37 #include "content/public/browser/dom_storage_context.h"
35 #include "content/public/browser/notification_service.h" 38 #include "content/public/browser/notification_service.h"
36 #include "content/public/browser/storage_partition.h" 39 #include "content/public/browser/storage_partition.h"
37 #include "content/public/test/test_browser_thread.h" 40 #include "content/public/common/url_constants.h"
38 #include "content/public/test/test_browser_thread_bundle.h" 41 #include "content/public/test/test_browser_thread_bundle.h"
39 #include "net/cookies/cookie_monster.h" 42 #include "net/cookies/cookie_monster.h"
40 #include "net/ssl/server_bound_cert_service.h" 43 #include "net/ssl/server_bound_cert_service.h"
41 #include "net/ssl/server_bound_cert_store.h" 44 #include "net/ssl/server_bound_cert_store.h"
42 #include "net/ssl/ssl_client_cert_type.h" 45 #include "net/ssl/ssl_client_cert_type.h"
43 #include "net/url_request/url_request_context.h" 46 #include "net/url_request/url_request_context.h"
44 #include "net/url_request/url_request_context_getter.h" 47 #include "net/url_request/url_request_context_getter.h"
45 #include "testing/gtest/include/gtest/gtest.h" 48 #include "testing/gtest/include/gtest/gtest.h"
46 #include "webkit/browser/quota/mock_quota_manager.h" 49 #include "webkit/browser/quota/mock_quota_manager.h"
47 #include "webkit/browser/quota/quota_manager.h" 50 #include "webkit/browser/quota/quota_manager.h"
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
216 bool get_cookie_success_; 219 bool get_cookie_success_;
217 AwaitCompletionHelper await_completion_; 220 AwaitCompletionHelper await_completion_;
218 net::CookieStore* monster_; 221 net::CookieStore* monster_;
219 222
220 DISALLOW_COPY_AND_ASSIGN(RemoveCookieTester); 223 DISALLOW_COPY_AND_ASSIGN(RemoveCookieTester);
221 }; 224 };
222 225
223 class RemoveProfileCookieTester : public RemoveCookieTester { 226 class RemoveProfileCookieTester : public RemoveCookieTester {
224 public: 227 public:
225 explicit RemoveProfileCookieTester(TestingProfile* profile) { 228 explicit RemoveProfileCookieTester(TestingProfile* profile) {
226 SetMonster(profile->GetRequestContext()->GetURLRequestContext()-> 229 content::StoragePartition* partition =
227 cookie_store()->GetCookieMonster()); 230 content::BrowserContext::GetDefaultStoragePartition(profile);
231 SetMonster(
232 partition->GetCookieStoreMap().GetForScheme(chrome::kHttpScheme));
228 } 233 }
229 }; 234 };
230 235
231 #if defined(FULL_SAFE_BROWSING) || defined(MOBILE_SAFE_BROWSING) 236 #if defined(FULL_SAFE_BROWSING) || defined(MOBILE_SAFE_BROWSING)
232 class RemoveSafeBrowsingCookieTester : public RemoveCookieTester { 237 class RemoveSafeBrowsingCookieTester : public RemoveCookieTester {
233 public: 238 public:
234 RemoveSafeBrowsingCookieTester() 239 RemoveSafeBrowsingCookieTester()
235 : browser_process_(TestingBrowserProcess::GetGlobal()) { 240 : browser_process_(TestingBrowserProcess::GetGlobal()) {
236 scoped_refptr<SafeBrowsingService> sb_service = 241 scoped_refptr<SafeBrowsingService> sb_service =
237 SafeBrowsingService::CreateSafeBrowsingService(); 242 SafeBrowsingService::CreateSafeBrowsingService();
238 browser_process_->SetSafeBrowsingService(sb_service.get()); 243 browser_process_->SetSafeBrowsingService(sb_service.get());
239 sb_service->Initialize(); 244 sb_service->Initialize();
240 base::MessageLoop::current()->RunUntilIdle(); 245 base::MessageLoop::current()->RunUntilIdle();
241 246
242 // Create a cookiemonster that does not have persistant storage, and replace 247 // Create a cookiemonster that does not have persistant storage, and replace
243 // the SafeBrowsingService created one with it. 248 // the SafeBrowsingService created one with it.
244 net::CookieStore* monster = new net::CookieMonster(NULL, NULL); 249 net::CookieStore* monster =
250 content::CreateCookieStore(content::CookieStoreConfig::InMemory())->
251 GetCookieMonster();
245 sb_service->url_request_context()->GetURLRequestContext()-> 252 sb_service->url_request_context()->GetURLRequestContext()->
246 set_cookie_store(monster); 253 set_cookie_store(monster);
247 SetMonster(monster); 254 SetMonster(monster);
248 } 255 }
249 256
250 virtual ~RemoveSafeBrowsingCookieTester() { 257 virtual ~RemoveSafeBrowsingCookieTester() {
251 browser_process_->safe_browsing_service()->ShutDown(); 258 browser_process_->safe_browsing_service()->ShutDown();
252 base::MessageLoop::current()->RunUntilIdle(); 259 base::MessageLoop::current()->RunUntilIdle();
253 browser_process_->SetSafeBrowsingService(NULL); 260 browser_process_->SetSafeBrowsingService(NULL);
254 } 261 }
(...skipping 1128 matching lines...) Expand 10 before | Expand all | Expand 10 after
1383 BlockUntilBrowsingDataRemoved( 1390 BlockUntilBrowsingDataRemoved(
1384 BrowsingDataRemover::LAST_HOUR, 1391 BrowsingDataRemover::LAST_HOUR,
1385 BrowsingDataRemover::REMOVE_HISTORY, false); 1392 BrowsingDataRemover::REMOVE_HISTORY, false);
1386 1393
1387 EXPECT_EQ(BrowsingDataRemover::REMOVE_HISTORY, GetRemovalMask()); 1394 EXPECT_EQ(BrowsingDataRemover::REMOVE_HISTORY, GetRemovalMask());
1388 EXPECT_EQ(BrowsingDataHelper::UNPROTECTED_WEB, GetOriginSetMask()); 1395 EXPECT_EQ(BrowsingDataHelper::UNPROTECTED_WEB, GetOriginSetMask());
1389 EXPECT_TRUE(tester.HasOrigin(std::string())); 1396 EXPECT_TRUE(tester.HasOrigin(std::string()));
1390 EXPECT_FALSE(tester.HasOrigin(kWebOrigin)); 1397 EXPECT_FALSE(tester.HasOrigin(kWebOrigin));
1391 EXPECT_TRUE(tester.HasOrigin(kChromeOrigin)); 1398 EXPECT_TRUE(tester.HasOrigin(kChromeOrigin));
1392 } 1399 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698