2015-03-23 20:28:42 +00:00
|
|
|
/**
|
2015-03-28 05:18:47 +00:00
|
|
|
* The examples provided by Facebook are for non-commercial testing and
|
|
|
|
* evaluation purposes only.
|
2015-03-23 20:28:42 +00:00
|
|
|
*
|
2015-03-28 05:18:47 +00:00
|
|
|
* Facebook reserves all rights not expressly granted.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
|
|
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NON INFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* FACEBOOK BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
|
|
|
|
* AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
|
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
2015-03-23 20:28:42 +00:00
|
|
|
*/
|
2015-03-10 21:06:09 +00:00
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#import <XCTest/XCTest.h>
|
|
|
|
|
2015-03-25 05:07:16 +00:00
|
|
|
#import <RCTTest/RCTTestRunner.h>
|
|
|
|
|
|
|
|
#import "RCTAssert.h"
|
2015-03-17 18:35:41 +00:00
|
|
|
#import "RCTRedBox.h"
|
2015-03-25 05:07:16 +00:00
|
|
|
#import "RCTRootView.h"
|
2015-03-17 18:35:41 +00:00
|
|
|
|
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
|
2015-03-25 05:07:16 +00:00
|
|
|
{
|
|
|
|
RCTTestRunner *_runner;
|
|
|
|
}
|
2015-03-10 21:06:09 +00:00
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation UIExplorerTests
|
|
|
|
|
2015-03-25 05:07:16 +00:00
|
|
|
- (void)setUp
|
|
|
|
{
|
|
|
|
#ifdef __LP64__
|
|
|
|
RCTAssert(!__LP64__, @"Snapshot tests should be run on 32-bit device simulators (e.g. iPhone 5)");
|
|
|
|
#endif
|
|
|
|
NSString *version = [[UIDevice currentDevice] systemVersion];
|
|
|
|
RCTAssert([version isEqualToString:@"8.1"], @"Snapshot tests should be run on iOS 8.1, found %@", version);
|
2015-04-15 00:51:28 +00:00
|
|
|
_runner = RCTInitRunnerForApp(@"Examples/UIExplorer/UIExplorerApp");
|
2015-03-25 05:07:16 +00:00
|
|
|
|
2015-04-15 00:51:28 +00:00
|
|
|
// If tests have changes, set recordMode = YES below and run the affected
|
|
|
|
// tests on an iPhone5, iOS 8.1 simulator.
|
2015-03-25 05:07:16 +00:00
|
|
|
_runner.recordMode = NO;
|
|
|
|
}
|
|
|
|
|
2015-03-10 21:06:09 +00:00
|
|
|
- (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;
|
|
|
|
}
|
|
|
|
|
2015-04-18 17:43:20 +00:00
|
|
|
// Make sure this test runs first because the other tests will tear out the rootView
|
|
|
|
- (void)testAAA_RootViewLoadsAndRenders
|
2015-04-15 00:51:28 +00:00
|
|
|
{
|
2015-04-18 17:43:20 +00:00
|
|
|
UIViewController *vc = [UIApplication sharedApplication].delegate.window.rootViewController;
|
2015-03-25 05:07:16 +00:00
|
|
|
RCTAssert([vc.view isKindOfClass:[RCTRootView class]], @"This test must run first.");
|
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-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-17 18:35:41 +00:00
|
|
|
redboxError = [[RCTRedBox sharedInstance] currentErrorMessage];
|
2015-04-18 17:43:20 +00:00
|
|
|
foundElement = [self findSubviewInView:vc.view matching:^(UIView *view) {
|
2015-05-28 01:53:13 +00:00
|
|
|
if ([view.accessibilityLabel isEqualToString:@"<View>"]) {
|
|
|
|
return YES;
|
2015-03-10 21:06:09 +00:00
|
|
|
}
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2015-05-12 07:25:08 +00:00
|
|
|
#define RCT_SNAPSHOT_TEST(name, reRecord) \
|
|
|
|
- (void)test##name##Snapshot \
|
|
|
|
{ \
|
|
|
|
_runner.recordMode |= reRecord; \
|
|
|
|
[_runner runTest:_cmd module:@#name]; \
|
2015-03-25 05:07:16 +00:00
|
|
|
}
|
|
|
|
|
2015-05-12 07:25:08 +00:00
|
|
|
RCT_SNAPSHOT_TEST(ViewExample, NO)
|
|
|
|
RCT_SNAPSHOT_TEST(LayoutExample, NO)
|
|
|
|
RCT_SNAPSHOT_TEST(TextExample, NO)
|
|
|
|
RCT_SNAPSHOT_TEST(SwitchExample, NO)
|
|
|
|
RCT_SNAPSHOT_TEST(SliderExample, NO)
|
|
|
|
RCT_SNAPSHOT_TEST(TabBarExample, NO)
|
2015-03-25 05:07:16 +00:00
|
|
|
|
2015-04-18 17:43:20 +00:00
|
|
|
// Make sure this test runs last
|
2015-03-25 05:07:16 +00:00
|
|
|
- (void)testZZZ_NotInRecordMode
|
|
|
|
{
|
|
|
|
RCTAssert(_runner.recordMode == NO, @"Don't forget to turn record mode back to NO before commit.");
|
|
|
|
}
|
2015-03-10 21:06:09 +00:00
|
|
|
|
|
|
|
@end
|