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

Side by Side Diff: third_party/WebKit/Source/core/fetch/ImageResourceTest.cpp

Issue 2527353002: Phase II Step 3: Reload LoFi/placeholder images via new ImageResource
Patch Set: Rebase Created 4 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2013, Google Inc. All rights reserved. 2 * Copyright (c) 2013, Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 377 matching lines...) Expand 10 before | Expand all | Expand 10 after
388 cachedImage->finish(); 388 cachedImage->finish();
389 EXPECT_FALSE(cachedImage->errorOccurred()); 389 EXPECT_FALSE(cachedImage->errorOccurred());
390 ASSERT_TRUE(cachedImage->getContent()->hasImage()); 390 ASSERT_TRUE(cachedImage->getContent()->hasImage());
391 EXPECT_FALSE(cachedImage->getContent()->getImage()->isNull()); 391 EXPECT_FALSE(cachedImage->getContent()->getImage()->isNull());
392 EXPECT_EQ(2, client->imageChangedCount()); 392 EXPECT_EQ(2, client->imageChangedCount());
393 EXPECT_TRUE(client->notifyFinishedCalled()); 393 EXPECT_TRUE(client->notifyFinishedCalled());
394 EXPECT_TRUE(cachedImage->getContent()->getImage()->isBitmapImage()); 394 EXPECT_TRUE(cachedImage->getContent()->getImage()->isBitmapImage());
395 } 395 }
396 396
397 TEST(ImageResourceTest, ReloadIfLoFiOrPlaceholderAfterFinished) { 397 TEST(ImageResourceTest, ReloadIfLoFiOrPlaceholderAfterFinished) {
398 ResourceFetcher* fetcher =
399 ResourceFetcher::create(ImageResourceTestMockFetchContext::create());
400
398 KURL testURL(ParsedURLString, "http://www.test.com/cancelTest.html"); 401 KURL testURL(ParsedURLString, "http://www.test.com/cancelTest.html");
399 ScopedRegisteredURL scopedRegisteredURL(testURL); 402 ScopedRegisteredURL scopedRegisteredURL(testURL);
400 ResourceRequest request = ResourceRequest(testURL); 403 ResourceRequest request = ResourceRequest(testURL);
401 request.setLoFiState(WebURLRequest::LoFiOn); 404 request.setLoFiState(WebURLRequest::LoFiOn);
402 ImageResource* cachedImage = ImageResource::create(request); 405 ImageResource* cachedImage = ImageResource::create(request);
406 ImageResourceContent* content = cachedImage->getContent();
403 cachedImage->setStatus(Resource::Pending); 407 cachedImage->setStatus(Resource::Pending);
404 408
405 Persistent<MockImageResourceClient> client = 409 Persistent<MockImageResourceClient> client =
406 new MockImageResourceClient(cachedImage); 410 new MockImageResourceClient(cachedImage);
407 ResourceFetcher* fetcher =
408 ResourceFetcher::create(ImageResourceTestMockFetchContext::create());
409 411
410 // Send the image response. 412 // Send the image response.
411 ResourceResponse resourceResponse(KURL(), "image/jpeg", sizeof(kJpegImage), 413 ResourceResponse resourceResponse(KURL(), "image/jpeg", sizeof(kJpegImage),
412 nullAtom, String()); 414 nullAtom, String());
413 resourceResponse.addHTTPHeaderField("chrome-proxy-content-transform", 415 resourceResponse.addHTTPHeaderField("chrome-proxy-content-transform",
414 "empty-image"); 416 "empty-image");
415 417
416 cachedImage->responseReceived(resourceResponse, nullptr); 418 cachedImage->responseReceived(resourceResponse, nullptr);
417 cachedImage->appendData(reinterpret_cast<const char*>(kJpegImage), 419 cachedImage->appendData(reinterpret_cast<const char*>(kJpegImage),
418 sizeof(kJpegImage)); 420 sizeof(kJpegImage));
419 cachedImage->finish(); 421 cachedImage->finish();
420 EXPECT_FALSE(cachedImage->errorOccurred()); 422 EXPECT_FALSE(content->errorOccurred());
421 ASSERT_TRUE(cachedImage->getContent()->hasImage()); 423 ASSERT_TRUE(content->hasImage());
422 EXPECT_FALSE(cachedImage->getContent()->getImage()->isNull()); 424 EXPECT_FALSE(content->getImage()->isNull());
423 EXPECT_EQ(2, client->imageChangedCount()); 425 EXPECT_EQ(2, client->imageChangedCount());
424 EXPECT_EQ(1, client->imageNotifyFinishedCount()); 426 EXPECT_EQ(1, client->imageNotifyFinishedCount());
425 EXPECT_EQ(sizeof(kJpegImage), client->encodedSizeOnLastImageChanged()); 427 EXPECT_EQ(sizeof(kJpegImage), client->encodedSizeOnLastImageChanged());
426 // The client should have been notified that the image load completed. 428 // The client should have been notified that the image load completed.
427 EXPECT_TRUE(client->notifyFinishedCalled()); 429 EXPECT_TRUE(client->notifyFinishedCalled());
428 EXPECT_EQ(sizeof(kJpegImage), client->encodedSizeOnNotifyFinished()); 430 EXPECT_EQ(sizeof(kJpegImage), client->encodedSizeOnNotifyFinished());
429 EXPECT_EQ(sizeof(kJpegImage), client->encodedSizeOnImageNotifyFinished()); 431 EXPECT_EQ(sizeof(kJpegImage), client->encodedSizeOnImageNotifyFinished());
430 EXPECT_TRUE(cachedImage->getContent()->getImage()->isBitmapImage()); 432 EXPECT_TRUE(content->getImage()->isBitmapImage());
431 EXPECT_EQ(1, cachedImage->getContent()->getImage()->width()); 433 EXPECT_EQ(1, content->getImage()->width());
432 EXPECT_EQ(1, cachedImage->getContent()->getImage()->height()); 434 EXPECT_EQ(1, content->getImage()->height());
433 435
434 // Call reloadIfLoFiOrPlaceholder() after the image has finished loading. 436 // Call reloadIfLoFiOrPlaceholder() after the image has finished loading.
435 cachedImage->reloadIfLoFiOrPlaceholder(fetcher); 437 ImageResource* reloadingResource =
436 EXPECT_FALSE(cachedImage->errorOccurred()); 438 cachedImage->reloadIfLoFiOrPlaceholder(fetcher);
437 EXPECT_FALSE(cachedImage->resourceBuffer()); 439 EXPECT_FALSE(content->errorOccurred());
438 EXPECT_FALSE(cachedImage->getContent()->hasImage()); 440 EXPECT_TRUE(content->hasImage());
hiroshige 2016/12/05 10:12:40 Now we keep the old image until (partial) data of
439 EXPECT_EQ(2, client->imageChangedCount()); 441 EXPECT_EQ(2, client->imageChangedCount());
440 EXPECT_EQ(1, client->imageNotifyFinishedCount()); 442 EXPECT_EQ(1, client->imageNotifyFinishedCount());
443 EXPECT_TRUE(content->getImage()->isBitmapImage());
444 EXPECT_EQ(1, content->getImage()->width());
445 EXPECT_EQ(1, content->getImage()->height());
446 ASSERT_TRUE(reloadingResource);
441 447
442 cachedImage->loader()->didReceiveResponse( 448 reloadingResource->loader()->didReceiveResponse(
443 WrappedResourceResponse(resourceResponse), nullptr); 449 WrappedResourceResponse(resourceResponse), nullptr);
444 cachedImage->loader()->didReceiveData( 450 reloadingResource->loader()->didReceiveData(
445 reinterpret_cast<const char*>(kJpegImage2), sizeof(kJpegImage2), 451 reinterpret_cast<const char*>(kJpegImage2), sizeof(kJpegImage2),
446 sizeof(kJpegImage2)); 452 sizeof(kJpegImage2));
447 cachedImage->loader()->didFinishLoading(0.0, sizeof(kJpegImage2), 453 reloadingResource->loader()->didFinishLoading(0.0, sizeof(kJpegImage2),
448 sizeof(kJpegImage2)); 454 sizeof(kJpegImage2));
449 EXPECT_FALSE(cachedImage->errorOccurred()); 455 EXPECT_FALSE(content->errorOccurred());
450 ASSERT_TRUE(cachedImage->getContent()->hasImage()); 456 ASSERT_TRUE(content->hasImage());
451 EXPECT_FALSE(cachedImage->getContent()->getImage()->isNull()); 457 EXPECT_FALSE(content->getImage()->isNull());
458 EXPECT_EQ(3, client->imageChangedCount());
hiroshige 2016/12/05 10:12:40 The image is now replaced with the new one and we
452 EXPECT_EQ(sizeof(kJpegImage2), client->encodedSizeOnLastImageChanged()); 459 EXPECT_EQ(sizeof(kJpegImage2), client->encodedSizeOnLastImageChanged());
453 EXPECT_TRUE(client->notifyFinishedCalled());
hiroshige 2016/12/05 10:12:40 I removed ResourceClient-related checks after relo
454 460
455 // The client should not have been notified of completion again. 461 // The observer should not have been notified of completion again.
456 EXPECT_EQ(sizeof(kJpegImage), client->encodedSizeOnNotifyFinished()); 462 EXPECT_EQ(1, client->imageNotifyFinishedCount());
457 EXPECT_EQ(sizeof(kJpegImage), client->encodedSizeOnImageNotifyFinished()); 463 EXPECT_EQ(sizeof(kJpegImage), client->encodedSizeOnImageNotifyFinished());
458 464
459 EXPECT_TRUE(cachedImage->getContent()->getImage()->isBitmapImage()); 465 EXPECT_TRUE(content->getImage()->isBitmapImage());
460 EXPECT_EQ(50, cachedImage->getContent()->getImage()->width()); 466 EXPECT_EQ(50, content->getImage()->width());
461 EXPECT_EQ(50, cachedImage->getContent()->getImage()->height()); 467 EXPECT_EQ(50, content->getImage()->height());
462 } 468 }
463 469
464 TEST(ImageResourceTest, ReloadIfLoFiOrPlaceholderDuringFetch) { 470 TEST(ImageResourceTest, ReloadIfLoFiOrPlaceholderDuringFetch) {
465 KURL testURL(ParsedURLString, "http://www.test.com/cancelTest.html"); 471 KURL testURL(ParsedURLString, "http://www.test.com/cancelTest.html");
466 ScopedRegisteredURL scopedRegisteredURL(testURL); 472 ScopedRegisteredURL scopedRegisteredURL(testURL);
467 473
468 ResourceRequest request(testURL); 474 ResourceRequest request(testURL);
469 request.setLoFiState(WebURLRequest::LoFiOn); 475 request.setLoFiState(WebURLRequest::LoFiOn);
470 FetchRequest fetchRequest(request, FetchInitiatorInfo()); 476 FetchRequest fetchRequest(request, FetchInitiatorInfo());
471 ResourceFetcher* fetcher = 477 ResourceFetcher* fetcher =
472 ResourceFetcher::create(ImageResourceTestMockFetchContext::create()); 478 ResourceFetcher::create(ImageResourceTestMockFetchContext::create());
473 479
474 ImageResource* cachedImage = ImageResource::fetch(fetchRequest, fetcher); 480 ImageResource* cachedImage = ImageResource::fetch(fetchRequest, fetcher);
481 ImageResourceContent* content = cachedImage->getContent();
475 Persistent<MockImageResourceClient> client = 482 Persistent<MockImageResourceClient> client =
476 new MockImageResourceClient(cachedImage); 483 new MockImageResourceClient(cachedImage);
477 484
478 // Send the image response. 485 // Send the image response.
479 ResourceResponse initialResourceResponse( 486 ResourceResponse initialResourceResponse(
480 testURL, "image/jpeg", sizeof(kJpegImage), nullAtom, String()); 487 testURL, "image/jpeg", sizeof(kJpegImage), nullAtom, String());
481 initialResourceResponse.addHTTPHeaderField("chrome-proxy", "q=low"); 488 initialResourceResponse.addHTTPHeaderField("chrome-proxy", "q=low");
482 489
483 cachedImage->loader()->didReceiveResponse( 490 cachedImage->loader()->didReceiveResponse(
484 WrappedResourceResponse(initialResourceResponse)); 491 WrappedResourceResponse(initialResourceResponse));
485 cachedImage->loader()->didReceiveData( 492 cachedImage->loader()->didReceiveData(
486 reinterpret_cast<const char*>(kJpegImage), sizeof(kJpegImage), 493 reinterpret_cast<const char*>(kJpegImage), sizeof(kJpegImage),
487 sizeof(kJpegImage)); 494 sizeof(kJpegImage));
488 495
489 EXPECT_FALSE(cachedImage->errorOccurred()); 496 EXPECT_FALSE(content->errorOccurred());
490 ASSERT_TRUE(cachedImage->getContent()->hasImage()); 497 ASSERT_TRUE(content->hasImage());
491 EXPECT_FALSE(cachedImage->getContent()->getImage()->isNull()); 498 EXPECT_FALSE(content->getImage()->isNull());
492 EXPECT_EQ(1, client->imageChangedCount()); 499 EXPECT_EQ(1, client->imageChangedCount());
493 EXPECT_EQ(sizeof(kJpegImage), client->encodedSizeOnLastImageChanged()); 500 EXPECT_EQ(sizeof(kJpegImage), client->encodedSizeOnLastImageChanged());
494 EXPECT_FALSE(client->notifyFinishedCalled()); 501 EXPECT_FALSE(client->notifyFinishedCalled());
495 EXPECT_TRUE(cachedImage->getContent()->getImage()->isBitmapImage()); 502 EXPECT_TRUE(content->getImage()->isBitmapImage());
496 EXPECT_EQ(1, cachedImage->getContent()->getImage()->width()); 503 EXPECT_EQ(1, content->getImage()->width());
497 EXPECT_EQ(1, cachedImage->getContent()->getImage()->height()); 504 EXPECT_EQ(1, content->getImage()->height());
498 505
499 // Call reloadIfLoFiOrPlaceholder() while the image is still loading. 506 // Call reloadIfLoFiOrPlaceholder() while the image is still loading.
500 cachedImage->reloadIfLoFiOrPlaceholder(fetcher); 507 ImageResource* reloadingResource =
501 EXPECT_FALSE(cachedImage->errorOccurred()); 508 cachedImage->reloadIfLoFiOrPlaceholder(fetcher);
502 EXPECT_FALSE(cachedImage->resourceBuffer()); 509 EXPECT_FALSE(content->errorOccurred());
503 EXPECT_FALSE(cachedImage->getContent()->hasImage()); 510 // ImageResourceContent is not notified of the start of LoFi reloading.
504 EXPECT_EQ(2, client->imageChangedCount()); 511 EXPECT_TRUE(content->hasImage());
hiroshige 2016/12/05 10:12:40 Now we keep the old image until (partial) data of
505 EXPECT_EQ(0U, client->encodedSizeOnLastImageChanged()); 512 EXPECT_EQ(1, client->imageChangedCount());
513 EXPECT_EQ(sizeof(kJpegImage), client->encodedSizeOnLastImageChanged());
514 EXPECT_EQ(1, content->getImage()->width());
515 EXPECT_EQ(1, content->getImage()->height());
506 // The client should not have been notified of completion yet, since the image 516 // The client should not have been notified of completion yet, since the image
507 // is still loading. 517 // is still loading.
508 EXPECT_FALSE(client->notifyFinishedCalled()); 518 EXPECT_FALSE(client->notifyFinishedCalled());
519 ASSERT_TRUE(reloadingResource);
509 520
510 cachedImage->loader()->didReceiveResponse( 521 reloadingResource->loader()->didReceiveResponse(
511 WrappedResourceResponse(ResourceResponse( 522 WrappedResourceResponse(ResourceResponse(
512 testURL, "image/jpeg", sizeof(kJpegImage2), nullAtom, String())), 523 testURL, "image/jpeg", sizeof(kJpegImage2), nullAtom, String())),
513 nullptr); 524 nullptr);
514 cachedImage->loader()->didReceiveData( 525 reloadingResource->loader()->didReceiveData(
515 reinterpret_cast<const char*>(kJpegImage2), sizeof(kJpegImage2), 526 reinterpret_cast<const char*>(kJpegImage2), sizeof(kJpegImage2),
516 sizeof(kJpegImage2)); 527 sizeof(kJpegImage2));
517 cachedImage->loader()->didFinishLoading(0.0, sizeof(kJpegImage2), 528 reloadingResource->loader()->didFinishLoading(0.0, sizeof(kJpegImage2),
518 sizeof(kJpegImage2)); 529 sizeof(kJpegImage2));
519 530
520 EXPECT_FALSE(cachedImage->errorOccurred()); 531 EXPECT_FALSE(content->errorOccurred());
521 ASSERT_TRUE(cachedImage->getContent()->hasImage()); 532 // ImageResourceContent is notified of reloaded response.
522 EXPECT_FALSE(cachedImage->getContent()->getImage()->isNull()); 533 ASSERT_TRUE(content->hasImage());
534 EXPECT_EQ(2, client->imageChangedCount());
hiroshige 2016/12/05 10:12:40 The image is now replaced with the new one and we
535 EXPECT_FALSE(content->getImage()->isNull());
523 EXPECT_EQ(sizeof(kJpegImage2), client->encodedSizeOnLastImageChanged()); 536 EXPECT_EQ(sizeof(kJpegImage2), client->encodedSizeOnLastImageChanged());
524 // The client should have been notified of completion only after the reload 537 // The observer should have been notified of completion only after the reload
525 // completed. 538 // completed.
526 EXPECT_TRUE(client->notifyFinishedCalled());
527 EXPECT_EQ(sizeof(kJpegImage2), client->encodedSizeOnNotifyFinished());
528 EXPECT_EQ(sizeof(kJpegImage2), client->encodedSizeOnImageNotifyFinished()); 539 EXPECT_EQ(sizeof(kJpegImage2), client->encodedSizeOnImageNotifyFinished());
529 EXPECT_TRUE(cachedImage->getContent()->getImage()->isBitmapImage()); 540 EXPECT_TRUE(content->getImage()->isBitmapImage());
530 EXPECT_EQ(50, cachedImage->getContent()->getImage()->width()); 541 EXPECT_EQ(50, content->getImage()->width());
531 EXPECT_EQ(50, cachedImage->getContent()->getImage()->height()); 542 EXPECT_EQ(50, content->getImage()->height());
543
544 cachedImage->loader()->cancel();
532 } 545 }
533 546
534 TEST(ImageResourceTest, ReloadIfLoFiOrPlaceholderForPlaceholder) { 547 TEST(ImageResourceTest, ReloadIfLoFiOrPlaceholderForPlaceholder) {
535 KURL testURL(ParsedURLString, "http://www.test.com/cancelTest.html"); 548 KURL testURL(ParsedURLString, "http://www.test.com/cancelTest.html");
536 ScopedRegisteredURL scopedRegisteredURL(testURL); 549 ScopedRegisteredURL scopedRegisteredURL(testURL);
537 550
538 ResourceFetcher* fetcher = 551 ResourceFetcher* fetcher =
539 ResourceFetcher::create(ImageResourceTestMockFetchContext::create()); 552 ResourceFetcher::create(ImageResourceTestMockFetchContext::create());
540 FetchRequest request(testURL, FetchInitiatorInfo()); 553 FetchRequest request(testURL, FetchInitiatorInfo());
541 request.setAllowImagePlaceholder(); 554 request.setAllowImagePlaceholder();
542 ImageResource* image = ImageResource::fetch(request, fetcher); 555 ImageResource* image = ImageResource::fetch(request, fetcher);
556 ImageResourceContent* content = image->getContent();
557 ASSERT_TRUE(content);
558 Persistent<MockImageResourceClient> client =
559 new MockImageResourceClient(image);
560
543 EXPECT_EQ(FetchRequest::AllowPlaceholder, 561 EXPECT_EQ(FetchRequest::AllowPlaceholder,
544 request.placeholderImageRequestType()); 562 request.placeholderImageRequestType());
545 EXPECT_EQ("bytes=0-2047", image->resourceRequest().httpHeaderField("range")); 563 EXPECT_EQ("bytes=0-2047", image->resourceRequest().httpHeaderField("range"));
546 Persistent<MockImageResourceClient> client =
547 new MockImageResourceClient(image);
548 564
549 ResourceResponse response(testURL, "image/jpeg", 565 ResourceResponse response(testURL, "image/jpeg",
550 kJpegImageSubrangeWithDimensionsLength, nullAtom, 566 kJpegImageSubrangeWithDimensionsLength, nullAtom,
551 String()); 567 String());
552 response.setHTTPStatusCode(206); 568 response.setHTTPStatusCode(206);
553 response.setHTTPHeaderField( 569 response.setHTTPHeaderField(
554 "content-range", buildContentRange(kJpegImageSubrangeWithDimensionsLength, 570 "content-range", buildContentRange(kJpegImageSubrangeWithDimensionsLength,
555 sizeof(kJpegImage))); 571 sizeof(kJpegImage)));
556 image->loader()->didReceiveResponse(WrappedResourceResponse(response)); 572 image->loader()->didReceiveResponse(WrappedResourceResponse(response));
557 image->loader()->didReceiveData(reinterpret_cast<const char*>(kJpegImage), 573 image->loader()->didReceiveData(reinterpret_cast<const char*>(kJpegImage),
558 kJpegImageSubrangeWithDimensionsLength, 574 kJpegImageSubrangeWithDimensionsLength,
559 kJpegImageSubrangeWithDimensionsLength); 575 kJpegImageSubrangeWithDimensionsLength);
560 image->loader()->didFinishLoading(0.0, kJpegImageSubrangeWithDimensionsLength, 576 image->loader()->didFinishLoading(0.0, kJpegImageSubrangeWithDimensionsLength,
561 kJpegImageSubrangeWithDimensionsLength); 577 kJpegImageSubrangeWithDimensionsLength);
562 578
563 EXPECT_EQ(Resource::Cached, image->getStatus()); 579 EXPECT_EQ(Resource::Cached, image->getStatus());
564 EXPECT_TRUE(image->isPlaceholder()); 580 EXPECT_TRUE(image->isPlaceholder());
565 581
566 image->reloadIfLoFiOrPlaceholder(fetcher); 582 ImageResource* reloadingResource = image->reloadIfLoFiOrPlaceholder(fetcher);
567 583
568 EXPECT_EQ(Resource::Pending, image->getStatus()); 584 ASSERT_TRUE(reloadingResource);
569 EXPECT_FALSE(image->isPlaceholder()); 585 EXPECT_EQ(Resource::Pending, content->getStatus());
570 EXPECT_EQ(nullAtom, image->resourceRequest().httpHeaderField("range")); 586 EXPECT_FALSE(reloadingResource->isPlaceholder());
571 EXPECT_EQ(static_cast<int>(WebCachePolicy::BypassingCache), 587 EXPECT_EQ(nullAtom,
572 static_cast<int>(image->resourceRequest().getCachePolicy())); 588 reloadingResource->resourceRequest().httpHeaderField("range"));
589 EXPECT_EQ(
590 static_cast<int>(WebCachePolicy::BypassingCache),
591 static_cast<int>(reloadingResource->resourceRequest().getCachePolicy()));
573 592
574 image->loader()->cancel(); 593 reloadingResource->loader()->cancel();
575 } 594 }
576 595
577 TEST(ImageResourceTest, SVGImage) { 596 TEST(ImageResourceTest, SVGImage) {
578 KURL url(ParsedURLString, "http://127.0.0.1:8000/foo"); 597 KURL url(ParsedURLString, "http://127.0.0.1:8000/foo");
579 ImageResource* imageResource = ImageResource::create(ResourceRequest(url)); 598 ImageResource* imageResource = ImageResource::create(ResourceRequest(url));
580 Persistent<MockImageResourceClient> client = 599 Persistent<MockImageResourceClient> client =
581 new MockImageResourceClient(imageResource); 600 new MockImageResourceClient(imageResource);
582 601
583 receiveResponse(imageResource, url, "image/svg+xml", kSvgImage, 602 receiveResponse(imageResource, url, "image/svg+xml", kSvgImage,
584 strlen(kSvgImage)); 603 strlen(kSvgImage));
(...skipping 419 matching lines...) Expand 10 before | Expand all | Expand 10 after
1004 1023
1005 TEST(ImageResourceTest, FetchAllowPlaceholderUnsuccessful) { 1024 TEST(ImageResourceTest, FetchAllowPlaceholderUnsuccessful) {
1006 KURL testURL(ParsedURLString, "http://www.test.com/cancelTest.html"); 1025 KURL testURL(ParsedURLString, "http://www.test.com/cancelTest.html");
1007 ScopedRegisteredURL scopedRegisteredURL(testURL); 1026 ScopedRegisteredURL scopedRegisteredURL(testURL);
1008 1027
1009 FetchRequest request(testURL, FetchInitiatorInfo()); 1028 FetchRequest request(testURL, FetchInitiatorInfo());
1010 request.setAllowImagePlaceholder(); 1029 request.setAllowImagePlaceholder();
1011 ImageResource* image = ImageResource::fetch( 1030 ImageResource* image = ImageResource::fetch(
1012 request, 1031 request,
1013 ResourceFetcher::create(ImageResourceTestMockFetchContext::create())); 1032 ResourceFetcher::create(ImageResourceTestMockFetchContext::create()));
1033 ImageResourceContent* content = image->getContent();
1014 EXPECT_EQ(FetchRequest::AllowPlaceholder, 1034 EXPECT_EQ(FetchRequest::AllowPlaceholder,
1015 request.placeholderImageRequestType()); 1035 request.placeholderImageRequestType());
1016 EXPECT_EQ("bytes=0-2047", image->resourceRequest().httpHeaderField("range")); 1036 EXPECT_EQ("bytes=0-2047", image->resourceRequest().httpHeaderField("range"));
1017 EXPECT_TRUE(image->isPlaceholder()); 1037 EXPECT_TRUE(image->isPlaceholder());
1018 Persistent<MockImageResourceClient> client = 1038 Persistent<MockImageResourceClient> client =
1019 new MockImageResourceClient(image); 1039 new MockImageResourceClient(image);
1020 1040
1021 const char kBadData[] = "notanimageresponse"; 1041 const char kBadData[] = "notanimageresponse";
1022 1042
1023 image->loader()->didReceiveResponse( 1043 image->loader()->didReceiveResponse(
1024 WrappedResourceResponse(ResourceResponse( 1044 WrappedResourceResponse(ResourceResponse(
1025 testURL, "image/jpeg", sizeof(kBadData), nullAtom, String()))); 1045 testURL, "image/jpeg", sizeof(kBadData), nullAtom, String())));
1026 image->loader()->didReceiveData(kBadData, sizeof(kBadData), sizeof(kBadData)); 1046 image->loader()->didReceiveData(kBadData, sizeof(kBadData), sizeof(kBadData));
1027 1047
1048 ImageResource* reloadingResource = content->resourceForTest();
1049 ASSERT_TRUE(reloadingResource);
1050 EXPECT_NE(image, reloadingResource);
1051
1028 // The dimensions could not be extracted, so the full original image should be 1052 // The dimensions could not be extracted, so the full original image should be
1029 // loading. 1053 // loading.
1030 EXPECT_EQ(Resource::Pending, image->getStatus()); 1054 EXPECT_EQ(Resource::Pending, content->getStatus());
1031 EXPECT_FALSE(image->isPlaceholder()); 1055 EXPECT_FALSE(reloadingResource->isPlaceholder());
1032 EXPECT_EQ(nullAtom, image->resourceRequest().httpHeaderField("range")); 1056 EXPECT_EQ(nullAtom,
1033 EXPECT_EQ(static_cast<int>(WebCachePolicy::BypassingCache), 1057 reloadingResource->resourceRequest().httpHeaderField("range"));
1034 static_cast<int>(image->resourceRequest().getCachePolicy())); 1058 EXPECT_EQ(
1035 EXPECT_FALSE(client->notifyFinishedCalled()); 1059 static_cast<int>(WebCachePolicy::BypassingCache),
1060 static_cast<int>(reloadingResource->resourceRequest().getCachePolicy()));
1036 EXPECT_EQ(0, client->imageNotifyFinishedCount()); 1061 EXPECT_EQ(0, client->imageNotifyFinishedCount());
1037 1062
1038 image->loader()->didReceiveResponse( 1063 reloadingResource->loader()->didReceiveResponse(
1039 WrappedResourceResponse(ResourceResponse( 1064 WrappedResourceResponse(ResourceResponse(
1040 testURL, "image/jpeg", sizeof(kJpegImage), nullAtom, String()))); 1065 testURL, "image/jpeg", sizeof(kJpegImage), nullAtom, String())));
1041 image->loader()->didReceiveData(reinterpret_cast<const char*>(kJpegImage), 1066 reloadingResource->loader()->didReceiveData(
1042 sizeof(kJpegImage), sizeof(kJpegImage)); 1067 reinterpret_cast<const char*>(kJpegImage), sizeof(kJpegImage),
1043 image->loader()->didFinishLoading(0.0, sizeof(kJpegImage), 1068 sizeof(kJpegImage));
1044 sizeof(kJpegImage)); 1069 reloadingResource->loader()->didFinishLoading(0.0, sizeof(kJpegImage),
1070 sizeof(kJpegImage));
1045 1071
1046 EXPECT_EQ(Resource::Cached, image->getStatus()); 1072 EXPECT_EQ(Resource::Cached, content->getStatus());
1047 EXPECT_EQ(sizeof(kJpegImage), image->encodedSize()); 1073 EXPECT_EQ(sizeof(kJpegImage), reloadingResource->encodedSize());
1048 EXPECT_FALSE(image->isPlaceholder()); 1074 EXPECT_FALSE(reloadingResource->isPlaceholder());
1049 EXPECT_LT(0, client->imageChangedCount()); 1075 EXPECT_LT(0, client->imageChangedCount());
1050 EXPECT_EQ(sizeof(kJpegImage), client->encodedSizeOnLastImageChanged()); 1076 EXPECT_EQ(sizeof(kJpegImage), client->encodedSizeOnLastImageChanged());
1051 EXPECT_TRUE(client->notifyFinishedCalled());
1052 EXPECT_EQ(1, client->imageNotifyFinishedCount()); 1077 EXPECT_EQ(1, client->imageNotifyFinishedCount());
1053 EXPECT_EQ(sizeof(kJpegImage), client->encodedSizeOnNotifyFinished());
1054 EXPECT_EQ(sizeof(kJpegImage), client->encodedSizeOnImageNotifyFinished()); 1078 EXPECT_EQ(sizeof(kJpegImage), client->encodedSizeOnImageNotifyFinished());
1055 1079
1056 ASSERT_TRUE(image->getContent()->hasImage()); 1080 ASSERT_TRUE(content->hasImage());
1057 EXPECT_EQ(1, image->getContent()->getImage()->width()); 1081 EXPECT_EQ(1, content->getImage()->width());
1058 EXPECT_EQ(1, image->getContent()->getImage()->height()); 1082 EXPECT_EQ(1, content->getImage()->height());
1059 EXPECT_TRUE(image->getContent()->getImage()->isBitmapImage()); 1083 EXPECT_TRUE(content->getImage()->isBitmapImage());
1060 } 1084 }
1061 1085
1062 TEST(ImageResourceTest, FetchAllowPlaceholderThenDisallowPlaceholder) { 1086 TEST(ImageResourceTest, FetchAllowPlaceholderThenDisallowPlaceholder) {
1063 KURL testURL(ParsedURLString, "http://www.test.com/cancelTest.html"); 1087 KURL testURL(ParsedURLString, "http://www.test.com/cancelTest.html");
1064 ScopedRegisteredURL scopedRegisteredURL(testURL); 1088 ScopedRegisteredURL scopedRegisteredURL(testURL);
1065 1089
1066 ResourceFetcher* fetcher = 1090 ResourceFetcher* fetcher =
1067 ResourceFetcher::create(ImageResourceTestMockFetchContext::create()); 1091 ResourceFetcher::create(ImageResourceTestMockFetchContext::create());
1068 FetchRequest placeholderRequest(testURL, FetchInitiatorInfo()); 1092 FetchRequest placeholderRequest(testURL, FetchInitiatorInfo());
1069 placeholderRequest.setAllowImagePlaceholder(); 1093 placeholderRequest.setAllowImagePlaceholder();
1070 ImageResource* image = ImageResource::fetch(placeholderRequest, fetcher); 1094 ImageResource* image = ImageResource::fetch(placeholderRequest, fetcher);
1095 ImageResourceContent* content = image->getContent();
1071 Persistent<MockImageResourceClient> client = 1096 Persistent<MockImageResourceClient> client =
1072 new MockImageResourceClient(image); 1097 new MockImageResourceClient(image);
1073 1098
1074 FetchRequest nonPlaceholderRequest(testURL, FetchInitiatorInfo()); 1099 FetchRequest nonPlaceholderRequest(testURL, FetchInitiatorInfo());
1075 ImageResource* secondImage = 1100 ImageResource* secondImage =
1076 ImageResource::fetch(nonPlaceholderRequest, fetcher); 1101 ImageResource::fetch(nonPlaceholderRequest, fetcher);
1077 EXPECT_EQ(image, secondImage); 1102 ASSERT_EQ(secondImage, content->resourceForTest());
1078 EXPECT_EQ(Resource::Pending, image->getStatus()); 1103 EXPECT_EQ(content, secondImage->getContent());
1079 EXPECT_FALSE(image->isPlaceholder()); 1104 EXPECT_EQ(Resource::Pending, content->getStatus());
1080 EXPECT_EQ(nullAtom, image->resourceRequest().httpHeaderField("range")); 1105 EXPECT_FALSE(secondImage->isPlaceholder());
1106 EXPECT_EQ(nullAtom, secondImage->resourceRequest().httpHeaderField("range"));
1081 EXPECT_EQ(static_cast<int>(WebCachePolicy::UseProtocolCachePolicy), 1107 EXPECT_EQ(static_cast<int>(WebCachePolicy::UseProtocolCachePolicy),
1082 static_cast<int>(image->resourceRequest().getCachePolicy())); 1108 static_cast<int>(secondImage->resourceRequest().getCachePolicy()));
1083 EXPECT_FALSE(client->notifyFinishedCalled()); 1109 EXPECT_FALSE(client->notifyFinishedCalled());
1084 1110
1085 image->loader()->cancel(); 1111 image->loader()->cancel();
1112 secondImage->loader()->cancel();
1086 } 1113 }
1087 1114
1088 TEST(ImageResourceTest, 1115 TEST(ImageResourceTest,
1089 FetchAllowPlaceholderThenDisallowPlaceholderAfterLoaded) { 1116 FetchAllowPlaceholderThenDisallowPlaceholderAfterLoaded) {
1090 KURL testURL(ParsedURLString, "http://www.test.com/cancelTest.html"); 1117 KURL testURL(ParsedURLString, "http://www.test.com/cancelTest.html");
1091 ScopedRegisteredURL scopedRegisteredURL(testURL); 1118 ScopedRegisteredURL scopedRegisteredURL(testURL);
1092 1119
1093 ResourceFetcher* fetcher = 1120 ResourceFetcher* fetcher =
1094 ResourceFetcher::create(ImageResourceTestMockFetchContext::create()); 1121 ResourceFetcher::create(ImageResourceTestMockFetchContext::create());
1095 FetchRequest placeholderRequest(testURL, FetchInitiatorInfo()); 1122 FetchRequest placeholderRequest(testURL, FetchInitiatorInfo());
1096 placeholderRequest.setAllowImagePlaceholder(); 1123 placeholderRequest.setAllowImagePlaceholder();
1097 ImageResource* image = ImageResource::fetch(placeholderRequest, fetcher); 1124 ImageResource* image = ImageResource::fetch(placeholderRequest, fetcher);
1125 ImageResourceContent* content = image->getContent();
1098 Persistent<MockImageResourceClient> client = 1126 Persistent<MockImageResourceClient> client =
1099 new MockImageResourceClient(image); 1127 new MockImageResourceClient(image);
1100 1128
1101 ResourceResponse response(testURL, "image/jpeg", 1129 ResourceResponse response(testURL, "image/jpeg",
1102 kJpegImageSubrangeWithDimensionsLength, nullAtom, 1130 kJpegImageSubrangeWithDimensionsLength, nullAtom,
1103 String()); 1131 String());
1104 response.setHTTPStatusCode(206); 1132 response.setHTTPStatusCode(206);
1105 response.setHTTPHeaderField( 1133 response.setHTTPHeaderField(
1106 "content-range", buildContentRange(kJpegImageSubrangeWithDimensionsLength, 1134 "content-range", buildContentRange(kJpegImageSubrangeWithDimensionsLength,
1107 sizeof(kJpegImage))); 1135 sizeof(kJpegImage)));
1108 image->loader()->didReceiveResponse(WrappedResourceResponse(response)); 1136 image->loader()->didReceiveResponse(WrappedResourceResponse(response));
1109 image->loader()->didReceiveData(reinterpret_cast<const char*>(kJpegImage), 1137 image->loader()->didReceiveData(reinterpret_cast<const char*>(kJpegImage),
1110 kJpegImageSubrangeWithDimensionsLength, 1138 kJpegImageSubrangeWithDimensionsLength,
1111 kJpegImageSubrangeWithDimensionsLength); 1139 kJpegImageSubrangeWithDimensionsLength);
1112 image->loader()->didFinishLoading(0.0, kJpegImageSubrangeWithDimensionsLength, 1140 image->loader()->didFinishLoading(0.0, kJpegImageSubrangeWithDimensionsLength,
1113 kJpegImageSubrangeWithDimensionsLength); 1141 kJpegImageSubrangeWithDimensionsLength);
1114 1142
1115 EXPECT_EQ(Resource::Cached, image->getStatus()); 1143 EXPECT_EQ(Resource::Cached, image->getStatus());
1116 EXPECT_EQ(kJpegImageSubrangeWithDimensionsLength, image->encodedSize()); 1144 EXPECT_EQ(kJpegImageSubrangeWithDimensionsLength, image->encodedSize());
1117 EXPECT_TRUE(image->isPlaceholder()); 1145 EXPECT_TRUE(image->isPlaceholder());
1118 EXPECT_LT(0, client->imageChangedCount()); 1146 EXPECT_LT(0, client->imageChangedCount());
1119 EXPECT_TRUE(client->notifyFinishedCalled()); 1147 EXPECT_TRUE(client->notifyFinishedCalled());
1120 1148
1121 FetchRequest nonPlaceholderRequest(testURL, FetchInitiatorInfo()); 1149 FetchRequest nonPlaceholderRequest(testURL, FetchInitiatorInfo());
1122 ImageResource* secondImage = 1150 ImageResource* secondImage =
1123 ImageResource::fetch(nonPlaceholderRequest, fetcher); 1151 ImageResource::fetch(nonPlaceholderRequest, fetcher);
1124 EXPECT_EQ(image, secondImage); 1152 ASSERT_EQ(secondImage, content->resourceForTest());
1125 EXPECT_EQ(Resource::Pending, image->getStatus()); 1153 EXPECT_EQ(content, secondImage->getContent());
1126 EXPECT_FALSE(image->isPlaceholder()); 1154 EXPECT_EQ(Resource::Pending, content->getStatus());
1127 EXPECT_EQ(nullAtom, image->resourceRequest().httpHeaderField("range")); 1155 EXPECT_FALSE(secondImage->isPlaceholder());
1156 EXPECT_EQ(nullAtom, secondImage->resourceRequest().httpHeaderField("range"));
1128 EXPECT_EQ(static_cast<int>(WebCachePolicy::UseProtocolCachePolicy), 1157 EXPECT_EQ(static_cast<int>(WebCachePolicy::UseProtocolCachePolicy),
1129 static_cast<int>(image->resourceRequest().getCachePolicy())); 1158 static_cast<int>(secondImage->resourceRequest().getCachePolicy()));
1130 1159
1131 image->loader()->cancel(); 1160 if (image->loader())
1161 image->loader()->cancel();
1162 if (secondImage->loader())
1163 secondImage->loader()->cancel();
1132 } 1164 }
1133 1165
1134 TEST(ImageResourceTest, PeriodicFlushTest) { 1166 TEST(ImageResourceTest, PeriodicFlushTest) {
1135 TestingPlatformSupportWithMockScheduler platform; 1167 TestingPlatformSupportWithMockScheduler platform;
1136 KURL testURL(ParsedURLString, "http://www.test.com/cancelTest.html"); 1168 KURL testURL(ParsedURLString, "http://www.test.com/cancelTest.html");
1137 URLTestHelpers::registerMockedURLLoad(testURL, "cancelTest.html", 1169 URLTestHelpers::registerMockedURLLoad(testURL, "cancelTest.html",
1138 "text/html"); 1170 "text/html");
1139 ResourceRequest request = ResourceRequest(testURL); 1171 ResourceRequest request = ResourceRequest(testURL);
1140 ImageResource* cachedImage = ImageResource::create(request); 1172 ImageResource* cachedImage = ImageResource::create(request);
1141 cachedImage->setStatus(Resource::Pending); 1173 cachedImage->setStatus(Resource::Pending);
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
1212 EXPECT_TRUE(client->notifyFinishedCalled()); 1244 EXPECT_TRUE(client->notifyFinishedCalled());
1213 EXPECT_TRUE(cachedImage->getContent()->getImage()->isBitmapImage()); 1245 EXPECT_TRUE(cachedImage->getContent()->getImage()->isBitmapImage());
1214 EXPECT_EQ(50, cachedImage->getContent()->getImage()->width()); 1246 EXPECT_EQ(50, cachedImage->getContent()->getImage()->width());
1215 EXPECT_EQ(50, cachedImage->getContent()->getImage()->height()); 1247 EXPECT_EQ(50, cachedImage->getContent()->getImage()->height());
1216 1248
1217 WTF::setTimeFunctionsForTesting(nullptr); 1249 WTF::setTimeFunctionsForTesting(nullptr);
1218 } 1250 }
1219 1251
1220 } // namespace 1252 } // namespace
1221 } // namespace blink 1253 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/fetch/ImageResourceInfo.h ('k') | third_party/WebKit/Source/core/fetch/MockResourceClients.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698