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 "RCTTestRunner.h"
|
|
|
|
|
2016-11-23 15:47:52 +00:00
|
|
|
#import <React/RCTAssert.h>
|
2016-11-24 17:44:51 +00:00
|
|
|
#import <React/RCTBridge+Private.h>
|
|
|
|
#import <React/RCTJSCExecutor.h>
|
2016-11-23 15:47:52 +00:00
|
|
|
#import <React/RCTLog.h>
|
2016-11-24 17:44:51 +00:00
|
|
|
#import <React/RCTRootView.h>
|
2016-11-23 15:47:52 +00:00
|
|
|
#import <React/RCTUtils.h>
|
|
|
|
|
2015-03-24 17:20:13 +00:00
|
|
|
#import "FBSnapshotTestController.h"
|
2015-03-14 01:32:38 +00:00
|
|
|
#import "RCTTestModule.h"
|
|
|
|
|
2016-10-16 22:37:45 +00:00
|
|
|
static const NSTimeInterval kTestTimeoutSeconds = 120;
|
2015-09-04 10:21:57 +00:00
|
|
|
static const NSTimeInterval kTestTeardownTimeoutSeconds = 30;
|
2015-05-04 17:35:49 +00:00
|
|
|
|
2015-03-14 01:32:38 +00:00
|
|
|
@implementation RCTTestRunner
|
2015-03-24 17:20:13 +00:00
|
|
|
{
|
2015-04-18 17:43:20 +00:00
|
|
|
FBSnapshotTestController *_testController;
|
2015-07-07 23:19:40 +00:00
|
|
|
RCTBridgeModuleProviderBlock _moduleProvider;
|
2015-03-24 17:20:13 +00:00
|
|
|
}
|
2015-03-14 01:32:38 +00:00
|
|
|
|
2015-07-07 23:19:40 +00:00
|
|
|
- (instancetype)initWithApp:(NSString *)app
|
|
|
|
referenceDirectory:(NSString *)referenceDirectory
|
|
|
|
moduleProvider:(RCTBridgeModuleProviderBlock)block
|
2015-03-14 01:32:38 +00:00
|
|
|
{
|
2015-06-15 14:53:45 +00:00
|
|
|
RCTAssertParam(app);
|
2015-07-07 23:19:40 +00:00
|
|
|
RCTAssertParam(referenceDirectory);
|
2015-06-15 14:53:45 +00:00
|
|
|
|
2015-03-24 17:20:13 +00:00
|
|
|
if ((self = [super init])) {
|
2015-11-02 18:58:55 +00:00
|
|
|
if (!referenceDirectory.length) {
|
|
|
|
referenceDirectory = [[NSBundle bundleForClass:self.class].resourcePath stringByAppendingPathComponent:@"ReferenceImages"];
|
|
|
|
}
|
2015-07-07 23:19:40 +00:00
|
|
|
|
2015-03-24 17:20:13 +00:00
|
|
|
NSString *sanitizedAppName = [app stringByReplacingOccurrencesOfString:@"/" withString:@"-"];
|
|
|
|
sanitizedAppName = [sanitizedAppName stringByReplacingOccurrencesOfString:@"\\" withString:@"-"];
|
2015-04-18 17:43:20 +00:00
|
|
|
_testController = [[FBSnapshotTestController alloc] initWithTestName:sanitizedAppName];
|
2015-07-07 23:19:40 +00:00
|
|
|
_testController.referenceImagesDirectory = referenceDirectory;
|
|
|
|
_moduleProvider = [block copy];
|
|
|
|
|
2016-05-23 11:36:22 +00:00
|
|
|
if (getenv("CI_USE_PACKAGER")) {
|
|
|
|
_scriptURL = [NSURL URLWithString:[NSString stringWithFormat:@"http://localhost:8081/%@.bundle?platform=ios&dev=true", app]];
|
|
|
|
} else {
|
|
|
|
_scriptURL = [[NSBundle bundleForClass:[RCTBridge class]] URLForResource:@"main" withExtension:@"jsbundle"];
|
|
|
|
}
|
2016-07-18 14:12:19 +00:00
|
|
|
RCTAssert(_scriptURL != nil, @"No scriptURL set");
|
2015-03-14 01:32:38 +00:00
|
|
|
}
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2015-08-24 10:14:33 +00:00
|
|
|
RCT_NOT_IMPLEMENTED(- (instancetype)init)
|
2015-06-15 14:53:45 +00:00
|
|
|
|
2015-03-24 17:20:13 +00:00
|
|
|
- (void)setRecordMode:(BOOL)recordMode
|
|
|
|
{
|
2015-04-18 17:43:20 +00:00
|
|
|
_testController.recordMode = recordMode;
|
2015-03-24 17:20:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (BOOL)recordMode
|
2015-03-14 01:32:38 +00:00
|
|
|
{
|
2015-04-18 17:43:20 +00:00
|
|
|
return _testController.recordMode;
|
2015-03-14 01:32:38 +00:00
|
|
|
}
|
|
|
|
|
2015-03-24 17:20:13 +00:00
|
|
|
- (void)runTest:(SEL)test module:(NSString *)moduleName
|
2015-03-14 01:32:38 +00:00
|
|
|
{
|
2015-11-13 16:34:26 +00:00
|
|
|
[self runTest:test module:moduleName initialProps:nil configurationBlock:nil expectErrorBlock:nil];
|
2015-03-24 17:20:13 +00:00
|
|
|
}
|
|
|
|
|
2015-11-14 18:25:00 +00:00
|
|
|
- (void)runTest:(SEL)test module:(NSString *)moduleName
|
|
|
|
initialProps:(NSDictionary<NSString *, id> *)initialProps
|
|
|
|
configurationBlock:(void(^)(RCTRootView *rootView))configurationBlock
|
2015-11-13 16:34:26 +00:00
|
|
|
{
|
|
|
|
[self runTest:test module:moduleName initialProps:initialProps configurationBlock:configurationBlock expectErrorBlock:nil];
|
|
|
|
}
|
|
|
|
|
2015-11-14 18:25:00 +00:00
|
|
|
- (void)runTest:(SEL)test module:(NSString *)moduleName
|
|
|
|
initialProps:(NSDictionary<NSString *, id> *)initialProps
|
|
|
|
configurationBlock:(void(^)(RCTRootView *rootView))configurationBlock
|
|
|
|
expectErrorRegex:(NSString *)errorRegex
|
2015-03-24 17:20:13 +00:00
|
|
|
{
|
2015-11-13 16:34:26 +00:00
|
|
|
BOOL(^expectErrorBlock)(NSString *error) = ^BOOL(NSString *error){
|
2015-04-11 22:08:00 +00:00
|
|
|
return [error rangeOfString:errorRegex options:NSRegularExpressionSearch].location != NSNotFound;
|
2015-11-13 16:34:26 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
[self runTest:test module:moduleName initialProps:initialProps configurationBlock:configurationBlock expectErrorBlock:expectErrorBlock];
|
2015-03-14 01:32:38 +00:00
|
|
|
}
|
|
|
|
|
2015-11-14 18:25:00 +00:00
|
|
|
- (void)runTest:(SEL)test module:(NSString *)moduleName
|
|
|
|
initialProps:(NSDictionary<NSString *, id> *)initialProps
|
|
|
|
configurationBlock:(void(^)(RCTRootView *rootView))configurationBlock
|
|
|
|
expectErrorBlock:(BOOL(^)(NSString *error))expectErrorBlock
|
2015-03-14 01:32:38 +00:00
|
|
|
{
|
2015-09-04 10:21:57 +00:00
|
|
|
__weak id weakJSContext;
|
|
|
|
|
|
|
|
@autoreleasepool {
|
|
|
|
__block NSString *error = nil;
|
2015-11-11 14:42:27 +00:00
|
|
|
RCTSetLogFunction(^(RCTLogLevel level, RCTLogSource source, NSString *fileName, NSNumber *lineNumber, NSString *message) {
|
2015-09-04 10:21:57 +00:00
|
|
|
if (level >= RCTLogLevelError) {
|
|
|
|
error = message;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
RCTBridge *bridge = [[RCTBridge alloc] initWithBundleURL:_scriptURL
|
|
|
|
moduleProvider:_moduleProvider
|
|
|
|
launchOptions:nil];
|
|
|
|
|
|
|
|
RCTRootView *rootView = [[RCTRootView alloc] initWithBridge:bridge moduleName:moduleName initialProperties:initialProps];
|
2016-12-19 14:26:07 +00:00
|
|
|
#if TARGET_OS_TV
|
|
|
|
rootView.frame = CGRectMake(0, 0, 1920, 1080); // Standard screen size for tvOS
|
|
|
|
#else
|
2015-09-04 10:21:57 +00:00
|
|
|
rootView.frame = CGRectMake(0, 0, 320, 2000); // Constant size for testing on multiple devices
|
2016-12-19 14:26:07 +00:00
|
|
|
#endif
|
2015-09-04 10:21:57 +00:00
|
|
|
|
2015-11-25 11:09:00 +00:00
|
|
|
RCTTestModule *testModule = [rootView.bridge moduleForClass:[RCTTestModule class]];
|
2015-09-04 10:21:57 +00:00
|
|
|
RCTAssert(_testController != nil, @"_testController should not be nil");
|
|
|
|
testModule.controller = _testController;
|
|
|
|
testModule.testSelector = test;
|
2016-08-17 17:37:01 +00:00
|
|
|
testModule.testSuffix = _testSuffix;
|
2015-09-04 10:21:57 +00:00
|
|
|
testModule.view = rootView;
|
|
|
|
|
|
|
|
UIViewController *vc = [UIApplication sharedApplication].delegate.window.rootViewController;
|
|
|
|
vc.view = [UIView new];
|
|
|
|
[vc.view addSubview:rootView]; // Add as subview so it doesn't get resized
|
|
|
|
|
2015-11-13 16:34:26 +00:00
|
|
|
if (configurationBlock) {
|
|
|
|
configurationBlock(rootView);
|
|
|
|
}
|
|
|
|
|
2015-09-04 10:21:57 +00:00
|
|
|
NSDate *date = [NSDate dateWithTimeIntervalSinceNow:kTestTimeoutSeconds];
|
|
|
|
while (date.timeIntervalSinceNow > 0 && testModule.status == RCTTestStatusPending && error == nil) {
|
|
|
|
[[NSRunLoop mainRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]];
|
|
|
|
[[NSRunLoop mainRunLoop] runMode:NSRunLoopCommonModes beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]];
|
2015-08-19 10:18:04 +00:00
|
|
|
}
|
|
|
|
|
2015-09-04 10:21:57 +00:00
|
|
|
// Take a weak reference to the JS context, so we track its deallocation later
|
|
|
|
// (we can only do this now, since it's been lazily initialized)
|
2016-01-05 23:29:23 +00:00
|
|
|
id jsExecutor = [bridge.batchedBridge valueForKey:@"javaScriptExecutor"];
|
2015-12-16 10:49:27 +00:00
|
|
|
if ([jsExecutor isKindOfClass:[RCTJSCExecutor class]]) {
|
2016-01-05 15:59:54 +00:00
|
|
|
weakJSContext = [jsExecutor valueForKey:@"_context"];
|
2015-10-01 11:19:46 +00:00
|
|
|
}
|
2015-09-04 10:21:57 +00:00
|
|
|
[rootView removeFromSuperview];
|
2015-07-07 23:19:40 +00:00
|
|
|
|
2015-09-04 10:21:57 +00:00
|
|
|
RCTSetLogFunction(RCTDefaultLogFunction);
|
2015-03-26 01:59:42 +00:00
|
|
|
|
2015-11-03 22:45:46 +00:00
|
|
|
NSArray<UIView *> *nonLayoutSubviews = [vc.view.subviews filteredArrayUsingPredicate:[NSPredicate predicateWithBlock:^BOOL(id subview, NSDictionary *bindings) {
|
2015-09-04 10:21:57 +00:00
|
|
|
return ![NSStringFromClass([subview class]) isEqualToString:@"_UILayoutGuide"];
|
|
|
|
}]];
|
|
|
|
RCTAssert(nonLayoutSubviews.count == 0, @"There shouldn't be any other views: %@", nonLayoutSubviews);
|
2015-04-18 17:43:20 +00:00
|
|
|
|
2015-09-04 10:21:57 +00:00
|
|
|
if (expectErrorBlock) {
|
|
|
|
RCTAssert(expectErrorBlock(error), @"Expected an error but nothing matched.");
|
|
|
|
} else {
|
|
|
|
RCTAssert(error == nil, @"RedBox error: %@", error);
|
|
|
|
RCTAssert(testModule.status != RCTTestStatusPending, @"Test didn't finish within %0.f seconds", kTestTimeoutSeconds);
|
|
|
|
RCTAssert(testModule.status == RCTTestStatusPassed, @"Test failed");
|
|
|
|
}
|
|
|
|
[bridge invalidate];
|
|
|
|
}
|
2015-03-14 01:32:38 +00:00
|
|
|
|
2015-09-04 10:21:57 +00:00
|
|
|
// Wait for the executor to have shut down completely before returning
|
|
|
|
NSDate *teardownTimeout = [NSDate dateWithTimeIntervalSinceNow:kTestTeardownTimeoutSeconds];
|
|
|
|
while (teardownTimeout.timeIntervalSinceNow > 0 && weakJSContext) {
|
2015-05-06 16:33:20 +00:00
|
|
|
[[NSRunLoop mainRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]];
|
|
|
|
[[NSRunLoop mainRunLoop] runMode:NSRunLoopCommonModes beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]];
|
2015-03-14 01:32:38 +00:00
|
|
|
}
|
2015-09-04 10:21:57 +00:00
|
|
|
RCTAssert(!weakJSContext, @"JS context was not deallocated after being invalidated");
|
2015-03-14 01:32:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@end
|