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 "content/browser/service_worker/service_worker_request_handler.h" | 5 #include "content/browser/service_worker/service_worker_request_handler.h" |
6 | 6 |
7 #include "base/run_loop.h" | 7 #include "base/run_loop.h" |
8 #include "content/browser/fileapi/mock_url_request_delegate.h" | 8 #include "content/browser/fileapi/mock_url_request_delegate.h" |
9 #include "content/browser/service_worker/embedded_worker_test_helper.h" | 9 #include "content/browser/service_worker/embedded_worker_test_helper.h" |
10 #include "content/browser/service_worker/service_worker_context_core.h" | 10 #include "content/browser/service_worker/service_worker_context_core.h" |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 1L, | 48 1L, |
49 context()->AsWeakPtr()); | 49 context()->AsWeakPtr()); |
50 | 50 |
51 // An empty host. | 51 // An empty host. |
52 scoped_ptr<ServiceWorkerProviderHost> host(new ServiceWorkerProviderHost( | 52 scoped_ptr<ServiceWorkerProviderHost> host(new ServiceWorkerProviderHost( |
53 kMockRenderProcessId, | 53 kMockRenderProcessId, |
54 MSG_ROUTING_NONE, | 54 MSG_ROUTING_NONE, |
55 kMockProviderId, | 55 kMockProviderId, |
56 context()->AsWeakPtr(), | 56 context()->AsWeakPtr(), |
57 nullptr)); | 57 nullptr)); |
| 58 host->SetDocumentUrl(GURL("http://host/scope/")); |
58 provider_host_ = host->AsWeakPtr(); | 59 provider_host_ = host->AsWeakPtr(); |
59 context()->AddProviderHost(host.Pass()); | 60 context()->AddProviderHost(host.Pass()); |
60 | 61 |
61 context()->storage()->LazyInitialize(base::Bind(&EmptyCallback)); | 62 context()->storage()->LazyInitialize(base::Bind(&EmptyCallback)); |
62 base::RunLoop().RunUntilIdle(); | 63 base::RunLoop().RunUntilIdle(); |
63 | 64 |
64 version_->SetStatus(ServiceWorkerVersion::ACTIVATED); | 65 version_->SetStatus(ServiceWorkerVersion::ACTIVATED); |
65 registration_->SetActiveVersion(version_.get()); | 66 registration_->SetActiveVersion(version_.get()); |
66 context()->storage()->StoreRegistration( | 67 context()->storage()->StoreRegistration( |
67 registration_.get(), | 68 registration_.get(), |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
153 provider_host_->SetDocumentUrl(GURL("")); | 154 provider_host_->SetDocumentUrl(GURL("")); |
154 EXPECT_FALSE(InitializeHandlerCheck( | 155 EXPECT_FALSE(InitializeHandlerCheck( |
155 "http://host/scope/doc", "GET", true, RESOURCE_TYPE_IMAGE)); | 156 "http://host/scope/doc", "GET", true, RESOURCE_TYPE_IMAGE)); |
156 EXPECT_STREQ("", provider_host_->document_url().spec().c_str()); | 157 EXPECT_STREQ("", provider_host_->document_url().spec().c_str()); |
157 EXPECT_FALSE(InitializeHandlerCheck( | 158 EXPECT_FALSE(InitializeHandlerCheck( |
158 "https://host/scope/doc", "GET", true, RESOURCE_TYPE_IMAGE)); | 159 "https://host/scope/doc", "GET", true, RESOURCE_TYPE_IMAGE)); |
159 EXPECT_STREQ("", provider_host_->document_url().spec().c_str()); | 160 EXPECT_STREQ("", provider_host_->document_url().spec().c_str()); |
160 } | 161 } |
161 | 162 |
162 } // namespace content | 163 } // namespace content |
OLD | NEW |