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"
|
2015-05-20 06:47:38 +00:00
|
|
|
#import "RCTEventDispatcher.h"
|
2015-03-24 17:20:13 +00:00
|
|
|
#import "RCTLog.h"
|
2015-04-18 17:43:20 +00:00
|
|
|
#import "RCTUIManager.h"
|
2015-03-24 17:20:13 +00:00
|
|
|
|
2015-04-08 12:42:43 +00:00
|
|
|
@implementation RCTTestModule
|
|
|
|
{
|
2015-03-24 17:20:13 +00:00
|
|
|
NSMutableDictionary *_snapshotCounter;
|
|
|
|
}
|
|
|
|
|
2015-04-18 17:43:20 +00:00
|
|
|
@synthesize bridge = _bridge;
|
|
|
|
|
2015-04-08 12:42:43 +00:00
|
|
|
RCT_EXPORT_MODULE()
|
|
|
|
|
2015-04-18 17:43:20 +00:00
|
|
|
- (dispatch_queue_t)methodQueue
|
|
|
|
{
|
|
|
|
return _bridge.uiManager.methodQueue;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (instancetype)init
|
2015-03-24 17:20:13 +00:00
|
|
|
{
|
|
|
|
if ((self = [super init])) {
|
|
|
|
_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
|
|
|
{
|
2015-04-18 17:43:20 +00:00
|
|
|
RCTAssert(_controller != nil, @"No snapshot controller configured.");
|
|
|
|
|
|
|
|
[_bridge.uiManager addUIBlock:^(RCTUIManager *uiManager, RCTSparseArray *viewRegistry) {
|
2015-03-24 17:20:13 +00:00
|
|
|
|
2015-03-25 05:07:16 +00:00
|
|
|
NSString *testName = NSStringFromSelector(_testSelector);
|
2015-04-18 17:43:20 +00:00
|
|
|
_snapshotCounter[testName] = [@([_snapshotCounter[testName] integerValue] + 1) stringValue];
|
|
|
|
|
2015-03-25 05:07:16 +00:00
|
|
|
NSError *error = nil;
|
2015-04-18 17:43:20 +00:00
|
|
|
BOOL success = [_controller compareSnapshotOfView:_view
|
|
|
|
selector:_testSelector
|
|
|
|
identifier:_snapshotCounter[testName]
|
|
|
|
error:&error];
|
2015-06-17 14:09:23 +00:00
|
|
|
callback(@[@(success)]);
|
2015-04-18 17:43:20 +00:00
|
|
|
}];
|
2015-03-14 01:32:38 +00:00
|
|
|
}
|
|
|
|
|
2015-05-20 06:47:38 +00:00
|
|
|
RCT_EXPORT_METHOD(sendAppEvent:(NSString *)name body:(id)body)
|
|
|
|
{
|
|
|
|
[_bridge.eventDispatcher sendAppEventWithName:name body:body];
|
|
|
|
}
|
|
|
|
|
2015-06-09 21:26:49 +00:00
|
|
|
RCT_REMAP_METHOD(shouldResolve, shouldResolve_resolve:(RCTPromiseResolveBlock)resolve reject:(RCTPromiseRejectBlock)reject)
|
|
|
|
{
|
|
|
|
resolve(@1);
|
|
|
|
}
|
|
|
|
|
|
|
|
RCT_REMAP_METHOD(shouldReject, shouldReject_resolve:(RCTPromiseResolveBlock)resolve reject:(RCTPromiseRejectBlock)reject)
|
|
|
|
{
|
|
|
|
reject(nil);
|
|
|
|
}
|
|
|
|
|
2015-06-17 14:09:23 +00:00
|
|
|
RCT_EXPORT_METHOD(markTestCompleted)
|
2015-06-09 21:26:49 +00:00
|
|
|
{
|
2015-06-17 14:09:23 +00:00
|
|
|
[self markTestPassed:YES];
|
2015-06-09 21:26:49 +00:00
|
|
|
}
|
|
|
|
|
2015-06-17 14:09:23 +00:00
|
|
|
RCT_EXPORT_METHOD(markTestPassed:(BOOL)success)
|
|
|
|
{
|
|
|
|
[_bridge.uiManager addUIBlock:^(RCTUIManager *uiManager, RCTSparseArray *viewRegistry) {
|
|
|
|
_status = success ? RCTTestStatusPassed : RCTTestStatusFailed;
|
|
|
|
}];
|
|
|
|
}
|
2015-06-09 21:26:49 +00:00
|
|
|
|
2015-03-14 01:32:38 +00:00
|
|
|
@end
|