e2e-installs.sh 8.17 KB
Newer Older
1
#!/bin/bash
Christopher Chedeau's avatar
Christopher Chedeau committed
2
# Copyright (c) 2015-present, Facebook, Inc.
Joe Haddad's avatar
Joe Haddad committed
3
4
5
#
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.
Christopher Chedeau's avatar
Christopher Chedeau committed
6

7
8
9
10
11
# ******************************************************************************
# This is an end-to-end test intended to run on CI.
# You can also run it locally but it's slow.
# ******************************************************************************

Dan Abramov's avatar
Dan Abramov committed
12
# Start in tasks/ even if run from root directory
Christopher Chedeau's avatar
Christopher Chedeau committed
13
14
cd "$(dirname "$0")"

15
16
17
18
19
# CLI and app temporary locations
# http://unix.stackexchange.com/a/84980
temp_cli_path=`mktemp -d 2>/dev/null || mktemp -d -t 'temp_cli_path'`
temp_app_path=`mktemp -d 2>/dev/null || mktemp -d -t 'temp_app_path'`

20
21
function cleanup {
  echo 'Cleaning up.'
22
23
  cd "$root_path"
  rm -rf "$temp_cli_path" "$temp_app_path"
24
25
}

Dan Abramov's avatar
Dan Abramov committed
26
# Error messages are redirected to stderr
27
function handle_error {
Dan Abramov's avatar
Dan Abramov committed
28
  echo "$(basename $0): ERROR! An error was encountered executing line $1." 1>&2;
Dan Abramov's avatar
Dan Abramov committed
29
  cleanup
30
  echo 'Exiting with error.' 1>&2;
31
32
33
34
35
  exit 1
}

function handle_exit {
  cleanup
36
  echo 'Exiting without error.' 1>&2;
37
38
39
  exit
}

40
41
42
43
44
45
46
# Check for the existence of one or more files.
function exists {
  for f in $*; do
    test -e "$f"
  done
}

47
48
49
50
51
52
53
54
55
56
57
# Check for accidental dependencies in package.json
function checkDependencies {
  if ! awk '/"dependencies": {/{y=1;next}/},/{y=0; next}y' package.json | \
  grep -v -q -E '^\s*"react(-dom|-scripts)?"'; then
   echo "Dependencies are correct"
  else
   echo "There are extraneous dependencies in package.json"
   exit 1
  fi
}

58
59
60
61
function create_react_app {
  node "$temp_cli_path"/node_modules/create-react-app/index.js $*
}

62
63
64
65
66
# Exit the script with a helpful error message when any error is encountered
trap 'set +x; handle_error $LINENO $BASH_COMMAND' ERR

# Cleanup before exit on any termination signal
trap 'set +x; handle_exit' SIGQUIT SIGTERM SIGINT SIGKILL SIGHUP
Christopher Chedeau's avatar
Christopher Chedeau committed
67
68
69
70

# Echo every command being executed
set -x

Dan Abramov's avatar
Dan Abramov committed
71
# Go to root
Christopher Chedeau's avatar
Christopher Chedeau committed
72
cd ..
Dan Abramov's avatar
Dan Abramov committed
73
root_path=$PWD
74

75
76
77
78
79
80
# Clear cache to avoid issues with incorrect packages being used
if hash yarnpkg 2>/dev/null
then
  # AppVeyor uses an old version of yarn.
  # Once updated to 0.24.3 or above, the workaround can be removed
  # and replaced with `yarnpkg cache clean`
81
  # Issues:
82
83
84
85
86
87
88
89
90
91
92
93
94
95
  #    https://github.com/yarnpkg/yarn/issues/2591
  #    https://github.com/appveyor/ci/issues/1576
  #    https://github.com/facebookincubator/create-react-app/pull/2400
  # When removing workaround, you may run into
  #    https://github.com/facebookincubator/create-react-app/issues/2030
  case "$(uname -s)" in
    *CYGWIN*|MSYS*|MINGW*) yarn=yarn.cmd;;
    *) yarn=yarnpkg;;
  esac
  $yarn cache clean
fi

if hash npm 2>/dev/null
then
96
  # npm 5 is too buggy right now
Dan Abramov's avatar
Dan Abramov committed
97
  if [ $(npm -v | head -c 1) -eq 5 ]; then
98
    npm i -g npm@^4.x
Dan Abramov's avatar
Dan Abramov committed
99
  fi;
100
  npm cache clean || npm cache verify
101
102
fi

103
# Prevent bootstrap, we only want top-level dependencies
Joe Haddad's avatar
Joe Haddad committed
104
cp package.json package.json.bak
105
grep -v "postinstall" package.json > temp && mv temp package.json
106
npm install
Joe Haddad's avatar
Joe Haddad committed
107
mv package.json.bak package.json
108

Ville Immonen's avatar
Ville Immonen committed
109
110
111
if [ "$USE_YARN" = "yes" ]
then
  # Install Yarn so that the test can use it to install packages.
Dan Abramov's avatar
Dan Abramov committed
112
  npm install -g yarn
113
  yarn cache clean
Ville Immonen's avatar
Ville Immonen committed
114
115
fi

Joe Haddad's avatar
Joe Haddad committed
116
# We removed the postinstall, so do it manually
117
node bootstrap.js
Joe Haddad's avatar
Joe Haddad committed
118

119
120
121
122
cd packages/react-error-overlay/
npm run build:prod
cd ../..

Dan Abramov's avatar
Dan Abramov committed
123
# ******************************************************************************
124
# First, pack and install create-react-app.
Dan Abramov's avatar
Dan Abramov committed
125
126
# ******************************************************************************

