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

Unified Diff: content/public/test/background_sync_test_util.cc

Issue 1445603003: Extension SW - add test for ServiceWorkerRegistration.sync. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix after r360068 Created 5 years, 1 month 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 side-by-side diff with in-line comments
Download patch
Index: content/public/test/background_sync_test_util.cc
diff --git a/content/public/test/background_sync_test_util.cc b/content/public/test/background_sync_test_util.cc
new file mode 100644
index 0000000000000000000000000000000000000000..719ed8577be1ab0151c61834cefbc57feaced111
--- /dev/null
+++ b/content/public/test/background_sync_test_util.cc
@@ -0,0 +1,70 @@
+// Copyright 2015 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 "content/public/test/background_sync_test_util.h"
+
+#include "base/run_loop.h"
+#include "base/task_runner_util.h"
+#include "content/browser/background_sync/background_sync_manager.h"
+#include "content/browser/background_sync/background_sync_network_observer.h"
+#include "content/browser/background_sync/background_sync_registration_handle.h"
+#include "content/public/browser/background_sync_context.h"
+#include "content/public/browser/browser_context.h"
+#include "content/public/browser/browser_thread.h"
+#include "content/public/browser/storage_partition.h"
+#include "content/public/browser/web_contents.h"
+#include "net/base/network_change_notifier.h"
+
+using content::BackgroundSyncManager;
+using content::BackgroundSyncNetworkObserver;
+using content::BrowserContext;
+using content::BrowserThread;
+using content::StoragePartition;
+using content::WebContents;
+
+namespace background_sync_test_util {
+
+namespace {
+
+void SetOnlineOnIOThread(
+ const scoped_refptr<content::BackgroundSyncContext>& sync_context,
+ bool online) {
+ DCHECK_CURRENTLY_ON(BrowserThread::IO);
+
+ BackgroundSyncManager* sync_manager = sync_context->background_sync_manager();
+ BackgroundSyncNetworkObserver* network_observer =
+ sync_manager->GetNetworkObserverForTesting();
+ if (online) {
+ network_observer->NotifyManagerIfNetworkChangedForTesting(
+ net::NetworkChangeNotifier::CONNECTION_WIFI);
+ } else {
+ network_observer->NotifyManagerIfNetworkChangedForTesting(
+ net::NetworkChangeNotifier::CONNECTION_NONE);
+ }
+}
+
+StoragePartition* GetStoragePartition(WebContents* web_contents) {
+ return BrowserContext::GetStoragePartition(web_contents->GetBrowserContext(),
+ web_contents->GetSiteInstance());
+}
+
+} // namespace
+
+// static.
jkarlin 2015/11/17 20:36:15 no period as it's not a sentence
lazyboy 2015/11/17 21:41:28 Done.
+void SetIgnoreNetworkChangeNotifier(bool ignore) {
+ BackgroundSyncNetworkObserver::SetIgnoreNetworkChangeNotifierForTests(ignore);
jkarlin 2015/11/17 20:36:15 Please update the other tests to use this function
lazyboy 2015/11/17 21:41:28 Done.
+}
+
+// static.
jkarlin 2015/11/17 20:36:15 no period as it's not a sentence
lazyboy 2015/11/17 21:41:28 Done.
+void SetOnline(content::WebContents* web_contents, bool online) {
+ BrowserThread::PostTask(
+ BrowserThread::IO, FROM_HERE,
+ base::Bind(&SetOnlineOnIOThread,
+ base::Unretained(GetStoragePartition(web_contents)
+ ->GetBackgroundSyncContext()),
+ online));
+ base::RunLoop().RunUntilIdle();
+}
+
+} // namespace background_sync_test_util

Powered by Google App Engine
This is Rietveld 408576698