2015-03-23 13:28:42 -07:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
|
|
*
|
2018-02-16 18:24:55 -08:00
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
2015-03-23 13:28:42 -07:00
|
|
|
*/
|
2015-03-13 18:32:38 -07:00
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#import <XCTest/XCTest.h>
|
|
|
|
|
|
|
|
#import <RCTTest/RCTTestRunner.h>
|
|
|
|
|
2015-09-04 03:30:18 -07:00
|
|
|
#define RCT_TEST(name) \
|
|
|
|
- (void)test##name \
|
|
|
|
{ \
|
|
|
|
[_runner runTest:_cmd module:@#name]; \
|
|
|
|
}
|
|
|
|
|
2017-01-16 13:23:33 -08:00
|
|
|
#define RCT_TEST_ONLY_WITH_PACKAGER(name) \
|
|
|
|
- (void)test##name \
|
|
|
|
{ \
|
|
|
|
if (getenv("CI_USE_PACKAGER")) { \
|
|
|
|
[_runner runTest:_cmd module:@#name]; \
|
|
|
|
} \
|
|
|
|
}
|
|
|
|
|
2017-05-05 20:50:47 -07:00
|
|
|
@interface RNTesterIntegrationTests : XCTestCase
|
2015-03-13 18:32:38 -07:00
|
|
|
|
|
|
|
@end
|
|
|
|
|
2017-05-05 20:50:47 -07:00
|
|
|
@implementation RNTesterIntegrationTests
|
2015-04-14 17:51:28 -07:00
|
|
|
{
|
2015-03-13 18:32:38 -07:00
|
|
|
RCTTestRunner *_runner;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)setUp
|
|
|
|
{
|
2017-11-12 13:30:13 -08:00
|
|
|
_runner = RCTInitRunnerForApp(@"IntegrationTests/IntegrationTestsApp", nil, nil);
|
2016-12-19 06:26:07 -08:00
|
|
|
_runner.recordMode = NO;
|
2015-03-13 18:32:38 -07:00
|
|
|
}
|
|
|
|
|
2015-11-18 08:25:30 -08:00
|
|
|
#pragma mark - Test harness
|
2015-03-24 10:20:13 -07:00
|
|
|
|
2015-06-09 05:11:40 -07:00
|
|
|
- (void)testTheTester_waitOneFrame
|
2015-03-13 18:32:38 -07:00
|
|
|
{
|
2015-04-14 17:51:28 -07:00
|
|
|
[_runner runTest:_cmd
|
|
|
|
module:@"IntegrationTestHarnessTest"
|
|
|
|
initialProps:@{@"waitOneFrame": @YES}
|
2015-11-13 08:34:26 -08:00
|
|
|
configurationBlock:nil];
|
2015-03-13 18:32:38 -07:00
|
|
|
}
|
|
|
|
|
2015-06-17 07:09:23 -07:00
|
|
|
- (void)testTheTester_ExpectError
|
2015-03-13 18:32:38 -07:00
|
|
|
{
|
2015-03-24 10:20:13 -07:00
|
|
|
[_runner runTest:_cmd
|
|
|
|
module:@"IntegrationTestHarnessTest"
|
2015-03-13 18:32:38 -07:00
|
|
|
initialProps:@{@"shouldThrow": @YES}
|
2015-11-13 08:34:26 -08:00
|
|
|
configurationBlock:nil
|
2015-04-14 17:51:28 -07:00
|
|
|
expectErrorRegex:@"because shouldThrow"];
|
2015-03-13 18:32:38 -07:00
|
|
|
}
|
|
|
|
|
2015-11-18 08:25:30 -08:00
|
|
|
#pragma mark - JS tests
|
|
|
|
|
2015-10-06 07:34:44 -07:00
|
|
|
// This list should be kept in sync with IntegrationTestsApp.js
|
2015-09-04 03:30:18 -07:00
|
|
|
RCT_TEST(IntegrationTestHarnessTest)
|
2015-10-06 07:34:44 -07:00
|
|
|
RCT_TEST(TimersTest)
|
2015-09-04 03:30:18 -07:00
|
|
|
RCT_TEST(AsyncStorageTest)
|
|
|
|
RCT_TEST(AppEventsTest)
|
2017-01-17 16:58:27 -08:00
|
|
|
RCT_TEST(ImageCachePolicyTest)
|
2017-02-13 17:35:43 -08:00
|
|
|
RCT_TEST(ImageSnapshotTest)
|
2015-11-18 08:25:30 -08:00
|
|
|
//RCT_TEST(LayoutEventsTest) // Disabled due to flakiness: #8686784
|
2015-10-06 07:34:44 -07:00
|
|
|
RCT_TEST(SimpleSnapshotTest)
|
2017-04-27 11:49:50 -07:00
|
|
|
RCT_TEST(SyncMethodTest)
|
2015-11-18 08:25:30 -08:00
|
|
|
RCT_TEST(PromiseTest)
|
2017-01-16 13:23:33 -08:00
|
|
|
RCT_TEST_ONLY_WITH_PACKAGER(WebSocketTest)
|
2017-06-20 18:42:46 -07:00
|
|
|
RCT_TEST(AccessibilityManagerTest)
|
2015-10-13 03:22:40 -07:00
|
|
|
|
2017-07-28 11:32:00 -07:00
|
|
|
#if !TARGET_OS_TV // tvOS does not fully support WebView
|
|
|
|
RCT_TEST(WebViewTest)
|
|
|
|
#endif
|
|
|
|
|
2015-03-13 18:32:38 -07:00
|
|
|
@end
|