OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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/public/browser/service_worker_context.h" | 5 #include "content/public/browser/service_worker_context.h" |
6 | 6 |
7 #include "base/files/scoped_temp_dir.h" | 7 #include "base/files/scoped_temp_dir.h" |
8 #include "base/logging.h" | 8 #include "base/logging.h" |
9 #include "base/message_loop/message_loop.h" | 9 #include "base/message_loop/message_loop.h" |
10 #include "content/browser/browser_thread_impl.h" | 10 #include "content/browser/browser_thread_impl.h" |
(...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
293 registration_id, | 293 registration_id, |
294 pattern.GetOrigin(), | 294 pattern.GetOrigin(), |
295 base::Bind(&ExpectRegisteredWorkers, | 295 base::Bind(&ExpectRegisteredWorkers, |
296 SERVICE_WORKER_ERROR_NOT_FOUND, | 296 SERVICE_WORKER_ERROR_NOT_FOUND, |
297 kInvalidServiceWorkerVersionId, | 297 kInvalidServiceWorkerVersionId, |
298 false /* expect_waiting */, | 298 false /* expect_waiting */, |
299 false /* expect_active */)); | 299 false /* expect_active */)); |
300 base::RunLoop().RunUntilIdle(); | 300 base::RunLoop().RunUntilIdle(); |
301 } | 301 } |
302 | 302 |
303 // Make sure registering a new script creates a new version and shares an | 303 // Make sure that when a new registration replaces an existing |
304 // existing registration. | 304 // registration, that the old one is cleaned up. |
305 TEST_F(ServiceWorkerContextTest, RegisterNewScript) { | 305 TEST_F(ServiceWorkerContextTest, RegisterNewScript) { |
306 GURL pattern("http://www.example.com/"); | 306 GURL pattern("http://www.example.com/"); |
307 | 307 |
308 bool called = false; | 308 bool called = false; |
309 int64 old_registration_id = kInvalidServiceWorkerRegistrationId; | 309 int64 old_registration_id = kInvalidServiceWorkerRegistrationId; |
310 int64 old_version_id = kInvalidServiceWorkerVersionId; | 310 int64 old_version_id = kInvalidServiceWorkerVersionId; |
311 context()->RegisterServiceWorker( | 311 context()->RegisterServiceWorker( |
312 pattern, | 312 pattern, |
313 GURL("http://www.example.com/service_worker.js"), | 313 GURL("http://www.example.com/service_worker.js"), |
314 render_process_id_, | 314 render_process_id_, |
(...skipping 13 matching lines...) Expand all Loading... |
328 pattern, | 328 pattern, |
329 GURL("http://www.example.com/service_worker_new.js"), | 329 GURL("http://www.example.com/service_worker_new.js"), |
330 render_process_id_, | 330 render_process_id_, |
331 NULL, | 331 NULL, |
332 MakeRegisteredCallback(&called, &new_registration_id, &new_version_id)); | 332 MakeRegisteredCallback(&called, &new_registration_id, &new_version_id)); |
333 | 333 |
334 ASSERT_FALSE(called); | 334 ASSERT_FALSE(called); |
335 base::RunLoop().RunUntilIdle(); | 335 base::RunLoop().RunUntilIdle(); |
336 ASSERT_TRUE(called); | 336 ASSERT_TRUE(called); |
337 | 337 |
| 338 // Returned IDs should be valid, and should differ from the values |
| 339 // returned for the previous registration. |
338 EXPECT_NE(kInvalidServiceWorkerRegistrationId, new_registration_id); | 340 EXPECT_NE(kInvalidServiceWorkerRegistrationId, new_registration_id); |
339 EXPECT_NE(kInvalidServiceWorkerVersionId, new_version_id); | 341 EXPECT_NE(kInvalidServiceWorkerVersionId, new_version_id); |
340 EXPECT_EQ(old_registration_id, new_registration_id); | 342 EXPECT_NE(old_registration_id, new_registration_id); |
341 EXPECT_NE(old_version_id, new_version_id); | 343 EXPECT_NE(old_version_id, new_version_id); |
342 } | 344 } |
343 | 345 |
344 // Make sure that when registering a duplicate pattern+script_url | 346 // Make sure that when registering a duplicate pattern+script_url |
345 // combination, that the same registration is used. | 347 // combination, that the same registration is used. |
346 TEST_F(ServiceWorkerContextTest, RegisterDuplicateScript) { | 348 TEST_F(ServiceWorkerContextTest, RegisterDuplicateScript) { |
347 GURL pattern("http://www.example.com/"); | 349 GURL pattern("http://www.example.com/"); |
348 GURL script_url("http://www.example.com/service_worker.js"); | 350 GURL script_url("http://www.example.com/service_worker.js"); |
349 | 351 |
350 bool called = false; | 352 bool called = false; |
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
449 GURL("http://www.example.com"), | 451 GURL("http://www.example.com"), |
450 base::Bind(&ExpectRegisteredWorkers, | 452 base::Bind(&ExpectRegisteredWorkers, |
451 SERVICE_WORKER_OK, | 453 SERVICE_WORKER_OK, |
452 version_id, | 454 version_id, |
453 false /* expect_waiting */, | 455 false /* expect_waiting */, |
454 true /* expect_active */)); | 456 true /* expect_active */)); |
455 base::RunLoop().RunUntilIdle(); | 457 base::RunLoop().RunUntilIdle(); |
456 } | 458 } |
457 | 459 |
458 } // namespace content | 460 } // namespace content |
OLD | NEW |