Skip to content

Commit a2f15fb

Browse files
wmonkWilliam Monk
authored and
William Monk
committed
Update Tests For CI
1 parent 7329dd5 commit a2f15fb

9 files changed

+350
-73
lines changed

.travis.yml

+1-18
Original file line numberDiff line numberDiff line change
@@ -2,27 +2,10 @@
22
dist: trusty
33
language: node_js
44
node_js:
5-
- 8
65
- 9
76
cache:
87
directories:
98
- node_modules
10-
- packages/create-react-app/node_modules
11-
- packages/react-scripts/node_modules
129
install: true
1310
script:
14-
- 'if [ $TEST_SUITE = "simple" ]; then tasks/e2e-simple.sh; fi'
15-
- 'if [ $TEST_SUITE = "kitchensink" ]; then tasks/e2e-kitchensink.sh; fi'
16-
- 'if [ $TEST_SUITE = "old-node" ]; then tasks/e2e-old-node.sh; fi'
17-
# Disabled for the moment, since it requires additional work to be done.
18-
# - 'if [ $TEST_SUITE = "installs" ]; then tasks/e2e-installs.sh; fi'
19-
env:
20-
matrix:
21-
- TEST_SUITE=simple
22-
- TEST_SUITE=kitchensink
23-
# See comment above
24-
# - TEST_SUITE=installs
25-
matrix:
26-
include:
27-
- node_js: 6
28-
env: TEST_SUITE=kitchensink
11+
- 'tasks/e2e-simple.sh'

tasks/cra.js

+109
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,109 @@
1+
#!/usr/bin/env node
2+
/**
3+
* Copyright (c) 2015-present, Facebook, Inc.
4+
*
5+
* This source code is licensed under the MIT license found in the
6+
* LICENSE file in the root directory of this source tree.
7+
*/
8+
9+
'use strict';
10+
11+
const fs = require('fs');
12+
const path = require('path');
13+
const cp = require('child_process');
14+
15+
const cleanup = () => {
16+
console.log('Cleaning up.');
17+
// Uncomment when snapshot testing is enabled by default:
18+
// rm ./template/src/__snapshots__/App.test.js.snap
19+
};
20+
21+
const handleExit = () => {
22+
cleanup();
23+
console.log('Exiting without error.');
24+
process.exit();
25+
};
26+
27+
const handleError = e => {
28+
console.error('ERROR! An error was encountered while executing\n', e);
29+
cleanup();
30+
console.log('Exiting with error.');
31+
process.exit(1);
32+
};
33+
34+
process.on('SIGINT', handleExit);
35+
process.on('uncaughtException', handleError);
36+
37+
// ******************************************************************************
38+
// Pack react- scripts so we can verify they work.
39+
// ******************************************************************************
40+
41+
const rootDir = path.join(__dirname, '..');
42+
const reactScriptsDir = path.join(rootDir, 'packages', 'react-scripts');
43+
const packageJsonPath = path.join(reactScriptsDir, 'package.json');
44+
const packageJsonOrigPath = path.join(reactScriptsDir, 'package.json.orig');
45+
46+
// Install all our packages
47+
const lernaPath = path.join(rootDir, 'node_modules', '.bin', 'lerna');
48+
cp.execSync(`${lernaPath} bootstrap`, {
49+
cwd: rootDir,
50+
stdio: 'inherit',
51+
});
52+
53+
// Save package.json because we're going to touch it
54+
fs.writeFileSync(packageJsonOrigPath, fs.readFileSync(packageJsonPath));
55+
56+
// Replace own dependencies (those in the`packages` dir) with the local paths
57+
// of those packages
58+
const replaceOwnDepsPath = path.join(__dirname, 'replace-own-deps.js');
59+
cp.execSync(`node ${replaceOwnDepsPath}`, { stdio: 'inherit' });
60+
61+
// Finally, pack react-scripts
62+
// Don't redirect stdio as we want to capture the output that will be returned
63+
// from execSync(). In this case it will be the .tgz filename.
64+
const scriptsFileName = cp
65+
.execSync(`npm pack`, { cwd: reactScriptsDir })
66+
.toString()
67+
.trim();
68+
const scriptsPath = path.join(
69+
rootDir,
70+
'packages',
71+
'react-scripts',
72+
scriptsFileName
73+
);
74+
75+
// Restore package.json
76+
fs.unlinkSync(packageJsonPath);
77+
fs.writeFileSync(packageJsonPath, fs.readFileSync(packageJsonOrigPath));
78+
fs.unlinkSync(packageJsonOrigPath);
79+
80+
// ******************************************************************************
81+
// Now that we have packed them, call the global CLI.
82+
// ******************************************************************************
83+
84+
// If Yarn is installed, clean its cache because it may have cached react-scripts
85+
try {
86+
cp.execSync('yarn cache clean');
87+
} catch (e) {
88+
// We can safely ignore this as the user doesn't have yarn installed
89+
}
90+
91+
const args = process.argv.slice(2);
92+
93+
// Now run the CRA command
94+
const craScriptPath = path.join(
95+
rootDir,
96+
'packages',
97+
'create-react-app',
98+
'index.js'
99+
);
100+
cp.execSync(
101+
`node ${craScriptPath} --scripts-version="${scriptsPath}" ${args.join(' ')}`,
102+
{
103+
cwd: rootDir,
104+
stdio: 'inherit',
105+
}
106+
);
107+
108+
// Cleanup
109+
handleExit();

