| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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/basictypes.h" | 5 #include "base/basictypes.h" |
| 6 #include "base/run_loop.h" | 6 #include "base/run_loop.h" |
| 7 #include "content/browser/service_worker/embedded_worker_registry.h" | 7 #include "content/browser/service_worker/embedded_worker_registry.h" |
| 8 #include "content/browser/service_worker/embedded_worker_test_helper.h" | 8 #include "content/browser/service_worker/embedded_worker_test_helper.h" |
| 9 #include "content/browser/service_worker/service_worker_context_core.h" | 9 #include "content/browser/service_worker/service_worker_context_core.h" |
| 10 #include "content/browser/service_worker/service_worker_handle.h" | 10 #include "content/browser/service_worker/service_worker_handle.h" |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 class ServiceWorkerHandleTest : public testing::Test { | 41 class ServiceWorkerHandleTest : public testing::Test { |
| 42 public: | 42 public: |
| 43 ServiceWorkerHandleTest() | 43 ServiceWorkerHandleTest() |
| 44 : browser_thread_bundle_(TestBrowserThreadBundle::IO_MAINLOOP) {} | 44 : browser_thread_bundle_(TestBrowserThreadBundle::IO_MAINLOOP) {} |
| 45 | 45 |
| 46 virtual void SetUp() OVERRIDE { | 46 virtual void SetUp() OVERRIDE { |
| 47 helper_.reset(new EmbeddedWorkerTestHelper(kRenderProcessId)); | 47 helper_.reset(new EmbeddedWorkerTestHelper(kRenderProcessId)); |
| 48 | 48 |
| 49 registration_ = new ServiceWorkerRegistration( | 49 registration_ = new ServiceWorkerRegistration( |
| 50 GURL("http://www.example.com/"), | 50 GURL("http://www.example.com/"), |
| 51 1L, |
| 52 helper_->context()->AsWeakPtr()); |
| 53 version_ = new ServiceWorkerVersion( |
| 54 registration_.get(), |
| 51 GURL("http://www.example.com/service_worker.js"), | 55 GURL("http://www.example.com/service_worker.js"), |
| 52 1L, | 56 1L, |
| 53 helper_->context()->AsWeakPtr()); | 57 helper_->context()->AsWeakPtr()); |
| 54 version_ = new ServiceWorkerVersion( | |
| 55 registration_.get(), 1L, helper_->context()->AsWeakPtr()); | |
| 56 | 58 |
| 57 // Simulate adding one process to the worker. | 59 // Simulate adding one process to the worker. |
| 58 int embedded_worker_id = version_->embedded_worker()->embedded_worker_id(); | 60 int embedded_worker_id = version_->embedded_worker()->embedded_worker_id(); |
| 59 helper_->SimulateAddProcessToWorker(embedded_worker_id, kRenderProcessId); | 61 helper_->SimulateAddProcessToWorker(embedded_worker_id, kRenderProcessId); |
| 60 } | 62 } |
| 61 | 63 |
| 62 virtual void TearDown() OVERRIDE { | 64 virtual void TearDown() OVERRIDE { |
| 63 registration_ = NULL; | 65 registration_ = NULL; |
| 64 version_ = NULL; | 66 version_ = NULL; |
| 65 helper_.reset(); | 67 helper_.reset(); |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 // 3. SendMessageToWorker (to send InstallEvent), and | 113 // 3. SendMessageToWorker (to send InstallEvent), and |
| 112 EXPECT_EQ(EmbeddedWorkerContextMsg_MessageToWorker::ID, | 114 EXPECT_EQ(EmbeddedWorkerContextMsg_MessageToWorker::ID, |
| 113 ipc_sink()->GetMessageAt(2)->type()); | 115 ipc_sink()->GetMessageAt(2)->type()); |
| 114 // 4. StateChanged (state == Installed). | 116 // 4. StateChanged (state == Installed). |
| 115 VerifyStateChangedMessage(handle->handle_id(), | 117 VerifyStateChangedMessage(handle->handle_id(), |
| 116 blink::WebServiceWorkerStateInstalled, | 118 blink::WebServiceWorkerStateInstalled, |
| 117 ipc_sink()->GetMessageAt(3)); | 119 ipc_sink()->GetMessageAt(3)); |
| 118 } | 120 } |
| 119 | 121 |
| 120 } // namespace content | 122 } // namespace content |
| OLD | NEW |