react-native/Libraries/RCTTest/RCTTestModule.m

64 lines
1.8 KiB
Mathematica
Raw Normal View History

/**
* 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.
*/
#import "RCTTestModule.h"
2015-03-24 17:20:13 +00:00
#import "FBSnapshotTestController.h"
#import "RCTAssert.h"
#import "RCTLog.h"
@implementation RCTTestModule
{
2015-03-24 17:20:13 +00:00
__weak FBSnapshotTestController *_snapshotController;
__weak UIView *_view;
NSMutableDictionary *_snapshotCounter;
}
RCT_EXPORT_MODULE()
2015-03-24 17:20:13 +00:00
- (instancetype)initWithSnapshotController:(FBSnapshotTestController *)controller view:(UIView *)view
{
if ((self = [super init])) {
_snapshotController = controller;
_view = view;
_snapshotCounter = [NSMutableDictionary new];
}
return self;
}
2015-04-08 15:52:48 +00:00
RCT_EXPORT_METHOD(verifySnapshot:(RCTResponseSenderBlock)callback)
2015-03-24 17:20:13 +00:00
{
if (!_snapshotController) {
RCTLogWarn(@"No snapshot controller configured.");
callback(@[]);
return;
}
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-04-08 15:52:48 +00:00
RCT_EXPORT_METHOD(markTestCompleted)
{
dispatch_async(dispatch_get_main_queue(), ^{
_done = YES;
});
}
@end