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

Unified Diff: chrome/browser/extensions/service_worker_apitest.cc

Issue 1510573003: Add test without skipWaiting() to demonstrate extension & service worker update. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: change private key Created 5 years 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: chrome/browser/extensions/service_worker_apitest.cc
diff --git a/chrome/browser/extensions/service_worker_apitest.cc b/chrome/browser/extensions/service_worker_apitest.cc
index 0d7a9a9771a536f871afce382ff2eb30be9e410d..f07ecc35e5cca6e1984159ee3d422a348bc5584a 100644
--- a/chrome/browser/extensions/service_worker_apitest.cc
+++ b/chrome/browser/extensions/service_worker_apitest.cc
@@ -24,6 +24,7 @@
#include "content/public/test/background_sync_test_util.h"
#include "content/public/test/browser_test_utils.h"
#include "extensions/browser/extension_host.h"
+#include "extensions/browser/extension_registry.h"
#include "extensions/browser/process_manager.h"
#include "extensions/test/background_page_watcher.h"
#include "extensions/test/extension_test_message_listener.h"
@@ -39,6 +40,43 @@ std::string* const kExpectSuccess = nullptr;
void DoNothingWithBool(bool b) {}
+// Returns the newly added WebContents.
+content::WebContents* AddTab(Browser* browser, const GURL& url) {
+ int starting_tab_count = browser->tab_strip_model()->count();
+ ui_test_utils::NavigateToURLWithDisposition(
+ browser, url, NEW_FOREGROUND_TAB,
+ ui_test_utils::BROWSER_TEST_WAIT_FOR_NAVIGATION);
+ int tab_count = browser->tab_strip_model()->count();
+ EXPECT_EQ(starting_tab_count + 1, tab_count);
+ return browser->tab_strip_model()->GetWebContentsAt(tab_count - 1);
+}
+
+class WebContentsLoadStopObserver : content::WebContentsObserver {
+ public:
+ explicit WebContentsLoadStopObserver(content::WebContents* web_contents)
+ : content::WebContentsObserver(web_contents),
+ load_stop_observed_(false) {}
+
+ void WaitForLoadStop() {
+ if (load_stop_observed_)
+ return;
+ message_loop_runner_ = new content::MessageLoopRunner;
+ message_loop_runner_->Run();
+ }
+
+ private:
+ void DidStopLoading() override {
+ load_stop_observed_ = true;
+ if (message_loop_runner_)
+ message_loop_runner_->Quit();
+ }
+
+ bool load_stop_observed_;
+ scoped_refptr<content::MessageLoopRunner> message_loop_runner_;
+
+ DISALLOW_COPY_AND_ASSIGN(WebContentsLoadStopObserver);
+};
+
} // namespace
class ServiceWorkerTest : public ExtensionApiTest {
@@ -214,6 +252,75 @@ IN_PROC_BROWSER_TEST_F(ServiceWorkerTest, RegisterFailsOnDev) {
error);
}
+IN_PROC_BROWSER_TEST_F(ServiceWorkerTest, UpdateWithoutSkipWaiting) {
+ base::ScopedTempDir scoped_temp_dir;
+ ASSERT_TRUE(scoped_temp_dir.CreateUniqueTempDir());
+ base::FilePath pem_path = test_data_dir_.AppendASCII("service_worker")
+ .AppendASCII("update_without_skip_waiting")
+ .AppendASCII("update_without_skip_waiting.pem");
+ base::FilePath path_v1 = PackExtensionWithOptions(
+ test_data_dir_.AppendASCII("service_worker")
+ .AppendASCII("update_without_skip_waiting")
+ .AppendASCII("v1"),
+ scoped_temp_dir.path().AppendASCII("v1.crx"), pem_path, base::FilePath());
+ base::FilePath path_v2 = PackExtensionWithOptions(
+ test_data_dir_.AppendASCII("service_worker")
+ .AppendASCII("update_without_skip_waiting")
+ .AppendASCII("v2"),
+ scoped_temp_dir.path().AppendASCII("v2.crx"), pem_path, base::FilePath());
+ const char* kId = "mhnnnflgagdakldgjpfcofkiocpdmogl";
+
+ // Install version 1.0 of the extension.
+ ASSERT_TRUE(InstallExtension(path_v1, 1));
+ EXPECT_TRUE(extensions::ExtensionRegistry::Get(profile())
+ ->enabled_extensions()
+ .GetByID(kId) != NULL);
+ const Extension* extension = extensions::ExtensionRegistry::Get(profile())
+ ->enabled_extensions()
+ .GetByID(kId);
+
+ ExtensionTestMessageListener listener_v1("Pong from version 1", false);
+ listener_v1.set_failure_message("FAILURE_V1");
+ content::WebContents* web_contents =
+ AddTab(browser(), extension->GetResourceURL("page.html"));
+ EXPECT_TRUE(listener_v1.WaitUntilSatisfied());
+
+ // Update to version 2.0.
+ EXPECT_TRUE(UpdateExtension(kId, path_v2, 0));
+ EXPECT_TRUE(extensions::ExtensionRegistry::Get(profile())
+ ->enabled_extensions()
+ .GetByID(kId) != NULL);
+ const Extension* extension_after_update =
+ extensions::ExtensionRegistry::Get(profile())
+ ->enabled_extensions()
+ .GetByID(kId);
+
+ // Service worker version 2 would be installed but it won't be controlling
+ // the extension page yet.
+ ExtensionTestMessageListener listener_v2("Pong from version 1", false);
+ listener_v2.set_failure_message("FAILURE_V2");
+ web_contents =
+ AddTab(browser(), extension_after_update->GetResourceURL("page.html"));
+ EXPECT_TRUE(listener_v2.WaitUntilSatisfied());
+
+ // Navigate the tab away from the extension page so that no clients are
+ // using the service worker.
+ // Note that just closing the tab with WebContentsDestroyedWatcher doesn't
+ // seem to be enough because it returns too early.
falken 2015/12/09 03:59:16 Yes the update is quite async. This looks fragile
lazyboy 2015/12/09 21:47:56 Done. Note that I'm still not getting the test to
+ WebContentsLoadStopObserver navigate_away_observer(web_contents);
+ web_contents->GetController().LoadURL(
+ GURL(url::kAboutBlankURL), content::Referrer(), ui::PAGE_TRANSITION_TYPED,
+ std::string());
+ navigate_away_observer.WaitForLoadStop();
+
+ // Now expect service worker version 2 to control the extension page.
+ ExtensionTestMessageListener listener_v2next("Pong from version 2", false);
+ listener_v2next.set_failure_message("FAILURE_V2");
+ web_contents =
+ AddTab(browser(), extension_after_update->GetResourceURL("page.html"));
+ EXPECT_TRUE(listener_v2next.WaitUntilSatisfied());
+}
+
IN_PROC_BROWSER_TEST_F(ServiceWorkerTest, FetchArbitraryPaths) {
const Extension* extension =
StartTestFromBackgroundPage("fetch.js", kExpectSuccess);

Powered by Google App Engine
This is Rietveld 408576698