Dan Abramov's avatar
Dan Abramov committed
127
# Pack CLI
128
cd "$root_path"/packages/create-react-app
Christopher Chedeau's avatar
Christopher Chedeau committed
129
130
cli_path=$PWD/`npm pack`

Dan Abramov's avatar
Dan Abramov committed
131
# Install the CLI in a temporary location
132
133
cd "$temp_cli_path"
npm install "$cli_path"
Christopher Chedeau's avatar
Christopher Chedeau committed
134

135
# ******************************************************************************
Dan Abramov's avatar
Dan Abramov committed
136
# Test --scripts-version with a version number
137
138
# ******************************************************************************

139
cd "$temp_app_path"
140
141
142
143
create_react_app --scripts-version=0.4.0 test-app-version-number
cd test-app-version-number

# Check corresponding scripts version is installed.
144
exists node_modules/react-scripts
145
grep '"version": "0.4.0"' node_modules/react-scripts/package.json
146
checkDependencies
147

148
149
150
151
152
153
154
155
156
157
158
159
160
161
# ******************************************************************************
# Test --use-npm flag
# ******************************************************************************

cd "$temp_app_path"
create_react_app --use-npm --scripts-version=0.4.0 test-use-npm-flag
cd test-use-npm-flag

# Check corresponding scripts version is installed.
exists node_modules/react-scripts
[ ! -e "yarn.lock" ] && echo "yarn.lock correctly does not exist"
grep '"version": "0.4.0"' node_modules/react-scripts/package.json
checkDependencies

162
# ******************************************************************************
Dan Abramov's avatar
Dan Abramov committed
163
# Test --scripts-version with a tarball url
164
165
# ******************************************************************************

166
cd "$temp_app_path"
167
168
169
170
create_react_app --scripts-version=https://registry.npmjs.org/react-scripts/-/react-scripts-0.4.0.tgz test-app-tarball-url
cd test-app-tarball-url

# Check corresponding scripts version is installed.
171
exists node_modules/react-scripts
172
grep '"version": "0.4.0"' node_modules/react-scripts/package.json
173
checkDependencies
174
175

# ******************************************************************************
Dan Abramov's avatar
Dan Abramov committed
176
# Test --scripts-version with a custom fork of react-scripts
177
178
# ******************************************************************************

179
cd "$temp_app_path"
180
181
182
183
create_react_app --scripts-version=react-scripts-fork test-app-fork
cd test-app-fork

# Check corresponding scripts version is installed.
184
exists node_modules/react-scripts-fork
185

186
187
188
189
# ******************************************************************************
# Test project folder is deleted on failing package installation
# ******************************************************************************

190
cd "$temp_app_path"
191
192
193
# we will install a non-existing package to simulate a failed installataion.
create_react_app --scripts-version=`date +%s` test-app-should-not-exist || true
# confirm that the project folder was deleted
194
test ! -d test-app-should-not-exist
195
196
197
198
199

# ******************************************************************************
# Test project folder is not deleted when creating app over existing folder
# ******************************************************************************

200
cd "$temp_app_path"
201
202
203
204
205
206
207
208
209
210
211
mkdir test-app-should-remain
echo '## Hello' > ./test-app-should-remain/README.md
# we will install a non-existing package to simulate a failed installataion.
create_react_app --scripts-version=`date +%s` test-app-should-remain || true
# confirm the file exist
test -e test-app-should-remain/README.md
# confirm only README.md is the only file in the directory
if [ "$(ls -1 ./test-app-should-remain | wc -l | tr -d '[:space:]')" != "1" ]; then
  false
fi

212
213
214
215
216
217
218
219
220
221
222
223
# ******************************************************************************
# Test --scripts-version with a scoped fork tgz of react-scripts
# ******************************************************************************

cd $temp_app_path
curl "https://registry.npmjs.org/@enoah_netzach/react-scripts/-/react-scripts-0.9.0.tgz" -o enoah-scripts-0.9.0.tgz
create_react_app --scripts-version=$temp_app_path/enoah-scripts-0.9.0.tgz test-app-scoped-fork-tgz
cd test-app-scoped-fork-tgz

# Check corresponding scripts version is installed.
exists node_modules/@enoah_netzach/react-scripts

224
225
226
227
# ******************************************************************************
# Test nested folder path as the project name
# ******************************************************************************

228
# Testing a path that exists
229
cd "$temp_app_path"
230
231
232
233
234
235
236
mkdir test-app-nested-paths-t1
cd test-app-nested-paths-t1
mkdir -p test-app-nested-paths-t1/aa/bb/cc/dd
create_react_app test-app-nested-paths-t1/aa/bb/cc/dd
cd test-app-nested-paths-t1/aa/bb/cc/dd
npm start -- --smoke-test

237
# Testing a path that does not exist
238
cd "$temp_app_path"
239
240
241
242
create_react_app test-app-nested-paths-t2/aa/bb/cc/dd
cd test-app-nested-paths-t2/aa/bb/cc/dd
npm start -- --smoke-test

243
# Testing a path that is half exists
244
cd "$temp_app_path"
245
246
247
248
249
mkdir -p test-app-nested-paths-t3/aa
create_react_app test-app-nested-paths-t3/aa/bb/cc/dd
cd test-app-nested-paths-t3/aa/bb/cc/dd
npm start -- --smoke-test

Christopher Chedeau's avatar
Christopher Chedeau committed
250
# Cleanup
251
cleanup