2015-03-23 20:28:42 +00:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This source code is licensed under the BSD-style license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
|
|
*/
|
2015-03-14 01:32:38 +00:00
|
|
|
|
|
|
|
#import "RCTTestModule.h"
|
|
|
|
|
2015-03-24 17:20:13 +00:00
|
|
|
#import "FBSnapshotTestController.h"
|
|
|
|
#import "RCTAssert.h"
|
|
|
|
#import "RCTLog.h"
|
|
|
|
|
|
|
|
@implementation RCTTestModule {
|
|
|
|
__weak FBSnapshotTestController *_snapshotController;
|
|
|
|
__weak UIView *_view;
|
|
|
|
NSMutableDictionary *_snapshotCounter;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (instancetype)initWithSnapshotController:(FBSnapshotTestController *)controller view:(UIView *)view
|
|
|
|
{
|
|
|
|
if ((self = [super init])) {
|
|
|
|
_snapshotController = controller;
|
|
|
|
_view = view;
|
|
|
|
_snapshotCounter = [NSMutableDictionary new];
|
|
|
|
}
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)verifySnapshot:(RCTResponseSenderBlock)callback
|
|
|
|
{
|
|
|
|
RCT_EXPORT();
|
|
|
|
|
|
|
|
if (!_snapshotController) {
|
|
|
|
RCTLogWarn(@"No snapshot controller configured.");
|
|
|
|
callback(@[]);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-03-25 05:07:16 +00:00
|
|
|
dispatch_async(dispatch_get_main_queue(), ^{
|
|
|
|
NSString *testName = NSStringFromSelector(_testSelector);
|
|
|
|
_snapshotCounter[testName] = @([_snapshotCounter[testName] integerValue] + 1);
|
|
|
|
NSError *error = nil;
|
|
|
|
BOOL success = [_snapshotController compareSnapshotOfView:_view
|
|
|
|
selector:_testSelector
|
|
|
|
identifier:[_snapshotCounter[testName] stringValue]
|
|
|
|
error:&error];
|
|
|
|
RCTAssert(success, @"Snapshot comparison failed: %@", error);
|
|
|
|
callback(@[]);
|
|
|
|
});
|
2015-03-24 17:20:13 +00:00
|
|
|
}
|
2015-03-14 01:32:38 +00:00
|
|
|
|
|
|
|
- (void)markTestCompleted
|
|
|
|
{
|
|
|
|
RCT_EXPORT();
|
|
|
|
|
2015-03-25 05:07:16 +00:00
|
|
|
dispatch_async(dispatch_get_main_queue(), ^{
|
|
|
|
_done = YES;
|
|
|
|
});
|
2015-03-14 01:32:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@end
|