tasks/e2e-installs.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ root_path=$PWD
7575
if hash npm 2>/dev/null
7676
then
7777
npm i -g npm@latest
78-
npm cache verify
78+
npm cache clean || npm cache verify
7979
fi
8080

8181
# Bootstrap monorepo

tasks/e2e-kitchensink.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ root_path=$PWD
6767
if hash npm 2>/dev/null
6868
then
6969
npm i -g npm@latest
70-
npm cache verify
70+
npm cache clean || npm cache verify
7171
fi
7272

7373
# Bootstrap monorepo

tasks/e2e-old-node.sh

+61
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
#!/bin/bash
2+
# Copyright (c) 2015-present, Facebook, Inc.
3+
#
4+
# This source code is licensed under the MIT license found in the
5+
# LICENSE file in the root directory of this source tree.
6+
7+
# ******************************************************************************
8+
# This is an end-to-end test intended to run on CI.
9+
# You can also run it locally but it's slow.
10+
# ******************************************************************************
11+
12+
# Start in tasks/ even if run from root directory
13+
cd "$(dirname "$0")"
14+
15+
temp_app_path=`mktemp -d 2>/dev/null || mktemp -d -t 'temp_app_path'`
16+
17+
function cleanup {
18+
echo 'Cleaning up.'
19+
cd "$root_path"
20+
rm -rf $temp_app_path
21+
}
22+
23+
# Error messages are redirected to stderr
24+
function handle_error {
25+
echo "$(basename $0): ERROR! An error was encountered executing line $1." 1>&2;
26+
cleanup
27+
echo 'Exiting with error.' 1>&2;
28+
exit 1
29+
}
30+
31+
function handle_exit {
32+
cleanup
33+
echo 'Exiting without error.' 1>&2;
34+
exit
35+
}
36+
37+
# Exit the script with a helpful error message when any error is encountered
38+
trap 'set +x; handle_error $LINENO $BASH_COMMAND' ERR
39+
40+
# Cleanup before exit on any termination signal
41+
trap 'set +x; handle_exit' SIGQUIT SIGTERM SIGINT SIGKILL SIGHUP
42+
43+
# Echo every command being executed
44+
set -x
45+
46+
# Go to root
47+
cd ..
48+
root_path=$PWD
49+
50+
# We need to install create-react-app deps to test it
51+
cd "$root_path"/packages/create-react-app
52+
npm install
53+
cd "$root_path"
54+
55+
# If the node version is < 6, the script should just give an error.
56+
cd $temp_app_path
57+
err_output=`node "$root_path"/packages/create-react-app/index.js test-node-version 2>&1 > /dev/null || echo ''`
58+
[[ $err_output =~ You\ are\ running\ Node ]] && exit 0 || exit 1
59+
60+
# Cleanup
61+
cleanup

