react-native/Examples/UIExplorer/UIExplorerIntegrationTests/UIExplorerIntegrationTests.m

71 lines
1.9 KiB
Mathematica
Raw Normal View History

/**
* 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 <RCTTest/RCTTestRunner.h>
#import "RCTAssert.h"
2015-09-04 10:30:18 +00:00
#define RCT_TEST(name) \
- (void)test##name \
{ \
[_runner runTest:_cmd module:@#name]; \
}
@interface UIExplorerIntegrationTests : XCTestCase
@end
2015-09-04 10:30:18 +00:00
@implementation UIExplorerIntegrationTests
{
RCTTestRunner *_runner;
}
- (void)setUp
{
#if __LP64__
RCTAssert(NO, @"Tests should be run on 32-bit device simulators (e.g. iPhone 5)");
2015-03-24 17:20:13 +00:00
#endif
NSOperatingSystemVersion version = [NSProcessInfo processInfo].operatingSystemVersion;
RCTAssert(version.majorVersion == 8 || version.minorVersion >= 3, @"Tests should be run on iOS 8.3+, found %zd.%zd.%zd", version.majorVersion, version.minorVersion, version.patchVersion);
_runner = RCTInitRunnerForApp(@"Examples/UIExplorer/UIExplorerIntegrationTests/js/IntegrationTestsApp", nil);
}
2015-03-24 17:20:13 +00:00
#pragma mark Logic Tests
- (void)testTheTester_waitOneFrame
{
[_runner runTest:_cmd
module:@"IntegrationTestHarnessTest"
initialProps:@{@"waitOneFrame": @YES}
expectErrorBlock:nil];
}
- (void)testTheTester_ExpectError
{
2015-03-24 17:20:13 +00:00
[_runner runTest:_cmd
module:@"IntegrationTestHarnessTest"
initialProps:@{@"shouldThrow": @YES}
expectErrorRegex:@"because shouldThrow"];
}
// This list should be kept in sync with IntegrationTestsApp.js
2015-09-04 10:30:18 +00:00
RCT_TEST(IntegrationTestHarnessTest)
RCT_TEST(TimersTest)
2015-09-04 10:30:18 +00:00
RCT_TEST(AsyncStorageTest)
RCT_TEST(LayoutEventsTest)
2015-09-04 10:30:18 +00:00
RCT_TEST(AppEventsTest)
RCT_TEST(SimpleSnapshotTest)
2015-09-04 10:30:18 +00:00
RCT_TEST(PromiseTest)
2015-03-24 17:20:13 +00:00
@end