OLD | NEW |
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 Loading... |
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 |
OLD | NEW |