tasks/e2e-simple.sh

+3-53
Original file line numberDiff line numberDiff line change
@@ -63,23 +63,10 @@ set -x
6363
cd ..
6464
root_path=$PWD
6565

66-
# Make sure we don't introduce accidental references to PATENTS.
67-
EXPECTED='packages/react-error-overlay/fixtures/bundle.mjs
68-
packages/react-error-overlay/fixtures/bundle.mjs.map
69-
packages/react-error-overlay/fixtures/bundle_u.mjs
70-
packages/react-error-overlay/fixtures/bundle_u.mjs.map
71-
tasks/e2e-simple.sh'
72-
ACTUAL=$(git grep -l PATENTS)
73-
if [ "$EXPECTED" != "$ACTUAL" ]; then
74-
echo "PATENTS crept into some new files?"
75-
diff -u <(echo "$EXPECTED") <(echo "$ACTUAL") || true
76-
exit 1
77-
fi
78-
7966
if hash npm 2>/dev/null
8067
then
8168
npm i -g npm@latest
82-
npm cache verify
69+
npm cache clean || npm cache verify
8370
fi
8471

8572
# Bootstrap monorepo
@@ -98,48 +85,14 @@ yarn config set registry "$custom_registry_url"
9885
# Login so we can publish packages
9986
npx [email protected] -u user -p password -e [email protected] -r "$custom_registry_url" --quotes
10087

101-
# Lint own code
102-
./node_modules/.bin/eslint --max-warnings 0 packages/babel-preset-react-app/
103-
./node_modules/.bin/eslint --max-warnings 0 packages/create-react-app/
104-
./node_modules/.bin/eslint --max-warnings 0 packages/eslint-config-react-app/
105-
./node_modules/.bin/eslint --max-warnings 0 packages/react-dev-utils/
106-
./node_modules/.bin/eslint --max-warnings 0 packages/react-scripts/
107-
cd packages/react-error-overlay/
108-
./node_modules/.bin/eslint --max-warnings 0 src/
109-
yarn test
110-
11188
if [ $APPVEYOR != 'True' ]; then
11289
# Flow started hanging on AppVeyor after we moved to Yarn Workspaces :-(
11390
yarn flow
11491
fi
11592

116-
cd ../..
117-
cd packages/react-dev-utils/
118-
yarn test
119-
cd ../..
120-
12193
# ******************************************************************************
122-
# First, test the create-react-app development environment.
123-
# This does not affect our users but makes sure we can develop it.
94+
# Publish to local registry
12495
# ******************************************************************************
125-
126-
# Test local build command
127-
yarn build
128-
# Check for expected output
129-
exists build/*.html
130-
exists build/static/js/*.js
131-
exists build/static/css/*.css
132-
exists build/static/media/*.svg
133-
exists build/favicon.ico
134-
135-
# Run tests with CI flag
136-
CI=true yarn test
137-
# Uncomment when snapshot testing is enabled by default:
138-
# exists template/src/__snapshots__/App.test.js.snap
139-
140-
# Test local start command
141-
yarn start --smoke-test
142-
14396
git clean -df
14497
./tasks/publish.sh --yes --force-publish=* --skip-git --cd-version=prerelease --exact --npm-tag=latest
14598

@@ -151,13 +104,10 @@ git clean -df
151104
cd $temp_app_path
152105
npx create-react-app test-app --scripts-version=react-scripts-ts
153106

154-
# TODO: verify we installed prerelease
155-
156107
# ******************************************************************************
157108
# Now that we used create-react-app to create an app depending on react-scripts,
158109
# let's make sure all npm scripts are in the working state.
159110
# ******************************************************************************
160-
161111
function verify_env_url {
162112
# Backup package.json because we're going to make it dirty
163113
cp package.json package.json.orig
@@ -286,4 +236,4 @@ verify_env_url
286236
verify_module_scope
287237

288238
# Cleanup
289-
cleanup
239+
cleanup

0 commit comments

Comments
 (0)