2015-03-23 13:28:42 -07: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-13 18:32:38 -07:00
|
|
|
|
|
|
|
#import "RCTTestModule.h"
|
|
|
|
|
2015-03-24 10:20:13 -07:00
|
|
|
#import "FBSnapshotTestController.h"
|
|
|
|
#import "RCTAssert.h"
|
2015-05-19 23:47:38 -07:00
|
|
|
#import "RCTEventDispatcher.h"
|
2015-03-24 10:20:13 -07:00
|
|
|
#import "RCTLog.h"
|
2015-04-18 10:43:20 -07:00
|
|
|
#import "RCTUIManager.h"
|
2015-03-24 10:20:13 -07:00
|
|
|
|
2016-08-17 10:37:01 -07:00
|
|
|
@implementation RCTTestModule {
|
|
|
|
NSMutableDictionary<NSString *, NSNumber *> *_snapshotCounter;
|
2015-03-24 10:20:13 -07:00
|
|
|
}
|
|
|
|
|
2015-04-18 10:43:20 -07:00
|
|
|
@synthesize bridge = _bridge;
|
|
|
|
|
2015-04-08 05:42:43 -07:00
|
|
|
RCT_EXPORT_MODULE()
|
|
|
|
|
2015-04-18 10:43:20 -07:00
|
|
|
- (dispatch_queue_t)methodQueue
|
|
|
|
{
|
|
|
|
return _bridge.uiManager.methodQueue;
|
|
|
|
}
|
|
|
|
|
2015-04-08 08:52:48 -07:00
|
|
|
RCT_EXPORT_METHOD(verifySnapshot:(RCTResponseSenderBlock)callback)
|
2015-03-24 10:20:13 -07:00
|
|
|
{
|
2015-04-18 10:43:20 -07:00
|
|
|
RCTAssert(_controller != nil, @"No snapshot controller configured.");
|
|
|
|
|
2015-11-14 10:25:00 -08:00
|
|
|
[_bridge.uiManager addUIBlock:^(RCTUIManager *uiManager, NSDictionary<NSNumber *, UIView *> *viewRegistry) {
|
2016-07-07 12:36:56 -07:00
|
|
|
NSString *testName = NSStringFromSelector(self->_testSelector);
|
|
|
|
if (!self->_snapshotCounter) {
|
|
|
|
self->_snapshotCounter = [NSMutableDictionary new];
|
2015-11-25 03:09:00 -08:00
|
|
|
}
|
2016-08-17 10:37:01 -07:00
|
|
|
|
|
|
|
NSNumber *counter = @([self->_snapshotCounter[testName] integerValue] + 1);
|
|
|
|
self->_snapshotCounter[testName] = counter;
|
2015-04-18 10:43:20 -07:00
|
|
|
|
2015-03-24 22:07:16 -07:00
|
|
|
NSError *error = nil;
|
2016-08-17 10:37:01 -07:00
|
|
|
NSString *identifier = [counter stringValue];
|
|
|
|
if (self->_testSuffix) {
|
|
|
|
identifier = [identifier stringByAppendingString:self->_testSuffix];
|
|
|
|
}
|
2016-07-07 12:36:56 -07:00
|
|
|
BOOL success = [self->_controller compareSnapshotOfView:self->_view
|
2016-08-17 10:37:01 -07:00
|
|
|
selector:self->_testSelector
|
|
|
|
identifier:identifier
|
|
|
|
error:&error];
|
2015-06-17 07:09:23 -07:00
|
|
|
callback(@[@(success)]);
|
2015-04-18 10:43:20 -07:00
|
|
|
}];
|
2015-03-13 18:32:38 -07:00
|
|
|
}
|
|
|
|
|
2015-06-30 04:09:27 -07:00
|
|
|
RCT_EXPORT_METHOD(sendAppEvent:(NSString *)name body:(nullable id)body)
|
2015-05-19 23:47:38 -07:00
|
|
|
{
|
2016-05-23 09:08:51 -07:00
|
|
|
#pragma clang diagnostic push
|
|
|
|
#pragma clang diagnostic ignored "-Wdeprecated-declarations"
|
2015-05-19 23:47:38 -07:00
|
|
|
[_bridge.eventDispatcher sendAppEventWithName:name body:body];
|
2016-05-23 09:08:51 -07:00
|
|
|
#pragma clang diagnostic pop
|
2015-05-19 23:47:38 -07:00
|
|
|
}
|
|
|
|
|
2015-06-09 14:26:49 -07: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)
|
|
|
|
{
|
2016-01-19 12:19:47 -08:00
|
|
|
reject(nil, nil, nil);
|
2015-06-09 14:26:49 -07:00
|
|
|
}
|
|
|
|
|
2015-06-17 07:09:23 -07:00
|
|
|
RCT_EXPORT_METHOD(markTestCompleted)
|
2015-06-09 14:26:49 -07:00
|
|
|
{
|
2015-06-17 07:09:23 -07:00
|
|
|
[self markTestPassed:YES];
|
2015-06-09 14:26:49 -07:00
|
|
|
}
|
|
|
|
|
2015-06-17 07:09:23 -07:00
|
|
|
RCT_EXPORT_METHOD(markTestPassed:(BOOL)success)
|
|
|
|
{
|
2015-11-14 10:25:00 -08:00
|
|
|
[_bridge.uiManager addUIBlock:^(__unused RCTUIManager *uiManager, __unused NSDictionary<NSNumber *, UIView *> *viewRegistry) {
|
2016-07-07 12:36:56 -07:00
|
|
|
self->_status = success ? RCTTestStatusPassed : RCTTestStatusFailed;
|
2015-06-17 07:09:23 -07:00
|
|
|
}];
|
|
|
|
}
|
2015-06-09 14:26:49 -07:00
|
|
|
|
2015-03-13 18:32:38 -07:00
|
|
|
@end
|