e2e-installs.sh 7.53 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
# CLI and app temporary locations
# http://unix.stackexchange.com/a/84980
temp_app_path=`mktemp -d 2>/dev/null || mktemp -d -t 'temp_app_path'`

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

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

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

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

46
47
48
49
50
51
52
53
54
55
56
# 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
}

57
58
59
60
61
# 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
62
63
64
65

# Echo every command being executed
set -x

Dan Abramov's avatar
Dan Abramov committed
66
# Go to root
Christopher Chedeau's avatar
Christopher Chedeau committed
67
cd ..
Dan Abramov's avatar
Dan Abramov committed
68
root_path=$PWD
69

70
71
72
73
74
75
if hash npm 2>/dev/null
then
  npm i -g npm@latest
  npm cache clean || npm cache verify
fi

76
# Prevent bootstrap, we only want top-level dependencies
Joe Haddad's avatar
Joe Haddad committed
77
cp package.json package.json.bak
78
grep -v "postinstall" package.json > temp && mv temp package.json
79
yarn
Joe Haddad's avatar
Joe Haddad committed
80
mv package.json.bak package.json
81

Joe Haddad's avatar
Joe Haddad committed
82
# We removed the postinstall, so do it manually
83
node bootstrap.js
Joe Haddad's avatar
Joe Haddad committed
84

85
cd packages/react-error-overlay/
86
yarn run build:prod
87
88
cd ../..

Dan Abramov's avatar
Dan Abramov committed
89
# ******************************************************************************
90
# First, publish the monorepo.
Dan Abramov's avatar
Dan Abramov committed
91
92
# ******************************************************************************

93
94
95
96
97
98
99
100
101
102
103
104
# Start local registry
tmp_registry_log=`mktemp`
nohup npx verdaccio@2.7.2 &>$tmp_registry_log &
# Wait for `verdaccio` to boot
grep -q 'http address' <(tail -f $tmp_registry_log)

# Set registry to local registry
npm set registry http://localhost:4873
yarn config set registry http://localhost:4873

# Login so we can publish packages
npx npm-cli-login@0.0.10 -u user -p password -e user@example.com -r http://localhost:4873 --quotes
Christopher Chedeau's avatar
Christopher Chedeau committed
105

106
107
108
# Publish the monorepo
git clean -f
./tasks/release.sh --yes --force-publish=* --skip-git --cd-version=prerelease --exact --npm-tag=latest
Christopher Chedeau's avatar
Christopher Chedeau committed
109

110
# ******************************************************************************
Dan Abramov's avatar
Dan Abramov committed
111
# Test --scripts-version with a version number
112
113
# ******************************************************************************

114
cd "$temp_app_path"
115
npx create-react-app --scripts-version=1.0.17 test-app-version-number
116
117
118
cd test-app-version-number

# Check corresponding scripts version is installed.
119
exists node_modules/react-scripts
120
grep '"version": "1.0.17"' node_modules/react-scripts/package.json
121
checkDependencies
122

123
124
125
126
127
# ******************************************************************************
# Test --use-npm flag
# ******************************************************************************

cd "$temp_app_path"
128
npx create-react-app --use-npm --scripts-version=1.0.17 test-use-npm-flag
129
130
131
132
133
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"
134
grep '"version": "1.0.17"' node_modules/react-scripts/package.json
135
136
checkDependencies

137
# ******************************************************************************
Dan Abramov's avatar
Dan Abramov committed
138
# Test --scripts-version with a tarball url
139
140
# ******************************************************************************

141
cd "$temp_app_path"
142
npx create-react-app --scripts-version=https://registry.npmjs.org/react-scripts/-/react-scripts-1.0.17.tgz test-app-tarball-url
143
144
145
cd test-app-tarball-url

# Check corresponding scripts version is installed.
146
exists node_modules/react-scripts
147
grep '"version": "1.0.17"' node_modules/react-scripts/package.json
148
checkDependencies
149
150

# ******************************************************************************
Dan Abramov's avatar
Dan Abramov committed
151
# Test --scripts-version with a custom fork of react-scripts
152
153
# ******************************************************************************

154
cd "$temp_app_path"
155
npx create-react-app --scripts-version=react-scripts-fork test-app-fork
156
157
158
cd test-app-fork

# Check corresponding scripts version is installed.
159
exists node_modules/react-scripts-fork
160

161
162
163
164
# ******************************************************************************
# Test project folder is deleted on failing package installation
# ******************************************************************************

165
cd "$temp_app_path"
166
# we will install a non-existing package to simulate a failed installataion.
167
npx create-react-app --scripts-version=`date +%s` test-app-should-not-exist || true
168
# confirm that the project folder was deleted
169
test ! -d test-app-should-not-exist
170
171
172
173
174

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

175
cd "$temp_app_path"
176
177
178
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.
179
npx create-react-app --scripts-version=`date +%s` test-app-should-remain || true
180
181
182
183
184
185
186
# 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

187
188
189
190
191
192
# ******************************************************************************
# 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
193
npx create-react-app --scripts-version=$temp_app_path/enoah-scripts-0.9.0.tgz test-app-scoped-fork-tgz
194
195
196
197
198
cd test-app-scoped-fork-tgz

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

199
200
201
202
# ******************************************************************************
# Test nested folder path as the project name
# ******************************************************************************

203
# Testing a path that exists
204
cd "$temp_app_path"
205
206
207
mkdir test-app-nested-paths-t1
cd test-app-nested-paths-t1
mkdir -p test-app-nested-paths-t1/aa/bb/cc/dd
208
npx create-react-app test-app-nested-paths-t1/aa/bb/cc/dd
209
cd test-app-nested-paths-t1/aa/bb/cc/dd
210
yarn start --smoke-test
211

212
# Testing a path that does not exist
213
cd "$temp_app_path"
214
npx create-react-app test-app-nested-paths-t2/aa/bb/cc/dd
215
cd test-app-nested-paths-t2/aa/bb/cc/dd
216
yarn start --smoke-test
217

218
# Testing a path that is half exists
219
cd "$temp_app_path"
220
mkdir -p test-app-nested-paths-t3/aa
221
npx create-react-app test-app-nested-paths-t3/aa/bb/cc/dd
222
cd test-app-nested-paths-t3/aa/bb/cc/dd
223
yarn start --smoke-test
224

Christopher Chedeau's avatar
Christopher Chedeau committed
225
# Cleanup
226
cleanup