react-native-keychain/KeychainExample/ios/KeychainExampleTests/KeychainExampleTests.m

71 lines
2.0 KiB
Mathematica
Raw Normal View History

2015-05-20 18:41:10 +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.
*/
#import <UIKit/UIKit.h>
#import <XCTest/XCTest.h>
#import <React/RCTLog.h>
#import <React/RCTRootView.h>
2015-05-20 18:41:10 +00:00
2016-11-02 20:42:55 +00:00
#define TIMEOUT_SECONDS 600
2015-05-20 18:41:10 +00:00
#define TEXT_TO_LOOK_FOR @"Welcome to React Native!"
@interface KeychainExampleTests : XCTestCase
@end
@implementation KeychainExampleTests
- (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;
}
2016-11-02 20:42:55 +00:00
- (void)testRendersWelcomeScreen
{
2018-01-08 19:15:36 +00:00
UIViewController *vc = [[[RCTSharedApplication() delegate] window] rootViewController];
2015-05-20 18:41:10 +00:00
NSDate *date = [NSDate dateWithTimeIntervalSinceNow:TIMEOUT_SECONDS];
BOOL foundElement = NO;
2016-11-02 20:42:55 +00:00
__block NSString *redboxError = nil;
RCTSetLogFunction(^(RCTLogLevel level, RCTLogSource source, NSString *fileName, NSNumber *lineNumber, NSString *message) {
if (level >= RCTLogLevelError) {
redboxError = message;
}
});
2015-05-20 18:41:10 +00:00
while ([date timeIntervalSinceNow] > 0 && !foundElement && !redboxError) {
[[NSRunLoop mainRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]];
[[NSRunLoop mainRunLoop] runMode:NSRunLoopCommonModes beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]];
foundElement = [self findSubviewInView:vc.view matching:^BOOL(UIView *view) {
2016-11-02 20:42:55 +00:00
if ([view.accessibilityLabel isEqualToString:TEXT_TO_LOOK_FOR]) {
return YES;
2015-05-20 18:41:10 +00:00
}
return NO;
}];
}
2016-11-02 20:42:55 +00:00
RCTSetLogFunction(RCTDefaultLogFunction);
2015-05-20 18:41:10 +00:00
XCTAssertNil(redboxError, @"RedBox error: %@", redboxError);
2016-11-02 20:42:55 +00:00
XCTAssertTrue(foundElement, @"Couldn't find element with text '%@' in %d seconds", TEXT_TO_LOOK_FOR, TIMEOUT_SECONDS);
2015-05-20 18:41:10 +00:00
}
@end