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 602 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
613 // Re-adds a ResourceClient but not ImageResourceObserver. | 613 // Re-adds a ResourceClient but not ImageResourceObserver. |
614 Persistent<MockResourceClient> client2 = new MockResourceClient(imageResourc
e); | 614 Persistent<MockResourceClient> client2 = new MockResourceClient(imageResourc
e); |
615 | 615 |
616 ASSERT_TRUE(imageResource->hasImage()); | 616 ASSERT_TRUE(imageResource->hasImage()); |
617 EXPECT_FALSE(imageResource->getImage()->isNull()); | 617 EXPECT_FALSE(imageResource->getImage()->isNull()); |
618 EXPECT_EQ(1, imageResource->getImage()->width()); | 618 EXPECT_EQ(1, imageResource->getImage()->width()); |
619 EXPECT_EQ(1, imageResource->getImage()->height()); | 619 EXPECT_EQ(1, imageResource->getImage()->height()); |
620 EXPECT_TRUE(client2->notifyFinishedCalled()); | 620 EXPECT_TRUE(client2->notifyFinishedCalled()); |
621 } | 621 } |
622 | 622 |
| 623 TEST(ImageResourceTest, CancelOnDecodeError) |
| 624 { |
| 625 KURL testURL(ParsedURLString, "http://www.test.com/cancelTest.html"); |
| 626 URLTestHelpers::registerMockedURLLoad(testURL, "cancelTest.html", "text/html
"); |
| 627 |
| 628 ResourceFetcher* fetcher = ResourceFetcher::create(ImageResourceTestMockFetc
hContext::create()); |
| 629 FetchRequest request(testURL, FetchInitiatorInfo()); |
| 630 ImageResource* cachedImage = ImageResource::fetch(request, fetcher); |
| 631 Platform::current()->getURLLoaderMockFactory()->unregisterURL(testURL); |
| 632 |
| 633 cachedImage->loader()->didReceiveResponse(nullptr, WrappedResourceResponse(R
esourceResponse(testURL, "image/jpeg", 18, nullAtom, String())), nullptr); |
| 634 cachedImage->loader()->didReceiveData(nullptr, "notactuallyanimage", 18, 18)
; |
| 635 EXPECT_EQ(Resource::DecodeError, cachedImage->getStatus()); |
| 636 EXPECT_FALSE(cachedImage->isLoading()); |
| 637 } |
| 638 |
623 } // namespace blink | 639 } // namespace blink |
OLD | NEW |