-
Notifications
You must be signed in to change notification settings - Fork 24.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add test target and flowconfig to SampleApp
- Loading branch information
Showing
9 changed files
with
280 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,6 +20,7 @@ DerivedData | |
*.hmap | ||
*.ipa | ||
*.xcuserstate | ||
project.xcworkspace | ||
|
||
# OS X | ||
.DS_Store | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>CFBundleDevelopmentRegion</key> | ||
<string>en</string> | ||
<key>CFBundleExecutable</key> | ||
<string>$(EXECUTABLE_NAME)</string> | ||
<key>CFBundleIdentifier</key> | ||
<string>org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)</string> | ||
<key>CFBundleInfoDictionaryVersion</key> | ||
<string>6.0</string> | ||
<key>CFBundleName</key> | ||
<string>$(PRODUCT_NAME)</string> | ||
<key>CFBundlePackageType</key> | ||
<string>BNDL</string> | ||
<key>CFBundleShortVersionString</key> | ||
<string>1.0</string> | ||
<key>CFBundleSignature</key> | ||
<string>????</string> | ||
<key>CFBundleVersion</key> | ||
<string>1</string> | ||
</dict> | ||
</plist> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
/** | ||
* 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 <UIKit/UIKit.h> | ||
#import <XCTest/XCTest.h> | ||
|
||
#import "RCTAssert.h" | ||
#import "RCTRedBox.h" | ||
#import "RCTRootView.h" | ||
|
||
#define TIMEOUT_SECONDS 240 | ||
#define TEXT_TO_LOOK_FOR @"Welcome to React Native!" | ||
|
||
@interface SampleAppTests : XCTestCase | ||
|
||
@end | ||
|
||
@implementation SampleAppTests | ||
|
||
|
||
- (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)testRendersWelcomeScreen { | ||
UIViewController *vc = [[[[UIApplication sharedApplication] delegate] window] rootViewController]; | ||
NSDate *date = [NSDate dateWithTimeIntervalSinceNow:TIMEOUT_SECONDS]; | ||
BOOL foundElement = NO; | ||
NSString *redboxError = nil; | ||
|
||
while ([date timeIntervalSinceNow] > 0 && !foundElement && !redboxError) { | ||
[[NSRunLoop mainRunLoop] runMode:NSDefaultRunLoopMode beforeDate:date]; | ||
[[NSRunLoop mainRunLoop] runMode:NSRunLoopCommonModes beforeDate:date]; | ||
|
||
redboxError = [[RCTRedBox sharedInstance] currentErrorMessage]; | ||
|
||
foundElement = [self findSubviewInView:vc.view matching:^BOOL(UIView *view) { | ||
if ([view respondsToSelector:@selector(attributedText)]) { | ||
NSString *text = [(id)view attributedText].string; | ||
if ([text isEqualToString:TEXT_TO_LOOK_FOR]) { | ||
return YES; | ||
} | ||
} | ||
return NO; | ||
}]; | ||
} | ||
|
||
XCTAssertNil(redboxError, @"RedBox error: %@", redboxError); | ||
XCTAssertTrue(foundElement, @"Cound't find element with text '%@' in %d seconds", TEXT_TO_LOOK_FOR, TIMEOUT_SECONDS); | ||
} | ||
|
||
|
||
@end |
Oops, something went wrong.