Fix iOS e2e tests: bump react-native-babel-preset to ^5 (#19625)

Summary:
We opt in to version ^5 of the React Native Babel Preset, as required after the bump to Babel 7. This fixes the Objective-C end-to-end test failure in master. (Fixes #19538)

See 34bd776af2 (commitcomment-29024085) for prior discussion.

There have already been several changes made to the repo during the transition to Babel 7. This PR brings all tests back to green and allows us to move forward with the 0.56 branch cut.

We also bump our tests to use Xcode 9.4.0 and iOS 11.4, the latest stable versions of both.

Once the 0.56 branch makes it to stable, we can change `react-native-babel-preset@latest` on npm to point to `react-native-babel-preset@5.0.1` (or newer), and undo the change made to `init.js` we made as part of this diff.

Wait for Circle CI to run: https://circleci.com/workflow-run/e39a66d7-bf8a-4b31-a22f-eef30a2c53bc

[GENERAL] [BREAKING] [Babel] - Bump React Native Babel Preset version used by RN CLI to Babel v7 compliant release
Closes https://github.com/facebook/react-native/pull/19625

Reviewed By: TheSavior

Differential Revision: D8343861

Pulled By: hramos

fbshipit-source-id: 42644d5b0bfb40a8bc592ae3461c5008deef8232
This commit is contained in:
Héctor Ramos 2018-06-10 16:53:22 -07:00 committed by Facebook Github Bot
parent a51e8b19cc
commit e315ec9891
8 changed files with 84 additions and 44 deletions

View File

@ -198,7 +198,7 @@ aliases:
# eslint sometimes runs into trouble generating the reports # eslint sometimes runs into trouble generating the reports
- &run-lint-checks - &run-lint-checks
name: Lint code name: Lint code
command: scripts/circleci/exec_swallow_error.sh yarn lint --format junit -o ~/react-native/reports/junit/js-lint-results.xml command: scripts/circleci/exec_swallow_error.sh yarn lint --format junit -o ~/react-native/reports/junit/eslint/results.xml
when: always when: always
- &run-flow-checks - &run-flow-checks
@ -274,6 +274,14 @@ aliases:
mkdir -p ~/react-native/reports/junit/ mkdir -p ~/react-native/reports/junit/
mkdir -p ~/react-native/reports/outputs/ mkdir -p ~/react-native/reports/outputs/
- &boot-simulator-iphone
name: Boot iPhone Simulator
command: xcrun simctl boot "iPhone 5s" || true
- &boot-simulator-appletv
name: Boot Apple TV Simulator
command: xcrun simctl boot "Apple TV" || true
- &run-objc-ios-tests - &run-objc-ios-tests
name: iOS Test Suite name: iOS Test Suite
command: ./scripts/objc-test-ios.sh test command: ./scripts/objc-test-ios.sh test
@ -282,9 +290,13 @@ aliases:
name: tvOS Test Suite name: tvOS Test Suite
command: ./scripts/objc-test-tvos.sh test command: ./scripts/objc-test-tvos.sh test
- &run-e2e-tests
name: End-to-End Test Suite
command: node ./scripts/run-ci-e2e-tests.js --ios --tvos --js --retries 3;
- &run-objc-ios-e2e-tests - &run-objc-ios-e2e-tests
name: iOS End-to-End Test Suite name: iOS End-to-End Test Suite
command: node ./scripts/run-ci-e2e-tests.js --ios --js --retries 3; command: node ./scripts/run-ci-e2e-tests.js --ios --retries 3;
- &run-objc-tvos-e2e-tests - &run-objc-tvos-e2e-tests
name: tvOS End-to-End Test Suite name: tvOS End-to-End Test Suite
@ -374,8 +386,7 @@ jobs:
- attach_workspace: - attach_workspace:
at: ~/react-native at: ~/react-native
- run: xcrun instruments -w "iPhone 5s (11.4)" || true - run: *boot-simulator-iphone
# See https://github.com/Homebrew/homebrew-core/issues/26358.
- run: brew install watchman - run: brew install watchman
- run: *run-objc-ios-tests - run: *run-objc-ios-tests
@ -389,8 +400,7 @@ jobs:
- attach_workspace: - attach_workspace:
at: ~/react-native at: ~/react-native
- run: xcrun instruments -w "Apple TV (11.4)" || true - run: *boot-simulator-appletv
# See https://github.com/Homebrew/homebrew-core/issues/26358.
- run: brew install watchman - run: brew install watchman
- run: *run-objc-tvos-tests - run: *run-objc-tvos-tests
@ -398,13 +408,27 @@ jobs:
path: ~/react-native/reports/junit path: ~/react-native/reports/junit
# Runs end to end tests # Runs end to end tests
test_ios_e2e: test_end_to_end:
<<: *macos_defaults <<: *macos_defaults
steps: steps:
- attach_workspace: - attach_workspace:
at: ~/react-native at: ~/react-native
- run: xcrun instruments -w "iPhone 5s (11.4)" || true - run: *boot-simulator-iphone
- run:
name: Configure Environment Variables
command: |
echo 'export PATH=/usr/local/opt/node@8/bin:$PATH' >> $BASH_ENV
source $BASH_ENV
- run:
name: Install Node 8
command: |
brew install node@8
brew link node@8
node -v
- run: *run-objc-ios-e2e-tests - run: *run-objc-ios-e2e-tests
- store_test_results: - store_test_results:
@ -623,7 +647,7 @@ workflows:
- checkout_code - checkout_code
# End-to-end tests # End-to-end tests
- test_ios_e2e: - test_end_to_end:
filters: *filter-ignore-gh-pages filters: *filter-ignore-gh-pages
requires: requires:
- checkout_code - checkout_code
@ -670,11 +694,3 @@ workflows:
# filters: *filter-ignore-gh-pages # filters: *filter-ignore-gh-pages
# requires: # requires:
# - checkout_code # - checkout_code
experimental:
notify:
webhooks:
- url: https://code.facebook.com/circle/webhook/
branches:
only:
- master

View File

@ -28,7 +28,7 @@ const path = require('path');
const colors = { const colors = {
GREEN: '\x1b[32m', GREEN: '\x1b[32m',
RED: '\x1b[31m', RED: '\x1b[31m',
RESET: '\x1b[0m' RESET: '\x1b[0m',
}; };
const test_opts = { const test_opts = {
@ -41,7 +41,7 @@ const test_opts = {
TEST_TIMEOUT: parseInt(argv['test-timeout'] || 1000 * 60 * 10), TEST_TIMEOUT: parseInt(argv['test-timeout'] || 1000 * 60 * 10),
OFFSET: argv.offset, OFFSET: argv.offset,
COUNT: argv.count COUNT: argv.count,
}; };
let max_test_class_length = Number.NEGATIVE_INFINITY; let max_test_class_length = Number.NEGATIVE_INFINITY;
@ -88,7 +88,7 @@ return async.mapSeries(testClasses, (clazz, callback) => {
return async.retry(test_opts.RETRIES, (retryCb) => { return async.retry(test_opts.RETRIES, (retryCb) => {
const test_process = child_process.spawn('./ContainerShip/scripts/run-instrumentation-tests-via-adb-shell.sh', [test_opts.PACKAGE, clazz], { const test_process = child_process.spawn('./ContainerShip/scripts/run-instrumentation-tests-via-adb-shell.sh', [test_opts.PACKAGE, clazz], {
stdio: 'inherit' stdio: 'inherit',
}); });
const timeout = setTimeout(() => { const timeout = setTimeout(() => {
@ -112,7 +112,7 @@ return async.mapSeries(testClasses, (clazz, callback) => {
}, (err) => { }, (err) => {
return callback(null, { return callback(null, {
name: clazz, name: clazz,
status: err ? 'failure' : 'success' status: err ? 'failure' : 'success',
}); });
}); });
}, (err, results) => { }, (err, results) => {

View File

@ -99,7 +99,7 @@ function generateProject(destinationRoot, newProjectName, options) {
}); });
} }
if (!options['skip-jest']) { if (!options['skip-jest']) {
const jestDeps = `jest babel-jest babel-preset-react-native react-test-renderer@${reactVersion}`; const jestDeps = `jest babel-jest babel-preset-react-native@^5 react-test-renderer@${reactVersion}`;
if (yarnVersion) { if (yarnVersion) {
console.log('Adding Jest...'); console.log('Adding Jest...');
execSync(`yarn add ${jestDeps} --dev --exact`, {stdio: 'inherit'}); execSync(`yarn add ${jestDeps} --dev --exact`, {stdio: 'inherit'});

View File

@ -17,7 +17,7 @@ export AVD_NAME="testAVD"
export AVD_ABI=x86 export AVD_ABI=x86
## IOS ## ## IOS ##
export IOS_TARGET_OS="11.3" export IOS_TARGET_OS="11.4"
export IOS_DEVICE="iPhone 5s" export IOS_DEVICE="iPhone 5s"
export SCHEME="RNTester" export SCHEME="RNTester"

View File

@ -13,9 +13,10 @@ ROOT=$(dirname "$SCRIPTS")
cd "$ROOT" cd "$ROOT"
SCHEME="RNTester" export TEST_NAME="iOS"
SDK="iphonesimulator" export SCHEME="RNTester"
DESTINATION="platform=iOS Simulator,name=iPhone 5s,OS=10.3.1" export SDK="iphonesimulator"
export DESTINATION="platform=iOS Simulator,name=iPhone 5s,OS=11.4"
# If there's a "test" argument, pass it to the test script. # If there's a "test" argument, pass it to the test script.
. ./scripts/objc-test.sh $1 . ./scripts/objc-test.sh $1

View File

@ -13,9 +13,10 @@ ROOT=$(dirname "$SCRIPTS")
cd "$ROOT" cd "$ROOT"
SCHEME="RNTester-tvOS" export TEST_NAME="tvOS"
SDK="appletvsimulator" export SCHEME="RNTester-tvOS"
DESTINATION="platform=tvOS Simulator,name=Apple TV 1080p,OS=10.2" export SDK="appletvsimulator"
export DESTINATION="platform=tvOS Simulator,name=Apple TV,OS=11.4"
# If there's a "test" argument, pass it to the test script. # If there's a "test" argument, pass it to the test script.
. ./scripts/objc-test.sh $1 . ./scripts/objc-test.sh $1

View File

@ -79,7 +79,7 @@ xcodebuild \
-sdk $SDK \ -sdk $SDK \
-destination "$DESTINATION" \ -destination "$DESTINATION" \
build test \ build test \
| xcpretty --report junit --output ~/react-native/reports/junit/objc-xcodebuild-results.xml | xcpretty --report junit --output "$HOME/react-native/reports/junit/$TEST_NAME/results.xml"
else else

View File

@ -104,8 +104,8 @@ try {
cd('EndToEndTest'); cd('EndToEndTest');
if (argv.android) { if (argv.android) {
echo('Running an Android e2e test'); echo('Running an Android end-to-end test');
echo('Installing e2e framework'); echo('Installing end-to-end framework');
if ( if (
tryExecNTimes( tryExecNTimes(
() => () =>
@ -155,14 +155,14 @@ try {
SERVER_PID = packagerProcess.pid; SERVER_PID = packagerProcess.pid;
// wait a bit to allow packager to startup // wait a bit to allow packager to startup
exec('sleep 15s'); exec('sleep 15s');
echo('Executing android e2e test'); echo('Executing android end-to-end test');
if ( if (
tryExecNTimes(() => { tryExecNTimes(() => {
exec('sleep 10s'); exec('sleep 10s');
return exec('node node_modules/.bin/_mocha android-e2e-test.js').code; return exec('node node_modules/.bin/_mocha android-e2e-test.js').code;
}, numberOfRetries) }, numberOfRetries)
) { ) {
echo('Failed to run Android e2e tests'); echo('Failed to run Android end-to-end tests');
echo('Most likely the code is broken'); echo('Most likely the code is broken');
exitCode = 1; exitCode = 1;
throw Error(exitCode); throw Error(exitCode);
@ -171,7 +171,7 @@ try {
if (argv.ios || argv.tvos) { if (argv.ios || argv.tvos) {
var iosTestType = argv.tvos ? 'tvOS' : 'iOS'; var iosTestType = argv.tvos ? 'tvOS' : 'iOS';
echo('Running the ' + iosTestType + 'app'); echo('Running the ' + iosTestType + ' app');
cd('ios'); cd('ios');
// Make sure we installed local version of react-native // Make sure we installed local version of react-native
if (!test('-e', path.join('EndToEndTest', path.basename(MARKER_IOS)))) { if (!test('-e', path.join('EndToEndTest', path.basename(MARKER_IOS)))) {
@ -193,22 +193,44 @@ try {
'response=$(curl --write-out %{http_code} --silent --output /dev/null localhost:8081/index.bundle?platform=ios&dev=true)', 'response=$(curl --write-out %{http_code} --silent --output /dev/null localhost:8081/index.bundle?platform=ios&dev=true)',
); );
echo(`Starting packager server, ${SERVER_PID}`); echo(`Starting packager server, ${SERVER_PID}`);
echo('Executing ' + iosTestType + ' e2e test'); echo('Executing ' + iosTestType + ' end-to-end test');
if ( if (
tryExecNTimes(() => { tryExecNTimes(() => {
exec('sleep 10s'); exec('sleep 10s');
let destination = 'platform=iOS Simulator,name=iPhone 5s,OS=11.4';
let sdk = 'iphonesimulator';
let scheme = 'EndToEndTest';
if (argv.tvos) { if (argv.tvos) {
return exec( destination = 'platform=tvOS Simulator,name=Apple TV,OS=11.4';
'xcodebuild -destination "platform=tvOS Simulator,name=Apple TV 1080p,OS=10.0" -scheme EndToEndTest-tvOS -sdk appletvsimulator test | xcpretty && exit ${PIPESTATUS[0]}', sdk = 'appletvsimulator';
).code; scheme = 'EndToEndTest-tvOS';
} else {
return exec(
'xcodebuild -destination "platform=iOS Simulator,name=iPhone 5s,OS=10.3.1" -scheme EndToEndTest -sdk iphonesimulator test | xcpretty && exit ${PIPESTATUS[0]}',
).code;
} }
return exec(
[
'xcodebuild',
'-destination',
`"${destination}"`,
'-scheme',
`"${scheme}"`,
'-sdk',
sdk,
'test',
].join(' ') +
' | ' +
[
'xcpretty',
'--report',
'junit',
'--output',
`"~/react-native/reports/junit/${iosTestType}-e2e/results.xml"`,
].join(' ') +
' && exit ${PIPESTATUS[0]}',
).code;
}, numberOfRetries) }, numberOfRetries)
) { ) {
echo('Failed to run ' + iosTestType + ' e2e tests'); echo('Failed to run ' + iosTestType + ' end-to-end tests');
echo('Most likely the code is broken'); echo('Most likely the code is broken');
exitCode = 1; exitCode = 1;
throw Error(exitCode); throw Error(exitCode);