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-10 21:06:09 +00:00
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#import <XCTest/XCTest.h>
|
|
|
|
|
2015-03-17 18:35:41 +00:00
|
|
|
#import "RCTRedBox.h"
|
|
|
|
|
2015-03-17 15:59:42 +00:00
|
|
|
#define TIMEOUT_SECONDS 240
|
2015-03-11 01:57:27 +00:00
|
|
|
|
2015-03-10 21:06:09 +00:00
|
|
|
@interface UIExplorerTests : XCTestCase
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation UIExplorerTests
|
|
|
|
|
|
|
|
- (BOOL)findSubviewInView:(UIView *)view matching:(BOOL(^)(UIView *view))test
|
|
|
|
{
|
|
|
|
if (test(view)) {
|
|
|
|
return YES;
|
|
|
|
}
|
|
|
|
for (UIView *subview in [view subviews]) {
|
|
|
|
if ([self findSubviewInView:subview matching:test]) {
|
|
|
|
return YES;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NO;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)testRootViewLoadsAndRenders {
|
|
|
|
UIViewController *vc = [[[[UIApplication sharedApplication] delegate] window] rootViewController];
|
|
|
|
|
2015-03-11 01:57:27 +00:00
|
|
|
NSDate *date = [NSDate dateWithTimeIntervalSinceNow:TIMEOUT_SECONDS];
|
2015-03-10 21:06:09 +00:00
|
|
|
BOOL foundElement = NO;
|
2015-03-17 18:35:41 +00:00
|
|
|
NSString *redboxError = nil;
|
2015-03-10 21:06:09 +00:00
|
|
|
|
2015-03-17 18:35:41 +00:00
|
|
|
while ([date timeIntervalSinceNow] > 0 && !foundElement && !redboxError) {
|
2015-03-10 21:06:09 +00:00
|
|
|
[[NSRunLoop mainRunLoop] runMode:NSDefaultRunLoopMode beforeDate:date];
|
|
|
|
[[NSRunLoop mainRunLoop] runMode:NSRunLoopCommonModes beforeDate:date];
|
|
|
|
|
2015-03-17 18:35:41 +00:00
|
|
|
redboxError = [[RCTRedBox sharedInstance] currentErrorMessage];
|
|
|
|
|
2015-03-10 21:06:09 +00:00
|
|
|
foundElement = [self findSubviewInView:vc.view matching:^BOOL(UIView *view) {
|
|
|
|
if ([view respondsToSelector:@selector(attributedText)]) {
|
|
|
|
NSString *text = [(id)view attributedText].string;
|
|
|
|
if ([text isEqualToString:@"<View>"]) {
|
|
|
|
return YES;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NO;
|
|
|
|
}];
|
|
|
|
}
|
|
|
|
|
2015-03-17 18:35:41 +00:00
|
|
|
XCTAssertNil(redboxError, @"RedBox error: %@", redboxError);
|
2015-03-11 01:57:27 +00:00
|
|
|
XCTAssertTrue(foundElement, @"Cound't find element with '<View>' text in %d seconds", TIMEOUT_SECONDS);
|
2015-03-10 21:06:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@end
|