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

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

Issue 2141843003: Ensure |m_image| is (re-)created in ImageResource::didAddClient() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Introduce ensureImage() Created 4 years, 5 months 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
« no previous file with comments | « third_party/WebKit/Source/core/fetch/ImageResource.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 556 matching lines...) Expand 10 before | Expand all | Expand 10 after
567 EXPECT_FALSE(imageResource->errorOccurred()); 567 EXPECT_FALSE(imageResource->errorOccurred());
568 ASSERT_TRUE(imageResource->hasImage()); 568 ASSERT_TRUE(imageResource->hasImage());
569 EXPECT_FALSE(imageResource->getImage()->isNull()); 569 EXPECT_FALSE(imageResource->getImage()->isNull());
570 EXPECT_EQ(2, client->imageChangedCount()); 570 EXPECT_EQ(2, client->imageChangedCount());
571 EXPECT_TRUE(client->notifyFinishedCalled()); 571 EXPECT_TRUE(client->notifyFinishedCalled());
572 EXPECT_FALSE(imageResource->getImage()->isBitmapImage()); 572 EXPECT_FALSE(imageResource->getImage()->isBitmapImage());
573 EXPECT_EQ(300, imageResource->getImage()->width()); 573 EXPECT_EQ(300, imageResource->getImage()->width());
574 EXPECT_EQ(300, imageResource->getImage()->height()); 574 EXPECT_EQ(300, imageResource->getImage()->height());
575 } 575 }
576 576
577 // Tests for pruning.
578
579 TEST(ImageResourceTest, AddClientAfterPrune)
580 {
581 KURL url(ParsedURLString, "http://127.0.0.1:8000/foo");
582 ImageResource* imageResource = ImageResource::create(ResourceRequest(url));
583
584 // Adds a ResourceClient but not ImageResourceObserver.
585 Persistent<MockResourceClient> client1 = new MockResourceClient(imageResourc e);
586
587 receiveResponse(imageResource, url, "image/jpeg", jpegImage());
588
589 EXPECT_FALSE(imageResource->errorOccurred());
590 ASSERT_TRUE(imageResource->hasImage());
591 EXPECT_FALSE(imageResource->getImage()->isNull());
592 EXPECT_EQ(1, imageResource->getImage()->width());
593 EXPECT_EQ(1, imageResource->getImage()->height());
594 EXPECT_TRUE(client1->notifyFinishedCalled());
595
596 client1->removeAsClient();
597
598 EXPECT_FALSE(imageResource->hasClientsOrObservers());
599
600 imageResource->prune();
601
602 EXPECT_FALSE(imageResource->hasImage());
603
604 // Re-adds a ResourceClient but not ImageResourceObserver.
605 Persistent<MockResourceClient> client2 = new MockResourceClient(imageResourc e);
606
607 ASSERT_TRUE(imageResource->hasImage());
608 EXPECT_FALSE(imageResource->getImage()->isNull());
609 EXPECT_EQ(1, imageResource->getImage()->width());
610 EXPECT_EQ(1, imageResource->getImage()->height());
611 EXPECT_TRUE(client2->notifyFinishedCalled());
612 }
613
577 } // namespace blink 614 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/fetch/ImageResource.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698