blob: 2d71520b7f93fbf203f5ac464b5c11e8182b0061 [file] [log] [blame]
// Copyright 2014 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 <stdint.h>
#include "base/files/scoped_temp_dir.h"
#include "base/logging.h"
#include "base/macros.h"
#include "base/run_loop.h"
#include "content/browser/browser_thread_impl.h"
#include "content/browser/service_worker/embedded_worker_registry.h"
#include "content/browser/service_worker/embedded_worker_test_helper.h"
#include "content/browser/service_worker/service_worker_context_core.h"
#include "content/browser/service_worker/service_worker_disk_cache.h"
#include "content/browser/service_worker/service_worker_job_coordinator.h"
#include "content/browser/service_worker/service_worker_registration.h"
#include "content/browser/service_worker/service_worker_registration_status.h"
#include "content/browser/service_worker/service_worker_test_utils.h"
#include "content/common/service_worker/embedded_worker_messages.h"
#include "content/common/service_worker/service_worker_messages.h"
#include "content/public/test/test_browser_thread_bundle.h"
#include "ipc/ipc_test_sink.h"
#include "net/base/io_buffer.h"
#include "net/base/net_errors.h"
#include "net/base/test_completion_callback.h"
#include "net/http/http_response_headers.h"
#include "testing/gtest/include/gtest/gtest.h"
using net::IOBuffer;
using net::TestCompletionCallback;
using net::WrappedIOBuffer;
// Unit tests for testing all job registration tasks.
namespace content {
namespace {
void SaveRegistrationCallback(
ServiceWorkerStatusCode expected_status,
bool* called,
scoped_refptr<ServiceWorkerRegistration>* registration_out,
ServiceWorkerStatusCode status,
const std::string& status_message,
ServiceWorkerRegistration* registration) {
EXPECT_EQ(expected_status, status);
*called = true;
*registration_out = registration;
}
void SaveFoundRegistrationCallback(
ServiceWorkerStatusCode expected_status,
bool* called,
scoped_refptr<ServiceWorkerRegistration>* registration,
ServiceWorkerStatusCode status,
const scoped_refptr<ServiceWorkerRegistration>& result) {
EXPECT_EQ(expected_status, status);
*called = true;
*registration = result;
}
// Creates a callback which both keeps track of if it's been called,
// as well as the resulting registration. Whent the callback is fired,
// it ensures that the resulting status matches the expectation.
// 'called' is useful for making sure a sychronous callback is or
// isn't called.
ServiceWorkerRegisterJob::RegistrationCallback SaveRegistration(
ServiceWorkerStatusCode expected_status,
bool* called,
scoped_refptr<ServiceWorkerRegistration>* registration) {
*called = false;
return base::Bind(
&SaveRegistrationCallback, expected_status, called, registration);
}
ServiceWorkerStorage::FindRegistrationCallback SaveFoundRegistration(
ServiceWorkerStatusCode expected_status,
bool* called,
scoped_refptr<ServiceWorkerRegistration>* registration) {
*called = false;
return base::Bind(&SaveFoundRegistrationCallback,
expected_status,
called,
registration);
}
void SaveUnregistrationCallback(ServiceWorkerStatusCode expected_status,
bool* called,
int64_t registration_id,
ServiceWorkerStatusCode status) {
EXPECT_EQ(expected_status, status);
*called = true;
}
ServiceWorkerUnregisterJob::UnregistrationCallback SaveUnregistration(
ServiceWorkerStatusCode expected_status,
bool* called) {
*called = false;
return base::Bind(&SaveUnregistrationCallback, expected_status, called);
}
} // namespace
class ServiceWorkerJobTest : public testing::Test {
public:
ServiceWorkerJobTest()
: browser_thread_bundle_(TestBrowserThreadBundle::IO_MAINLOOP) {}
void SetUp() override {
helper_.reset(new EmbeddedWorkerTestHelper(base::FilePath()));
}
void TearDown() override { helper_.reset(); }
ServiceWorkerContextCore* context() const { return helper_->context(); }
ServiceWorkerJobCoordinator* job_coordinator() const {
return context()->job_coordinator();
}
ServiceWorkerStorage* storage() const { return context()->storage(); }
protected:
scoped_refptr<ServiceWorkerRegistration> RunRegisterJob(
const GURL& pattern,
const GURL& script_url,
ServiceWorkerStatusCode expected_status = SERVICE_WORKER_OK);
void RunUnregisterJob(
const GURL& pattern,
ServiceWorkerStatusCode expected_status = SERVICE_WORKER_OK);
scoped_refptr<ServiceWorkerRegistration> FindRegistrationForPattern(
const GURL& pattern,
ServiceWorkerStatusCode expected_status = SERVICE_WORKER_OK);
std::unique_ptr<ServiceWorkerProviderHost> CreateControllee();
TestBrowserThreadBundle browser_thread_bundle_;
std::unique_ptr<EmbeddedWorkerTestHelper> helper_;
};
scoped_refptr<ServiceWorkerRegistration> ServiceWorkerJobTest::RunRegisterJob(
const GURL& pattern,
const GURL& script_url,
ServiceWorkerStatusCode expected_status) {
scoped_refptr<ServiceWorkerRegistration> registration;
bool called;
job_coordinator()->Register(
pattern, script_url, NULL,
SaveRegistration(expected_status, &called, &registration));
EXPECT_FALSE(called);
base::RunLoop().RunUntilIdle();
EXPECT_TRUE(called);
return registration;
}
void ServiceWorkerJobTest::RunUnregisterJob(
const GURL& pattern,
ServiceWorkerStatusCode expected_status) {
bool called;
job_coordinator()->Unregister(pattern,
SaveUnregistration(expected_status, &called));
EXPECT_FALSE(called);
base::RunLoop().RunUntilIdle();
EXPECT_TRUE(called);
}
scoped_refptr<ServiceWorkerRegistration>
ServiceWorkerJobTest::FindRegistrationForPattern(
const GURL& pattern,
ServiceWorkerStatusCode expected_status) {
bool called;
scoped_refptr<ServiceWorkerRegistration> registration;
storage()->FindRegistrationForPattern(
pattern,
SaveFoundRegistration(expected_status, &called, &registration));
EXPECT_FALSE(called);
base::RunLoop().RunUntilIdle();
EXPECT_TRUE(called);
return registration;
}
std::unique_ptr<ServiceWorkerProviderHost>
ServiceWorkerJobTest::CreateControllee() {
return std::unique_ptr<ServiceWorkerProviderHost>(
new ServiceWorkerProviderHost(
33 /* dummy render_process id */,
MSG_ROUTING_NONE /* render_frame_id */, 1 /* dummy provider_id */,
SERVICE_WORKER_PROVIDER_FOR_WINDOW,
ServiceWorkerProviderHost::FrameSecurityLevel::SECURE,
helper_->context()->AsWeakPtr(), NULL));
}
TEST_F(ServiceWorkerJobTest, SameDocumentSameRegistration) {
scoped_refptr<ServiceWorkerRegistration> original_registration =
RunRegisterJob(GURL("http://www.example.com/"),
GURL("http://www.example.com/service_worker.js"));
bool called;
scoped_refptr<ServiceWorkerRegistration> registration1;
storage()->FindRegistrationForDocument(
GURL("http://www.example.com/"),
SaveFoundRegistration(SERVICE_WORKER_OK, &called, &registration1));
scoped_refptr<ServiceWorkerRegistration> registration2;
storage()->FindRegistrationForDocument(
GURL("http://www.example.com/"),
SaveFoundRegistration(SERVICE_WORKER_OK, &called, &registration2));
base::RunLoop().RunUntilIdle();
EXPECT_TRUE(called);
ASSERT_TRUE(registration1.get());
ASSERT_EQ(registration1, original_registration);
ASSERT_EQ(registration1, registration2);
}
TEST_F(ServiceWorkerJobTest, SameMatchSameRegistration) {
bool called;
scoped_refptr<ServiceWorkerRegistration> original_registration =
RunRegisterJob(GURL("http://www.example.com/"),
GURL("http://www.example.com/service_worker.js"));
ASSERT_NE(static_cast<ServiceWorkerRegistration*>(NULL),
original_registration.get());
scoped_refptr<ServiceWorkerRegistration> registration1;
storage()->FindRegistrationForDocument(
GURL("http://www.example.com/one"),
SaveFoundRegistration(SERVICE_WORKER_OK, &called, &registration1));
base::RunLoop().RunUntilIdle();
EXPECT_TRUE(called);
scoped_refptr<ServiceWorkerRegistration> registration2;
storage()->FindRegistrationForDocument(
GURL("http://www.example.com/two"),
SaveFoundRegistration(SERVICE_WORKER_OK, &called, &registration2));
base::RunLoop().RunUntilIdle();
EXPECT_TRUE(called);
ASSERT_EQ(registration1, original_registration);
ASSERT_EQ(registration1, registration2);
}
TEST_F(ServiceWorkerJobTest, DifferentMatchDifferentRegistration) {
bool called1;
scoped_refptr<ServiceWorkerRegistration> original_registration1;
job_coordinator()->Register(
GURL("http://www.example.com/one/"),
GURL("http://www.example.com/service_worker.js"),
NULL,
SaveRegistration(SERVICE_WORKER_OK, &called1, &original_registration1));
bool called2;
scoped_refptr<ServiceWorkerRegistration> original_registration2;
job_coordinator()->Register(
GURL("http://www.example.com/two/"),
GURL("http://www.example.com/service_worker.js"),
NULL,
SaveRegistration(SERVICE_WORKER_OK, &called2, &original_registration2));
EXPECT_FALSE(called1);
EXPECT_FALSE(called2);
base::RunLoop().RunUntilIdle();
EXPECT_TRUE(called2);
EXPECT_TRUE(called1);
scoped_refptr<ServiceWorkerRegistration> registration1;
storage()->FindRegistrationForDocument(
GURL("http://www.example.com/one/"),
SaveFoundRegistration(SERVICE_WORKER_OK, &called1, &registration1));
scoped_refptr<ServiceWorkerRegistration> registration2;
storage()->FindRegistrationForDocument(
GURL("http://www.example.com/two/"),
SaveFoundRegistration(SERVICE_WORKER_OK, &called2, &registration2));
base::RunLoop().RunUntilIdle();
EXPECT_TRUE(called2);
EXPECT_TRUE(called1);
ASSERT_NE(registration1, registration2);
}
// Make sure basic registration is working.
TEST_F(ServiceWorkerJobTest, Register) {
scoped_refptr<ServiceWorkerRegistration> registration =
RunRegisterJob(GURL("http://www.example.com/"),
GURL("http://www.example.com/service_worker.js"));
ASSERT_NE(scoped_refptr<ServiceWorkerRegistration>(NULL), registration);
EXPECT_TRUE(helper_->inner_ipc_sink()->GetUniqueMessageMatching(
ServiceWorkerMsg_InstallEvent::ID));
}
// Make sure registrations are cleaned up when they are unregistered.
TEST_F(ServiceWorkerJobTest, Unregister) {
GURL pattern("http://www.example.com/");
scoped_refptr<ServiceWorkerRegistration> registration =
RunRegisterJob(pattern, GURL("http://www.example.com/service_worker.js"));
RunUnregisterJob(pattern);
ASSERT_TRUE(registration->HasOneRef());
registration = FindRegistrationForPattern(pattern,
SERVICE_WORKER_ERROR_NOT_FOUND);
ASSERT_EQ(scoped_refptr<ServiceWorkerRegistration>(NULL), registration);
}
TEST_F(ServiceWorkerJobTest, Unregister_NothingRegistered) {
GURL pattern("http://www.example.com/");
RunUnregisterJob(pattern, SERVICE_WORKER_ERROR_NOT_FOUND);
}
// Make sure registering a new script creates a new version and shares an
// existing registration.
TEST_F(ServiceWorkerJobTest, RegisterNewScript) {
GURL pattern("http://www.example.com/");
scoped_refptr<ServiceWorkerRegistration> old_registration =
RunRegisterJob(pattern, GURL("http://www.example.com/service_worker.js"));
scoped_refptr<ServiceWorkerRegistration> old_registration_by_pattern =
FindRegistrationForPattern(pattern);
ASSERT_EQ(old_registration, old_registration_by_pattern);
old_registration_by_pattern = NULL;
scoped_refptr<ServiceWorkerRegistration> new_registration =
RunRegisterJob(pattern,
GURL("http://www.example.com/service_worker_new.js"));
ASSERT_EQ(old_registration, new_registration);
scoped_refptr<ServiceWorkerRegistration> new_registration_by_pattern =
FindRegistrationForPattern(pattern);
ASSERT_EQ(new_registration, new_registration_by_pattern);
}
// Make sure that when registering a duplicate pattern+script_url
// combination, that the same registration is used.
TEST_F(ServiceWorkerJobTest, RegisterDuplicateScript) {
GURL pattern("http://www.example.com/");
GURL script_url("http://www.example.com/service_worker.js");
scoped_refptr<ServiceWorkerRegistration> old_registration =
RunRegisterJob(pattern, script_url);
scoped_refptr<ServiceWorkerRegistration> old_registration_by_pattern =
FindRegistrationForPattern(pattern);
ASSERT_TRUE(old_registration_by_pattern.get());
scoped_refptr<ServiceWorkerRegistration> new_registration =
RunRegisterJob(pattern, script_url);
ASSERT_EQ(old_registration, new_registration);
ASSERT_FALSE(old_registration->HasOneRef());
scoped_refptr<ServiceWorkerRegistration> new_registration_by_pattern =
FindRegistrationForPattern(pattern);
ASSERT_EQ(new_registration, old_registration);
}
class FailToStartWorkerTestHelper : public EmbeddedWorkerTestHelper {
public:
FailToStartWorkerTestHelper() : EmbeddedWorkerTestHelper(base::FilePath()) {}
void OnStartWorker(int embedded_worker_id,
int64_t service_worker_version_id,
const GURL& scope,
const GURL& script_url,
bool pause_after_download) override {
EmbeddedWorkerInstance* worker = registry()->GetWorker(embedded_worker_id);
registry()->OnWorkerStopped(worker->process_id(), embedded_worker_id);
}
};
TEST_F(ServiceWorkerJobTest, Register_FailToStartWorker) {
helper_.reset(new FailToStartWorkerTestHelper);
scoped_refptr<ServiceWorkerRegistration> registration =
RunRegisterJob(GURL("http://www.example.com/"),
GURL("http://www.example.com/service_worker.js"),
SERVICE_WORKER_ERROR_START_WORKER_FAILED);
ASSERT_EQ(scoped_refptr<ServiceWorkerRegistration>(NULL), registration);
}
// Register and then unregister the pattern, in parallel. Job coordinator should
// process jobs until the last job.
TEST_F(ServiceWorkerJobTest, ParallelRegUnreg) {
GURL pattern("http://www.example.com/");
GURL script_url("http://www.example.com/service_worker.js");
bool registration_called = false;
scoped_refptr<ServiceWorkerRegistration> registration;
job_coordinator()->Register(
pattern,
script_url,
NULL,
SaveRegistration(SERVICE_WORKER_OK, &registration_called, &registration));
bool unregistration_called = false;
job_coordinator()->Unregister(
pattern,
SaveUnregistration(SERVICE_WORKER_OK, &unregistration_called));
ASSERT_FALSE(registration_called);
ASSERT_FALSE(unregistration_called);
base::RunLoop().RunUntilIdle();
ASSERT_TRUE(registration_called);
ASSERT_TRUE(unregistration_called);
registration = FindRegistrationForPattern(pattern,
SERVICE_WORKER_ERROR_NOT_FOUND);
ASSERT_EQ(scoped_refptr<ServiceWorkerRegistration>(), registration);
}
// Register conflicting scripts for the same pattern. The most recent
// registration should win, and the old registration should have been
// shutdown.
TEST_F(ServiceWorkerJobTest, ParallelRegNewScript) {
GURL pattern("http://www.example.com/");
GURL script_url1("http://www.example.com/service_worker1.js");
bool registration1_called = false;
scoped_refptr<ServiceWorkerRegistration> registration1;
job_coordinator()->Register(
pattern,
script_url1,
NULL,
SaveRegistration(
SERVICE_WORKER_OK, &registration1_called, &registration1));
GURL script_url2("http://www.example.com/service_worker2.js");
bool registration2_called = false;
scoped_refptr<ServiceWorkerRegistration> registration2;
job_coordinator()->Register(
pattern,
script_url2,
NULL,
SaveRegistration(
SERVICE_WORKER_OK, &registration2_called, &registration2));
ASSERT_FALSE(registration1_called);
ASSERT_FALSE(registration2_called);
base::RunLoop().RunUntilIdle();
ASSERT_TRUE(registration1_called);
ASSERT_TRUE(registration2_called);
scoped_refptr<ServiceWorkerRegistration> registration =
FindRegistrationForPattern(pattern);
ASSERT_EQ(registration2, registration);
}
// Register the exact same pattern + script. Requests should be
// coalesced such that both callers get the exact same registration
// object.
TEST_F(ServiceWorkerJobTest, ParallelRegSameScript) {
GURL pattern("http://www.example.com/");
GURL script_url("http://www.example.com/service_worker1.js");
bool registration1_called = false;
scoped_refptr<ServiceWorkerRegistration> registration1;
job_coordinator()->Register(
pattern,
script_url,
NULL,
SaveRegistration(
SERVICE_WORKER_OK, &registration1_called, &registration1));
bool registration2_called = false;
scoped_refptr<ServiceWorkerRegistration> registration2;
job_coordinator()->Register(
pattern,
script_url,
NULL,
SaveRegistration(
SERVICE_WORKER_OK, &registration2_called, &registration2));
ASSERT_FALSE(registration1_called);
ASSERT_FALSE(registration2_called);
base::RunLoop().RunUntilIdle();
ASSERT_TRUE(registration1_called);
ASSERT_TRUE(registration2_called);
ASSERT_EQ(registration1, registration2);
scoped_refptr<ServiceWorkerRegistration> registration =
FindRegistrationForPattern(pattern);
ASSERT_EQ(registration, registration1);
}
// Call simulataneous unregister calls.
TEST_F(ServiceWorkerJobTest, ParallelUnreg) {
GURL pattern("http://www.example.com/");
GURL script_url("http://www.example.com/service_worker.js");
bool unregistration1_called = false;
job_coordinator()->Unregister(
pattern,
SaveUnregistration(SERVICE_WORKER_ERROR_NOT_FOUND,
&unregistration1_called));
bool unregistration2_called = false;
job_coordinator()->Unregister(
pattern,
SaveUnregistration(SERVICE_WORKER_ERROR_NOT_FOUND,
&unregistration2_called));
ASSERT_FALSE(unregistration1_called);
ASSERT_FALSE(unregistration2_called);
base::RunLoop().RunUntilIdle();
ASSERT_TRUE(unregistration1_called);
ASSERT_TRUE(unregistration2_called);
// There isn't really a way to test that they are being coalesced,
// but we can make sure they can exist simultaneously without
// crashing.
scoped_refptr<ServiceWorkerRegistration> registration =
FindRegistrationForPattern(pattern, SERVICE_WORKER_ERROR_NOT_FOUND);
ASSERT_EQ(scoped_refptr<ServiceWorkerRegistration>(), registration);
}
TEST_F(ServiceWorkerJobTest, AbortAll_Register) {
GURL pattern1("http://www1.example.com/");
GURL pattern2("http://www2.example.com/");
GURL script_url1("http://www1.example.com/service_worker.js");
GURL script_url2("http://www2.example.com/service_worker.js");
bool registration_called1 = false;
scoped_refptr<ServiceWorkerRegistration> registration1;
job_coordinator()->Register(
pattern1,
script_url1,
NULL,
SaveRegistration(SERVICE_WORKER_ERROR_ABORT,
&registration_called1, &registration1));
bool registration_called2 = false;
scoped_refptr<ServiceWorkerRegistration> registration2;
job_coordinator()->Register(
pattern2,
script_url2,
NULL,
SaveRegistration(SERVICE_WORKER_ERROR_ABORT,
&registration_called2, &registration2));
ASSERT_FALSE(registration_called1);
ASSERT_FALSE(registration_called2);
job_coordinator()->AbortAll();
base::RunLoop().RunUntilIdle();
ASSERT_TRUE(registration_called1);
ASSERT_TRUE(registration_called2);
bool find_called1 = false;
storage()->FindRegistrationForPattern(
pattern1,
SaveFoundRegistration(
SERVICE_WORKER_ERROR_NOT_FOUND, &find_called1, &registration1));
bool find_called2 = false;
storage()->FindRegistrationForPattern(
pattern2,
SaveFoundRegistration(
SERVICE_WORKER_ERROR_NOT_FOUND, &find_called2, &registration2));
base::RunLoop().RunUntilIdle();
ASSERT_TRUE(find_called1);
ASSERT_TRUE(find_called2);
EXPECT_EQ(scoped_refptr<ServiceWorkerRegistration>(), registration1);
EXPECT_EQ(scoped_refptr<ServiceWorkerRegistration>(), registration2);
}
TEST_F(ServiceWorkerJobTest, AbortAll_Unregister) {
GURL pattern1("http://www1.example.com/");
GURL pattern2("http://www2.example.com/");
bool unregistration_called1 = false;
scoped_refptr<ServiceWorkerRegistration> registration1;
job_coordinator()->Unregister(
pattern1,
SaveUnregistration(SERVICE_WORKER_ERROR_ABORT,
&unregistration_called1));
bool unregistration_called2 = false;
job_coordinator()->Unregister(
pattern2,
SaveUnregistration(SERVICE_WORKER_ERROR_ABORT,
&unregistration_called2));
ASSERT_FALSE(unregistration_called1);
ASSERT_FALSE(unregistration_called2);
job_coordinator()->AbortAll();
base::RunLoop().RunUntilIdle();
ASSERT_TRUE(unregistration_called1);
ASSERT_TRUE(unregistration_called2);
}
TEST_F(ServiceWorkerJobTest, AbortAll_RegUnreg) {
GURL pattern("http://www.example.com/");
GURL script_url("http://www.example.com/service_worker.js");
bool registration_called = false;
scoped_refptr<ServiceWorkerRegistration> registration;
job_coordinator()->Register(
pattern,
script_url,
NULL,
SaveRegistration(SERVICE_WORKER_ERROR_ABORT,
&registration_called, &registration));
bool unregistration_called = false;
job_coordinator()->Unregister(
pattern,
SaveUnregistration(SERVICE_WORKER_ERROR_ABORT,
&unregistration_called));
ASSERT_FALSE(registration_called);
ASSERT_FALSE(unregistration_called);
job_coordinator()->AbortAll();
base::RunLoop().RunUntilIdle();
ASSERT_TRUE(registration_called);
ASSERT_TRUE(unregistration_called);
registration = FindRegistrationForPattern(pattern,
SERVICE_WORKER_ERROR_NOT_FOUND);
EXPECT_EQ(scoped_refptr<ServiceWorkerRegistration>(), registration);
}
// Tests that the waiting worker enters the 'redundant' state upon
// unregistration.
TEST_F(ServiceWorkerJobTest, UnregisterWaitingSetsRedundant) {
GURL script_url("http://www.example.com/service_worker.js");
scoped_refptr<ServiceWorkerRegistration> registration =
RunRegisterJob(GURL("http://www.example.com/"), script_url);
ASSERT_TRUE(registration.get());
// Manually create the waiting worker since there is no way to become a
// waiting worker until Update is implemented.
scoped_refptr<ServiceWorkerVersion> version = new ServiceWorkerVersion(
registration.get(), script_url, 1L, helper_->context()->AsWeakPtr());
ServiceWorkerStatusCode status = SERVICE_WORKER_ERROR_FAILED;
version->StartWorker(ServiceWorkerMetrics::EventType::UNKNOWN,
CreateReceiverOnCurrentThread(&status));
base::RunLoop().RunUntilIdle();
ASSERT_EQ(SERVICE_WORKER_OK, status);
version->SetStatus(ServiceWorkerVersion::INSTALLED);
registration->SetWaitingVersion(version);
EXPECT_EQ(ServiceWorkerVersion::RUNNING,
version->running_status());
EXPECT_EQ(ServiceWorkerVersion::INSTALLED, version->status());
RunUnregisterJob(GURL("http://www.example.com/"));
// The version should be stopped since there is no controllee after
// unregistration.
EXPECT_EQ(ServiceWorkerVersion::STOPPED, version->running_status());
EXPECT_EQ(ServiceWorkerVersion::REDUNDANT, version->status());
}
// Tests that the active worker enters the 'redundant' state upon
// unregistration.
TEST_F(ServiceWorkerJobTest, UnregisterActiveSetsRedundant) {
scoped_refptr<ServiceWorkerRegistration> registration =
RunRegisterJob(GURL("http://www.example.com/"),
GURL("http://www.example.com/service_worker.js"));
ASSERT_TRUE(registration.get());
scoped_refptr<ServiceWorkerVersion> version = registration->active_version();
EXPECT_EQ(ServiceWorkerVersion::RUNNING, version->running_status());
EXPECT_EQ(ServiceWorkerVersion::ACTIVATED, version->status());
RunUnregisterJob(GURL("http://www.example.com/"));
// The version should be stopped since there is no controllee after
// unregistration.
EXPECT_EQ(ServiceWorkerVersion::STOPPED, version->running_status());
EXPECT_EQ(ServiceWorkerVersion::REDUNDANT, version->status());
}
// Tests that the active worker enters the 'redundant' state upon
// unregistration.
TEST_F(ServiceWorkerJobTest,
UnregisterActiveSetsRedundant_WaitForNoControllee) {
scoped_refptr<ServiceWorkerRegistration> registration =
RunRegisterJob(GURL("http://www.example.com/"),
GURL("http://www.example.com/service_worker.js"));
ASSERT_TRUE(registration.get());
std::unique_ptr<ServiceWorkerProviderHost> host = CreateControllee();
registration->active_version()->AddControllee(host.get());
scoped_refptr<ServiceWorkerVersion> version = registration->active_version();
EXPECT_EQ(ServiceWorkerVersion::RUNNING, version->running_status());
EXPECT_EQ(ServiceWorkerVersion::ACTIVATED, version->status());
RunUnregisterJob(GURL("http://www.example.com/"));
// The version should be running since there is still a controllee.
EXPECT_EQ(ServiceWorkerVersion::RUNNING, version->running_status());
EXPECT_EQ(ServiceWorkerVersion::ACTIVATED, version->status());
registration->active_version()->RemoveControllee(host.get());
base::RunLoop().RunUntilIdle();
// The version should be stopped since there is no controllee.
EXPECT_EQ(ServiceWorkerVersion::STOPPED, version->running_status());
EXPECT_EQ(ServiceWorkerVersion::REDUNDANT, version->status());
}
namespace { // Helpers for the update job tests.
const GURL kNoChangeOrigin("http://nochange/");
const GURL kNewVersionOrigin("http://newversion/");
const std::string kScope("scope/");
const std::string kScript("script.js");
void RunNestedUntilIdle() {
base::MessageLoop::ScopedNestableTaskAllower allow(
base::MessageLoop::current());
base::MessageLoop::current()->RunUntilIdle();
}
void OnIOComplete(int* rv_out, int rv) {
*rv_out = rv;
}
void WriteResponse(ServiceWorkerStorage* storage,
int64_t id,
const std::string& headers,
IOBuffer* body,
int length) {
std::unique_ptr<ServiceWorkerResponseWriter> writer =
storage->CreateResponseWriter(id);
std::unique_ptr<net::HttpResponseInfo> info(new net::HttpResponseInfo);
info->request_time = base::Time::Now();
info->response_time = base::Time::Now();
info->was_cached = false;
info->headers = new net::HttpResponseHeaders(headers);
scoped_refptr<HttpResponseInfoIOBuffer> info_buffer =
new HttpResponseInfoIOBuffer(info.release());
int rv = -1234;
writer->WriteInfo(info_buffer.get(), base::Bind(&OnIOComplete, &rv));
RunNestedUntilIdle();
EXPECT_LT(0, rv);
rv = -1234;
writer->WriteData(body, length,
base::Bind(&OnIOComplete, &rv));
RunNestedUntilIdle();
EXPECT_EQ(length, rv);
}
void WriteStringResponse(ServiceWorkerStorage* storage,
int64_t id,
const std::string& body) {
scoped_refptr<IOBuffer> body_buffer(new WrappedIOBuffer(body.data()));
const char kHttpHeaders[] = "HTTP/1.0 200 HONKYDORY\0\0";
std::string headers(kHttpHeaders, arraysize(kHttpHeaders));
WriteResponse(storage, id, headers, body_buffer.get(), body.length());
}
class UpdateJobTestHelper
: public EmbeddedWorkerTestHelper,
public ServiceWorkerRegistration::Listener,
public ServiceWorkerVersion::Listener {
public:
struct AttributeChangeLogEntry {
int64_t registration_id;
ChangedVersionAttributesMask mask;
ServiceWorkerRegistrationInfo info;
};
struct StateChangeLogEntry {
int64_t version_id;
ServiceWorkerVersion::Status status;
};
UpdateJobTestHelper() : EmbeddedWorkerTestHelper(base::FilePath()) {}
~UpdateJobTestHelper() override {
if (registration_.get())
registration_->RemoveListener(this);
}
ServiceWorkerStorage* storage() { return context()->storage(); }
ServiceWorkerJobCoordinator* job_coordinator() {
return context()->job_coordinator();
}
void set_force_start_worker_failure(bool force_start_worker_failure) {
force_start_worker_failure_ = force_start_worker_failure;
}
scoped_refptr<ServiceWorkerRegistration> SetupInitialRegistration(
const GURL& test_origin) {
scoped_refptr<ServiceWorkerRegistration> registration;
bool called = false;
job_coordinator()->Register(
test_origin.Resolve(kScope),
test_origin.Resolve(kScript),
NULL,
SaveRegistration(SERVICE_WORKER_OK, &called, &registration));
base::RunLoop().RunUntilIdle();
EXPECT_TRUE(called);
EXPECT_TRUE(registration.get());
EXPECT_TRUE(registration->active_version());
EXPECT_FALSE(registration->installing_version());
EXPECT_FALSE(registration->waiting_version());
registration_ = registration;
return registration;
}
// EmbeddedWorkerTestHelper overrides
void OnStartWorker(int embedded_worker_id,
int64_t version_id,
const GURL& scope,
const GURL& script,
bool pause_after_download) override {
const std::string kMockScriptBody = "mock_script";
const uint64_t kMockScriptSize = 19284;
ServiceWorkerVersion* version = context()->GetLiveVersion(version_id);
ServiceWorkerRegistration* registration =
context()->GetLiveRegistration(version->registration_id());
bool is_update = registration->active_version() &&
version != registration->active_version();
ASSERT_TRUE(version);
version->AddListener(this);
// Simulate network access.
base::TimeDelta time_since_last_check =
base::Time::Now() - registration->last_update_check();
if (!is_update || script.GetOrigin() != kNoChangeOrigin ||
time_since_last_check > base::TimeDelta::FromHours(
kServiceWorkerScriptMaxCacheAgeInHours)) {
version->embedded_worker()->OnNetworkAccessedForScriptLoad();
}
int64_t resource_id = storage()->NewResourceId();
version->script_cache_map()->NotifyStartedCaching(script, resource_id);
if (!is_update) {
// Spoof caching the script for the initial version.
WriteStringResponse(storage(), resource_id, kMockScriptBody);
version->script_cache_map()->NotifyFinishedCaching(
script, kMockScriptSize, net::URLRequestStatus(), std::string());
} else {
if (script.GetOrigin() == kNoChangeOrigin) {
// Simulate fetching the updated script and finding it's identical to
// the incumbent.
net::URLRequestStatus status =
net::URLRequestStatus::FromError(net::ERR_FILE_EXISTS);
version->script_cache_map()->NotifyFinishedCaching(
script, kMockScriptSize, status, std::string());
SimulateWorkerScriptLoaded(embedded_worker_id);
return;
}
// Spoof caching the script for the new version.
WriteStringResponse(storage(), resource_id, "mock_different_script");
version->script_cache_map()->NotifyFinishedCaching(
script, kMockScriptSize, net::URLRequestStatus(), std::string());
}
EmbeddedWorkerTestHelper::OnStartWorker(
embedded_worker_id, version_id, scope, script, pause_after_download);
}
void OnResumeAfterDownload(int embedded_worker_id) override {
if (!force_start_worker_failure_) {
EmbeddedWorkerTestHelper::OnResumeAfterDownload(embedded_worker_id);
} else {
SimulateWorkerThreadStarted(GetNextThreadId(), embedded_worker_id);
SimulateWorkerScriptEvaluated(embedded_worker_id, false);
}
}
// ServiceWorkerRegistration::Listener overrides
void OnVersionAttributesChanged(
ServiceWorkerRegistration* registration,
ChangedVersionAttributesMask changed_mask,
const ServiceWorkerRegistrationInfo& info) override {
AttributeChangeLogEntry entry;
entry.registration_id = registration->id();
entry.mask = changed_mask;
entry.info = info;
attribute_change_log_.push_back(entry);
}
void OnRegistrationFailed(ServiceWorkerRegistration* registration) override {
NOTREACHED();
}
void OnUpdateFound(ServiceWorkerRegistration* registration) override {
update_found_ = true;
}
// ServiceWorkerVersion::Listener overrides
void OnVersionStateChanged(ServiceWorkerVersion* version) override {
StateChangeLogEntry entry;
entry.version_id = version->version_id();
entry.status = version->status();
state_change_log_.push_back(entry);
}
scoped_refptr<ServiceWorkerRegistration> registration_;
std::vector<AttributeChangeLogEntry> attribute_change_log_;
std::vector<StateChangeLogEntry> state_change_log_;
bool update_found_ = false;
bool force_start_worker_failure_ = false;
};
// Helper class for update tests that evicts the active version when the update
// worker is about to be started.
class EvictIncumbentVersionHelper : public UpdateJobTestHelper {
public:
EvictIncumbentVersionHelper() {}
~EvictIncumbentVersionHelper() override {}
void OnStartWorker(int embedded_worker_id,
int64_t version_id,
const GURL& scope,
const GURL& script,
bool pause_after_download) override {
ServiceWorkerVersion* version = context()->GetLiveVersion(version_id);
ServiceWorkerRegistration* registration =
context()->GetLiveRegistration(version->registration_id());
bool is_update = registration->active_version() &&
version != registration->active_version();
if (is_update) {
// Evict the incumbent worker.
ASSERT_FALSE(registration->waiting_version());
registration->DeleteVersion(
make_scoped_refptr(registration->active_version()));
}
UpdateJobTestHelper::OnStartWorker(embedded_worker_id, version_id, scope,
script, pause_after_download);
}
void OnRegistrationFailed(ServiceWorkerRegistration* registration) override {
registration_failed_ = true;
}
bool registration_failed_ = false;
};
} // namespace
TEST_F(ServiceWorkerJobTest, Update_NoChange) {
UpdateJobTestHelper* update_helper = new UpdateJobTestHelper;
helper_.reset(update_helper);
scoped_refptr<ServiceWorkerRegistration> registration =
update_helper->SetupInitialRegistration(kNoChangeOrigin);
ASSERT_TRUE(registration.get());
ASSERT_EQ(4u, update_helper->state_change_log_.size());
EXPECT_EQ(ServiceWorkerVersion::INSTALLING,
update_helper->state_change_log_[0].status);
EXPECT_EQ(ServiceWorkerVersion::INSTALLED,
update_helper->state_change_log_[1].status);
EXPECT_EQ(ServiceWorkerVersion::ACTIVATING,
update_helper->state_change_log_[2].status);
EXPECT_EQ(ServiceWorkerVersion::ACTIVATED,
update_helper->state_change_log_[3].status);
update_helper->state_change_log_.clear();
// Run the update job.
registration->AddListener(update_helper);
scoped_refptr<ServiceWorkerVersion> first_version =
registration->active_version();
first_version->StartUpdate();
base::RunLoop().RunUntilIdle();
// Verify results.
ASSERT_TRUE(registration->active_version());
EXPECT_EQ(first_version.get(), registration->active_version());
EXPECT_FALSE(registration->installing_version());
EXPECT_FALSE(registration->waiting_version());
EXPECT_TRUE(update_helper->attribute_change_log_.empty());
ASSERT_EQ(1u, update_helper->state_change_log_.size());
EXPECT_NE(registration->active_version()->version_id(),
update_helper->state_change_log_[0].version_id);
EXPECT_EQ(ServiceWorkerVersion::REDUNDANT,
update_helper->state_change_log_[0].status);
EXPECT_FALSE(update_helper->update_found_);
}
TEST_F(ServiceWorkerJobTest, Update_BumpLastUpdateCheckTime) {
const base::Time kToday = base::Time::Now();
const base::Time kYesterday =
kToday - base::TimeDelta::FromDays(1) - base::TimeDelta::FromHours(1);
UpdateJobTestHelper* update_helper = new UpdateJobTestHelper;
helper_.reset(update_helper);
scoped_refptr<ServiceWorkerRegistration> registration =
update_helper->SetupInitialRegistration(kNoChangeOrigin);
ASSERT_TRUE(registration.get());
registration->AddListener(update_helper);
// Run an update where the script did not change and the network was not
// accessed. The check time should not be updated.
registration->set_last_update_check(kToday);
registration->active_version()->StartUpdate();
base::RunLoop().RunUntilIdle();
EXPECT_EQ(kToday, registration->last_update_check());
EXPECT_FALSE(update_helper->update_found_);
// Run an update where the script did not change and the network was accessed.
// The check time should be updated.
registration->set_last_update_check(kYesterday);
registration->active_version()->StartUpdate();
base::RunLoop().RunUntilIdle();
EXPECT_LT(kYesterday, registration->last_update_check());
EXPECT_FALSE(update_helper->update_found_);
registration->RemoveListener(update_helper);
registration = update_helper->SetupInitialRegistration(kNewVersionOrigin);
ASSERT_TRUE(registration.get());
registration->AddListener(update_helper);
// Run an update where the script changed. The check time should be updated.
registration->set_last_update_check(kYesterday);
registration->active_version()->StartUpdate();
base::RunLoop().RunUntilIdle();
EXPECT_LT(kYesterday, registration->last_update_check());
// Run an update to a worker that loads successfully but fails to start up
// (script evaluation failure). The check time should be updated.
update_helper->set_force_start_worker_failure(true);
registration->set_last_update_check(kYesterday);
registration->active_version()->StartUpdate();
base::RunLoop().RunUntilIdle();
EXPECT_LT(kYesterday, registration->last_update_check());
}
TEST_F(ServiceWorkerJobTest, Update_NewVersion) {
UpdateJobTestHelper* update_helper = new UpdateJobTestHelper;
helper_.reset(update_helper);
scoped_refptr<ServiceWorkerRegistration> registration =
update_helper->SetupInitialRegistration(kNewVersionOrigin);
ASSERT_TRUE(registration.get());
update_helper->state_change_log_.clear();
// Run the update job.
registration->AddListener(update_helper);
scoped_refptr<ServiceWorkerVersion> first_version =
registration->active_version();
first_version->StartUpdate();
base::RunLoop().RunUntilIdle();
// Verify results.
ASSERT_TRUE(registration->active_version());
EXPECT_NE(first_version.get(), registration->active_version());
EXPECT_FALSE(registration->installing_version());
EXPECT_FALSE(registration->waiting_version());
ASSERT_EQ(3u, update_helper->attribute_change_log_.size());
UpdateJobTestHelper::AttributeChangeLogEntry entry;
entry = update_helper->attribute_change_log_[0];
EXPECT_TRUE(entry.mask.installing_changed());
EXPECT_FALSE(entry.mask.waiting_changed());
EXPECT_FALSE(entry.mask.active_changed());
EXPECT_NE(entry.info.installing_version.version_id,
kInvalidServiceWorkerVersionId);
EXPECT_EQ(entry.info.waiting_version.version_id,
kInvalidServiceWorkerVersionId);
EXPECT_NE(entry.info.active_version.version_id,
kInvalidServiceWorkerVersionId);
entry = update_helper->attribute_change_log_[1];
EXPECT_TRUE(entry.mask.installing_changed());
EXPECT_TRUE(entry.mask.waiting_changed());
EXPECT_FALSE(entry.mask.active_changed());
EXPECT_EQ(entry.info.installing_version.version_id,
kInvalidServiceWorkerVersionId);
EXPECT_NE(entry.info.waiting_version.version_id,
kInvalidServiceWorkerVersionId);
EXPECT_NE(entry.info.active_version.version_id,
kInvalidServiceWorkerVersionId);
entry = update_helper->attribute_change_log_[2];
EXPECT_FALSE(entry.mask.installing_changed());
EXPECT_TRUE(entry.mask.waiting_changed());
EXPECT_TRUE(entry.mask.active_changed());
EXPECT_EQ(entry.info.installing_version.version_id,
kInvalidServiceWorkerVersionId);
EXPECT_EQ(entry.info.waiting_version.version_id,
kInvalidServiceWorkerVersionId);
EXPECT_NE(entry.info.active_version.version_id,
kInvalidServiceWorkerVersionId);
// expected version state transitions:
// new.installing, new.installed,
// old.redundant,
// new.activating, new.activated
ASSERT_EQ(5u, update_helper->state_change_log_.size());
EXPECT_EQ(registration->active_version()->version_id(),
update_helper->state_change_log_[0].version_id);
EXPECT_EQ(ServiceWorkerVersion::INSTALLING,
update_helper->state_change_log_[0].status);
EXPECT_EQ(registration->active_version()->version_id(),
update_helper->state_change_log_[1].version_id);
EXPECT_EQ(ServiceWorkerVersion::INSTALLED,
update_helper->state_change_log_[1].status);
EXPECT_EQ(first_version->version_id(),
update_helper->state_change_log_[2].version_id);
EXPECT_EQ(ServiceWorkerVersion::REDUNDANT,
update_helper->state_change_log_[2].status);
EXPECT_EQ(registration->active_version()->version_id(),
update_helper->state_change_log_[3].version_id);
EXPECT_EQ(ServiceWorkerVersion::ACTIVATING,
update_helper->state_change_log_[3].status);
EXPECT_EQ(registration->active_version()->version_id(),
update_helper->state_change_log_[4].version_id);
EXPECT_EQ(ServiceWorkerVersion::ACTIVATED,
update_helper->state_change_log_[4].status);
EXPECT_TRUE(update_helper->update_found_);
}
// Test that the update job uses the script URL of the newest worker when the
// job starts, rather than when it is scheduled.
TEST_F(ServiceWorkerJobTest, Update_ScriptUrlChanged) {
// Create a registration with an active version.
scoped_refptr<ServiceWorkerRegistration> registration =
RunRegisterJob(GURL("http://www.example.com/one/"),
GURL("http://www.example.com/service_worker.js"));
// Queue an Update. When this runs, it will use the waiting version's script.
job_coordinator()->Update(registration.get(), false);
// Add a waiting version with a new script.
GURL new_script("http://www.example.com/new_worker.js");
scoped_refptr<ServiceWorkerVersion> version = new ServiceWorkerVersion(
registration.get(), new_script, 2L /* dummy version id */,
helper_->context()->AsWeakPtr());
registration->SetWaitingVersion(version);
// Run the update job.
base::RunLoop().RunUntilIdle();
// The update job should have created a new version with the new script,
// and promoted it to the active version.
EXPECT_EQ(new_script, registration->active_version()->script_url());
EXPECT_EQ(nullptr, registration->waiting_version());
EXPECT_EQ(nullptr, registration->installing_version());
}
// Test that update succeeds if the incumbent worker was evicted
// during the update job (this can happen on disk cache failure).
TEST_F(ServiceWorkerJobTest, Update_EvictedIncumbent) {
EvictIncumbentVersionHelper* update_helper = new EvictIncumbentVersionHelper;
helper_.reset(update_helper);
scoped_refptr<ServiceWorkerRegistration> registration =
update_helper->SetupInitialRegistration(kNewVersionOrigin);
ASSERT_TRUE(registration.get());
update_helper->state_change_log_.clear();
// Run the update job.
registration->AddListener(update_helper);
scoped_refptr<ServiceWorkerVersion> first_version =
registration->active_version();
first_version->StartUpdate();
base::RunLoop().RunUntilIdle();
// Verify results.
ASSERT_TRUE(registration->active_version());
EXPECT_NE(first_version.get(), registration->active_version());
EXPECT_FALSE(registration->installing_version());
EXPECT_FALSE(registration->waiting_version());
EXPECT_EQ(ServiceWorkerVersion::REDUNDANT, first_version->status());
EXPECT_EQ(ServiceWorkerVersion::ACTIVATED,
registration->active_version()->status());
ASSERT_EQ(4u, update_helper->attribute_change_log_.size());
EXPECT_TRUE(update_helper->update_found_);
EXPECT_TRUE(update_helper->registration_failed_);
EXPECT_FALSE(registration->is_uninstalled());
}
TEST_F(ServiceWorkerJobTest, Update_UninstallingRegistration) {
bool called;
scoped_refptr<ServiceWorkerRegistration> registration =
RunRegisterJob(GURL("http://www.example.com/one/"),
GURL("http://www.example.com/service_worker.js"));
// Add a controllee and queue an unregister to force the uninstalling state.
std::unique_ptr<ServiceWorkerProviderHost> host = CreateControllee();
ServiceWorkerVersion* active_version = registration->active_version();
active_version->AddControllee(host.get());
job_coordinator()->Unregister(GURL("http://www.example.com/one/"),
SaveUnregistration(SERVICE_WORKER_OK, &called));
// Update should abort after it starts and sees uninstalling.
job_coordinator()->Update(registration.get(), false);
EXPECT_FALSE(called);
base::RunLoop().RunUntilIdle();
EXPECT_TRUE(called);
// Verify the registration was not modified by the Update.
EXPECT_TRUE(registration->is_uninstalling());
EXPECT_EQ(active_version, registration->active_version());
EXPECT_EQ(NULL, registration->waiting_version());
EXPECT_EQ(NULL, registration->installing_version());
}
TEST_F(ServiceWorkerJobTest, RegisterWhileUninstalling) {
GURL pattern("http://www.example.com/one/");
GURL script1("http://www.example.com/service_worker.js");
GURL script2("http://www.example.com/service_worker.js?new");
scoped_refptr<ServiceWorkerRegistration> registration =
RunRegisterJob(pattern, script1);
// Add a controllee and queue an unregister to force the uninstalling state.
std::unique_ptr<ServiceWorkerProviderHost> host = CreateControllee();
scoped_refptr<ServiceWorkerVersion> old_version =
registration->active_version();
old_version->AddControllee(host.get());
RunUnregisterJob(pattern);
// Register another script.
EXPECT_EQ(registration, RunRegisterJob(pattern, script2));
EXPECT_FALSE(registration->is_uninstalling());
EXPECT_EQ(old_version, registration->active_version());
scoped_refptr<ServiceWorkerVersion> new_version =
registration->waiting_version();
// Verify the new version is installed but not activated yet.
EXPECT_EQ(NULL, registration->installing_version());
EXPECT_TRUE(new_version);
EXPECT_EQ(ServiceWorkerVersion::RUNNING, new_version->running_status());
EXPECT_EQ(ServiceWorkerVersion::INSTALLED, new_version->status());
old_version->RemoveControllee(host.get());
base::RunLoop().RunUntilIdle();
EXPECT_FALSE(registration->is_uninstalling());
EXPECT_FALSE(registration->is_uninstalled());
// Verify the new version is activated.
EXPECT_EQ(NULL, registration->installing_version());
EXPECT_EQ(NULL, registration->waiting_version());
EXPECT_EQ(new_version, registration->active_version());
EXPECT_EQ(ServiceWorkerVersion::RUNNING, new_version->running_status());
EXPECT_EQ(ServiceWorkerVersion::ACTIVATED, new_version->status());
}
TEST_F(ServiceWorkerJobTest, RegisterAndUnregisterWhileUninstalling) {
GURL pattern("http://www.example.com/one/");
GURL script1("http://www.example.com/service_worker.js");
GURL script2("http://www.example.com/service_worker.js?new");
scoped_refptr<ServiceWorkerRegistration> registration =
RunRegisterJob(pattern, script1);
// Add a controllee and queue an unregister to force the uninstalling state.
std::unique_ptr<ServiceWorkerProviderHost> host = CreateControllee();
scoped_refptr<ServiceWorkerVersion> old_version =
registration->active_version();
old_version->AddControllee(host.get());
RunUnregisterJob(pattern);
EXPECT_EQ(registration, RunRegisterJob(pattern, script2));
EXPECT_EQ(registration, FindRegistrationForPattern(pattern));
scoped_refptr<ServiceWorkerVersion> new_version =
registration->waiting_version();
ASSERT_TRUE(new_version);
// Unregister the registration (but it's still live).
RunUnregisterJob(pattern);
// Now it's not found in the storage.
RunUnregisterJob(pattern, SERVICE_WORKER_ERROR_NOT_FOUND);
FindRegistrationForPattern(pattern, SERVICE_WORKER_ERROR_NOT_FOUND);
EXPECT_TRUE(registration->is_uninstalling());
EXPECT_EQ(old_version, registration->active_version());
EXPECT_EQ(ServiceWorkerVersion::RUNNING, old_version->running_status());
EXPECT_EQ(ServiceWorkerVersion::ACTIVATED, old_version->status());
EXPECT_EQ(ServiceWorkerVersion::RUNNING, new_version->running_status());
EXPECT_EQ(ServiceWorkerVersion::INSTALLED, new_version->status());
old_version->RemoveControllee(host.get());
base::RunLoop().RunUntilIdle();
EXPECT_FALSE(registration->is_uninstalling());
EXPECT_TRUE(registration->is_uninstalled());
EXPECT_EQ(ServiceWorkerVersion::STOPPED, old_version->running_status());
EXPECT_EQ(ServiceWorkerVersion::REDUNDANT, old_version->status());
EXPECT_EQ(ServiceWorkerVersion::STOPPED, new_version->running_status());
EXPECT_EQ(ServiceWorkerVersion::REDUNDANT, new_version->status());
}
TEST_F(ServiceWorkerJobTest, RegisterSameScriptMultipleTimesWhileUninstalling) {
GURL pattern("http://www.example.com/one/");
GURL script1("http://www.example.com/service_worker.js");
GURL script2("http://www.example.com/service_worker.js?new");
scoped_refptr<ServiceWorkerRegistration> registration =
RunRegisterJob(pattern, script1);
// Add a controllee and queue an unregister to force the uninstalling state.
std::unique_ptr<ServiceWorkerProviderHost> host = CreateControllee();
scoped_refptr<ServiceWorkerVersion> old_version =
registration->active_version();
old_version->AddControllee(host.get());
RunUnregisterJob(pattern);
EXPECT_EQ(registration, RunRegisterJob(pattern, script2));
scoped_refptr<ServiceWorkerVersion> new_version =
registration->waiting_version();
ASSERT_TRUE(new_version);
RunUnregisterJob(pattern);
EXPECT_TRUE(registration->is_uninstalling());
EXPECT_EQ(registration, RunRegisterJob(pattern, script2));
EXPECT_FALSE(registration->is_uninstalling());
EXPECT_EQ(new_version, registration->waiting_version());
old_version->RemoveControllee(host.get());
base::RunLoop().RunUntilIdle();
EXPECT_FALSE(registration->is_uninstalling());
EXPECT_FALSE(registration->is_uninstalled());
// Verify the new version is activated.
EXPECT_EQ(NULL, registration->installing_version());
EXPECT_EQ(NULL, registration->waiting_version());
EXPECT_EQ(new_version, registration->active_version());
EXPECT_EQ(ServiceWorkerVersion::RUNNING, new_version->running_status());
EXPECT_EQ(ServiceWorkerVersion::ACTIVATED, new_version->status());
}
TEST_F(ServiceWorkerJobTest, RegisterMultipleTimesWhileUninstalling) {
GURL pattern("http://www.example.com/one/");
GURL script1("http://www.example.com/service_worker.js?first");
GURL script2("http://www.example.com/service_worker.js?second");
GURL script3("http://www.example.com/service_worker.js?third");
scoped_refptr<ServiceWorkerRegistration> registration =
RunRegisterJob(pattern, script1);
// Add a controllee and queue an unregister to force the uninstalling state.
std::unique_ptr<ServiceWorkerProviderHost> host = CreateControllee();
scoped_refptr<ServiceWorkerVersion> first_version =
registration->active_version();
first_version->AddControllee(host.get());
RunUnregisterJob(pattern);
EXPECT_EQ(registration, RunRegisterJob(pattern, script2));
scoped_refptr<ServiceWorkerVersion> second_version =
registration->waiting_version();
ASSERT_TRUE(second_version);
RunUnregisterJob(pattern);
EXPECT_TRUE(registration->is_uninstalling());
EXPECT_EQ(registration, RunRegisterJob(pattern, script3));
scoped_refptr<ServiceWorkerVersion> third_version =
registration->waiting_version();
ASSERT_TRUE(third_version);
EXPECT_FALSE(registration->is_uninstalling());
EXPECT_EQ(ServiceWorkerVersion::REDUNDANT, second_version->status());
first_version->RemoveControllee(host.get());
base::RunLoop().RunUntilIdle();
EXPECT_FALSE(registration->is_uninstalling());
EXPECT_FALSE(registration->is_uninstalled());
// Verify the new version is activated.
EXPECT_EQ(NULL, registration->installing_version());
EXPECT_EQ(NULL, registration->waiting_version());
EXPECT_EQ(third_version, registration->active_version());
EXPECT_EQ(ServiceWorkerVersion::RUNNING, third_version->running_status());
EXPECT_EQ(ServiceWorkerVersion::ACTIVATED, third_version->status());
}
class EventCallbackHelper : public EmbeddedWorkerTestHelper {
public:
EventCallbackHelper()
: EmbeddedWorkerTestHelper(base::FilePath()),
install_event_result_(blink::WebServiceWorkerEventResultCompleted),
activate_event_result_(blink::WebServiceWorkerEventResultCompleted) {}
void OnInstallEvent(int embedded_worker_id,
int request_id) override {
if (!install_callback_.is_null())
install_callback_.Run();
SimulateSend(
new ServiceWorkerHostMsg_InstallEventFinished(
embedded_worker_id, request_id, install_event_result_));
}
void OnActivateEvent(int embedded_worker_id, int request_id) override {
SimulateSend(
new ServiceWorkerHostMsg_ActivateEventFinished(
embedded_worker_id, request_id, activate_event_result_));
}
void set_install_callback(const base::Closure& callback) {
install_callback_ = callback;
}
void set_install_event_result(blink::WebServiceWorkerEventResult result) {
install_event_result_ = result;
}
void set_activate_event_result(blink::WebServiceWorkerEventResult result) {
activate_event_result_ = result;
}
private:
base::Closure install_callback_;
blink::WebServiceWorkerEventResult install_event_result_;
blink::WebServiceWorkerEventResult activate_event_result_;
};
TEST_F(ServiceWorkerJobTest, RemoveControlleeDuringInstall) {
EventCallbackHelper* helper = new EventCallbackHelper;
helper_.reset(helper);
GURL pattern("http://www.example.com/one/");
GURL script1("http://www.example.com/service_worker.js");
GURL script2("http://www.example.com/service_worker.js?new");
scoped_refptr<ServiceWorkerRegistration> registration =
RunRegisterJob(pattern, script1);
// Add a controllee and queue an unregister to force the uninstalling state.
std::unique_ptr<ServiceWorkerProviderHost> host = CreateControllee();
scoped_refptr<ServiceWorkerVersion> old_version =
registration->active_version();
old_version->AddControllee(host.get());
RunUnregisterJob(pattern);
// Register another script. While installing, old_version loses controllee.
helper->set_install_callback(
base::Bind(&ServiceWorkerVersion::RemoveControllee,
old_version, host.get()));
EXPECT_EQ(registration, RunRegisterJob(pattern, script2));
EXPECT_FALSE(registration->is_uninstalling());
EXPECT_FALSE(registration->is_uninstalled());
// Verify the new version is activated.
scoped_refptr<ServiceWorkerVersion> new_version =
registration->active_version();
EXPECT_NE(old_version, new_version);
EXPECT_EQ(NULL, registration->installing_version());
EXPECT_EQ(NULL, registration->waiting_version());
EXPECT_EQ(new_version, registration->active_version());
EXPECT_EQ(ServiceWorkerVersion::RUNNING, new_version->running_status());
EXPECT_EQ(ServiceWorkerVersion::ACTIVATED, new_version->status());
EXPECT_EQ(registration, FindRegistrationForPattern(pattern));
}
TEST_F(ServiceWorkerJobTest, RemoveControlleeDuringRejectedInstall) {
EventCallbackHelper* helper = new EventCallbackHelper;
helper_.reset(helper);
GURL pattern("http://www.example.com/one/");
GURL script1("http://www.example.com/service_worker.js");
GURL script2("http://www.example.com/service_worker.js?new");
scoped_refptr<ServiceWorkerRegistration> registration =
RunRegisterJob(pattern, script1);
// Add a controllee and queue an unregister to force the uninstalling state.
std::unique_ptr<ServiceWorkerProviderHost> host = CreateControllee();
scoped_refptr<ServiceWorkerVersion> old_version =
registration->active_version();
old_version->AddControllee(host.get());
RunUnregisterJob(pattern);
// Register another script that fails to install. While installing,
// old_version loses controllee.
helper->set_install_callback(
base::Bind(&ServiceWorkerVersion::RemoveControllee,
old_version, host.get()));
helper->set_install_event_result(blink::WebServiceWorkerEventResultRejected);
EXPECT_EQ(registration, RunRegisterJob(pattern, script2));
// Verify the registration was uninstalled.
EXPECT_FALSE(registration->is_uninstalling());
EXPECT_TRUE(registration->is_uninstalled());
EXPECT_EQ(ServiceWorkerVersion::STOPPED, old_version->running_status());
EXPECT_EQ(ServiceWorkerVersion::REDUNDANT, old_version->status());
FindRegistrationForPattern(pattern, SERVICE_WORKER_ERROR_NOT_FOUND);
}
TEST_F(ServiceWorkerJobTest, RemoveControlleeDuringInstall_RejectActivate) {
EventCallbackHelper* helper = new EventCallbackHelper;
helper_.reset(helper);
GURL pattern("http://www.example.com/one/");
GURL script1("http://www.example.com/service_worker.js");
GURL script2("http://www.example.com/service_worker.js?new");
scoped_refptr<ServiceWorkerRegistration> registration =
RunRegisterJob(pattern, script1);
// Add a controllee and queue an unregister to force the uninstalling state.
std::unique_ptr<ServiceWorkerProviderHost> host = CreateControllee();
scoped_refptr<ServiceWorkerVersion> old_version =
registration->active_version();
old_version->AddControllee(host.get());
RunUnregisterJob(pattern);
// Register another script that fails to activate. While installing,
// old_version loses controllee.
helper->set_install_callback(
base::Bind(&ServiceWorkerVersion::RemoveControllee,
old_version, host.get()));
helper->set_activate_event_result(blink::WebServiceWorkerEventResultRejected);
EXPECT_EQ(registration, RunRegisterJob(pattern, script2));
// Verify the registration remains.
EXPECT_FALSE(registration->is_uninstalling());
EXPECT_FALSE(registration->is_uninstalled());
EXPECT_EQ(ServiceWorkerVersion::STOPPED, old_version->running_status());
EXPECT_EQ(ServiceWorkerVersion::REDUNDANT, old_version->status());
FindRegistrationForPattern(pattern, SERVICE_WORKER_OK);
}
TEST_F(ServiceWorkerJobTest, Update_PauseAfterDownload) {
UpdateJobTestHelper* update_helper = new UpdateJobTestHelper;
helper_.reset(update_helper);
IPC::TestSink* sink = update_helper->ipc_sink();
// The initial version should not pause after download.
scoped_refptr<ServiceWorkerRegistration> registration =
update_helper->SetupInitialRegistration(kNewVersionOrigin);
{
const IPC::Message* start_msg =
sink->GetUniqueMessageMatching(EmbeddedWorkerMsg_StartWorker::ID);
ASSERT_TRUE(start_msg);
EmbeddedWorkerMsg_StartWorker::Param param;
EmbeddedWorkerMsg_StartWorker::Read(start_msg, &param);
EmbeddedWorkerMsg_StartWorker_Params start_params = base::get<0>(param);
EXPECT_FALSE(start_params.pause_after_download);
sink->ClearMessages();
}
// The updated version should pause after download.
registration->AddListener(update_helper);
registration->active_version()->StartUpdate();
base::RunLoop().RunUntilIdle();
{
const IPC::Message* start_msg =
sink->GetUniqueMessageMatching(EmbeddedWorkerMsg_StartWorker::ID);
ASSERT_TRUE(start_msg);
EmbeddedWorkerMsg_StartWorker::Param param;
EmbeddedWorkerMsg_StartWorker::Read(start_msg, &param);
EmbeddedWorkerMsg_StartWorker_Params start_params = base::get<0>(param);
EXPECT_TRUE(start_params.pause_after_download);
sink->ClearMessages();
}
}
} // namespace content