2015-09-02 15:25:10 +00:00
|
|
|
/**
|
|
|
|
* The examples provided by Facebook are for non-commercial testing and
|
|
|
|
* evaluation purposes only.
|
|
|
|
*
|
|
|
|
* Facebook reserves all rights not expressly granted.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
|
|
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NON INFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* FACEBOOK BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
|
|
|
|
* AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
|
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#import <XCTest/XCTest.h>
|
|
|
|
|
|
|
|
#import "RCTBridge.h"
|
|
|
|
#import "RCTImageLoader.h"
|
|
|
|
#import "RCTImageLoaderHelpers.h"
|
|
|
|
|
|
|
|
unsigned char blackGIF[] = {
|
|
|
|
0x47, 0x49, 0x46, 0x38, 0x39, 0x61, 0x01, 0x00, 0x01, 0x00, 0x80, 0x00,
|
|
|
|
0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x2c, 0x00, 0x00, 0x00, 0x00,
|
|
|
|
0x01, 0x00, 0x01, 0x00, 0x00, 0x02, 0x02, 0x44, 0x01, 0x00, 0x3b
|
|
|
|
};
|
|
|
|
|
|
|
|
RCTDefineImageURLLoader(RCTImageLoaderTestsURLLoader1)
|
|
|
|
RCTDefineImageURLLoader(RCTImageLoaderTestsURLLoader2)
|
|
|
|
RCTDefineImageDecoder(RCTImageLoaderTestsDecoder1)
|
|
|
|
RCTDefineImageDecoder(RCTImageLoaderTestsDecoder2)
|
|
|
|
|
|
|
|
@interface RCTImageLoaderTests : XCTestCase
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation RCTImageLoaderTests
|
|
|
|
|
|
|
|
- (void)testImageLoading
|
|
|
|
{
|
|
|
|
UIImage *image = [UIImage new];
|
|
|
|
|
|
|
|
id<RCTImageURLLoader> loader = [[RCTImageLoaderTestsURLLoader1 alloc] initWithPriority:1.0 canLoadImageURLHandler:^BOOL(__unused NSURL *requestURL) {
|
|
|
|
return YES;
|
|
|
|
} loadImageURLHandler:^RCTImageLoaderCancellationBlock(__unused NSURL *imageURL, __unused CGSize size, __unused CGFloat scale, __unused UIViewContentMode resizeMode, RCTImageLoaderProgressBlock progressHandler, RCTImageLoaderCompletionBlock completionHandler) {
|
|
|
|
progressHandler(1, 1);
|
|
|
|
completionHandler(nil, image);
|
|
|
|
return nil;
|
|
|
|
}];
|
|
|
|
|
|
|
|
RCTImageLoader *imageLoader = [RCTImageLoader new];
|
|
|
|
NS_VALID_UNTIL_END_OF_SCOPE RCTBridge *bridge = [[RCTBridge alloc] initWithBundleURL:nil moduleProvider:^{ return @[loader, imageLoader]; } launchOptions:nil];
|
|
|
|
|
2015-09-03 12:53:16 +00:00
|
|
|
[imageLoader loadImageWithTag:@"http://facebook.github.io/react/img/logo_og.png" size:CGSizeMake(100, 100) scale:1.0 resizeMode:UIViewContentModeScaleAspectFit progressBlock:^(int64_t progress, int64_t total) {
|
2015-09-02 15:25:10 +00:00
|
|
|
XCTAssertEqual(progress, 1);
|
|
|
|
XCTAssertEqual(total, 1);
|
|
|
|
} completionBlock:^(NSError *loadError, id loadedImage) {
|
|
|
|
XCTAssertEqualObjects(loadedImage, image);
|
|
|
|
XCTAssertNil(loadError);
|
|
|
|
}];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)testImageLoaderUsesImageURLLoaderWithHighestPriority
|
|
|
|
{
|
|
|
|
UIImage *image = [UIImage new];
|
|
|
|
|
|
|
|
id<RCTImageURLLoader> loader1 = [[RCTImageLoaderTestsURLLoader1 alloc] initWithPriority:1.0 canLoadImageURLHandler:^BOOL(__unused NSURL *requestURL) {
|
|
|
|
return YES;
|
|
|
|
} loadImageURLHandler:^RCTImageLoaderCancellationBlock(__unused NSURL *imageURL, __unused CGSize size, __unused CGFloat scale, __unused UIViewContentMode resizeMode, RCTImageLoaderProgressBlock progressHandler, RCTImageLoaderCompletionBlock completionHandler) {
|
|
|
|
progressHandler(1, 1);
|
|
|
|
completionHandler(nil, image);
|
|
|
|
return nil;
|
|
|
|
}];
|
|
|
|
|
|
|
|
id<RCTImageURLLoader> loader2 = [[RCTImageLoaderTestsURLLoader2 alloc] initWithPriority:0.5 canLoadImageURLHandler:^BOOL(__unused NSURL *requestURL) {
|
|
|
|
return YES;
|
|
|
|
} loadImageURLHandler:^RCTImageLoaderCancellationBlock(__unused NSURL *imageURL, __unused CGSize size, __unused CGFloat scale, __unused UIViewContentMode resizeMode, __unused RCTImageLoaderProgressBlock progressHandler, __unused RCTImageLoaderCompletionBlock completionHandler) {
|
|
|
|
XCTFail(@"Should not have used loader2");
|
|
|
|
return nil;
|
|
|
|
}];
|
|
|
|
|
|
|
|
RCTImageLoader *imageLoader = [RCTImageLoader new];
|
|
|
|
NS_VALID_UNTIL_END_OF_SCOPE RCTBridge *bridge = [[RCTBridge alloc] initWithBundleURL:nil moduleProvider:^{ return @[loader1, loader2, imageLoader]; } launchOptions:nil];
|
|
|
|
|
2015-09-03 12:53:16 +00:00
|
|
|
[imageLoader loadImageWithTag:@"http://facebook.github.io/react/img/logo_og.png" size:CGSizeMake(100, 100) scale:1.0 resizeMode:UIViewContentModeScaleAspectFit progressBlock:^(int64_t progress, int64_t total) {
|
2015-09-02 15:25:10 +00:00
|
|
|
XCTAssertEqual(progress, 1);
|
|
|
|
XCTAssertEqual(total, 1);
|
|
|
|
} completionBlock:^(NSError *loadError, id loadedImage) {
|
|
|
|
XCTAssertEqualObjects(loadedImage, image);
|
|
|
|
XCTAssertNil(loadError);
|
|
|
|
}];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)testImageDecoding
|
|
|
|
{
|
|
|
|
NSData *data = [NSData dataWithBytesNoCopy:blackGIF length:sizeof(blackGIF) freeWhenDone:NO];
|
|
|
|
UIImage *image = [[UIImage alloc] initWithData:data];
|
|
|
|
|
|
|
|
id<RCTImageDecoder> decoder = [[RCTImageLoaderTestsDecoder1 alloc] initWithPriority:1.0 canDecodeImageDataHandler:^BOOL(__unused NSData *imageData) {
|
|
|
|
return YES;
|
|
|
|
} decodeImageDataHandler:^RCTImageLoaderCancellationBlock(NSData *imageData, __unused CGSize size, __unused CGFloat scale, __unused UIViewContentMode resizeMode, RCTImageLoaderCompletionBlock completionHandler) {
|
|
|
|
XCTAssertEqualObjects(imageData, data);
|
|
|
|
completionHandler(nil, image);
|
|
|
|
return nil;
|
|
|
|
}];
|
|
|
|
|
|
|
|
RCTImageLoader *imageLoader = [RCTImageLoader new];
|
|
|
|
NS_VALID_UNTIL_END_OF_SCOPE RCTBridge *bridge = [[RCTBridge alloc] initWithBundleURL:nil moduleProvider:^{ return @[decoder, imageLoader]; } launchOptions:nil];
|
|
|
|
|
|
|
|
RCTImageLoaderCancellationBlock cancelBlock = [imageLoader decodeImageData:data size:CGSizeMake(1, 1) scale:1.0 resizeMode:UIViewContentModeScaleToFill completionBlock:^(NSError *decodeError, id decodedImage) {
|
|
|
|
XCTAssertEqualObjects(decodedImage, image);
|
|
|
|
XCTAssertNil(decodeError);
|
|
|
|
}];
|
|
|
|
XCTAssertNil(cancelBlock);
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)testImageLoaderUsesImageDecoderWithHighestPriority
|
|
|
|
{
|
|
|
|
NSData *data = [NSData dataWithBytesNoCopy:blackGIF length:sizeof(blackGIF) freeWhenDone:NO];
|
|
|
|
UIImage *image = [[UIImage alloc] initWithData:data];
|
|
|
|
|
|
|
|
id<RCTImageDecoder> decoder1 = [[RCTImageLoaderTestsDecoder1 alloc] initWithPriority:1.0 canDecodeImageDataHandler:^BOOL(__unused NSData *imageData) {
|
|
|
|
return YES;
|
|
|
|
} decodeImageDataHandler:^RCTImageLoaderCancellationBlock(NSData *imageData, __unused CGSize size, __unused CGFloat scale, __unused UIViewContentMode resizeMode, RCTImageLoaderCompletionBlock completionHandler) {
|
|
|
|
XCTAssertEqualObjects(imageData, data);
|
|
|
|
completionHandler(nil, image);
|
|
|
|
return nil;
|
|
|
|
}];
|
|
|
|
|
|
|
|
id<RCTImageDecoder> decoder2 = [[RCTImageLoaderTestsDecoder2 alloc] initWithPriority:0.5 canDecodeImageDataHandler:^BOOL(__unused NSData *imageData) {
|
|
|
|
return YES;
|
|
|
|
} decodeImageDataHandler:^RCTImageLoaderCancellationBlock(__unused NSData *imageData, __unused CGSize size, __unused CGFloat scale, __unused UIViewContentMode resizeMode, __unused RCTImageLoaderCompletionBlock completionHandler) {
|
|
|
|
XCTFail(@"Should not have used decoder2");
|
|
|
|
return nil;
|
|
|
|
}];
|
|
|
|
|
|
|
|
RCTImageLoader *imageLoader = [RCTImageLoader new];
|
|
|
|
NS_VALID_UNTIL_END_OF_SCOPE RCTBridge *bridge = [[RCTBridge alloc] initWithBundleURL:nil moduleProvider:^{ return @[decoder1, decoder2, imageLoader]; } launchOptions:nil];
|
|
|
|
|
|
|
|
RCTImageLoaderCancellationBlock cancelBlock = [imageLoader decodeImageData:data size:CGSizeMake(1, 1) scale:1.0 resizeMode:UIViewContentModeScaleToFill completionBlock:^(NSError *decodeError, id decodedImage) {
|
|
|
|
XCTAssertEqualObjects(decodedImage, image);
|
|
|
|
XCTAssertNil(decodeError);
|
|
|
|
}];
|
|
|
|
XCTAssertNil(cancelBlock);
|
|
|
|
}
|
|
|
|
|
|
|
|
@end
|