e2e-installs.sh 6.88 KB
Newer Older
1
#!/bin/bash
Christopher Chedeau's avatar
Christopher Chedeau committed
2
3
4
5
6
7
8
# Copyright (c) 2015-present, Facebook, Inc.
# All rights reserved.
#
# This source code is licensed under the BSD-style license found in the
# LICENSE file in the root directory of this source tree. An additional grant
# of patent rights can be found in the PATENTS file in the same directory.

9
10
11
12
13
# ******************************************************************************
# 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
14
# Start in tasks/ even if run from root directory
Christopher Chedeau's avatar
Christopher Chedeau committed
15
16
cd "$(dirname "$0")"

17
18
19
20
21
# 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'`

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

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

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

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

49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# 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


  if ! awk '/"devDependencies": {/{y=1;next}/},/{y=0; next}y' package.json | \
  grep -v -q -E '^\s*"react(-dom|-scripts)?"'; then
   echo "Dev Dependencies are correct"
  else
   echo "There are extraneous devDependencies in package.json"
   exit 1
  fi
}

69
70
71
72
function create_react_app {
  node "$temp_cli_path"/node_modules/create-react-app/index.js $*
}

73
74
75
76
77
# 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
78
79
80
81

# Echo every command being executed
set -x

Dan Abramov's avatar
Dan Abramov committed
82
# Go to root
Christopher Chedeau's avatar
Christopher Chedeau committed
83
cd ..
Dan Abramov's avatar
Dan Abramov committed
84
root_path=$PWD
85

86
87
npm install

Ville Immonen's avatar
Ville Immonen committed
88
89
90
if [ "$USE_YARN" = "yes" ]
then
  # Install Yarn so that the test can use it to install packages.
Dan Abramov's avatar
Dan Abramov committed
91
  npm install -g yarn
92
  yarn cache clean
Ville Immonen's avatar
Ville Immonen committed
93
94
fi

Dan Abramov's avatar
Dan Abramov committed
95
# ******************************************************************************
96
# First, pack and install create-react-app.
Dan Abramov's avatar
Dan Abramov committed
97
98
# ******************************************************************************

Dan Abramov's avatar
Dan Abramov committed
99
# Pack CLI
100
cd "$root_path"/packages/create-react-app
Christopher Chedeau's avatar
Christopher Chedeau committed
101
102
cli_path=$PWD/`npm pack`

Dan Abramov's avatar
Dan Abramov committed
103
# Install the CLI in a temporary location
104
105
cd "$temp_cli_path"
npm install "$cli_path"
Christopher Chedeau's avatar
Christopher Chedeau committed
106

107
# ******************************************************************************
Dan Abramov's avatar
Dan Abramov committed
108
# Test --scripts-version with a version number
109
110
# ******************************************************************************

111
cd "$temp_app_path"
112
113
114
115
create_react_app --scripts-version=0.4.0 test-app-version-number
cd test-app-version-number

# Check corresponding scripts version is installed.
116
exists node_modules/react-scripts
117
grep '"version": "0.4.0"' node_modules/react-scripts/package.json
118
checkDependencies
119
120

# ******************************************************************************
Dan Abramov's avatar
Dan Abramov committed
121
# Test --scripts-version with a tarball url
122
123
# ******************************************************************************

124
cd "$temp_app_path"
125
126
127
128
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.
129
exists node_modules/react-scripts
130
grep '"version": "0.4.0"' node_modules/react-scripts/package.json
131
checkDependencies
132
133

# ******************************************************************************
Dan Abramov's avatar
Dan Abramov committed
134
# Test --scripts-version with a custom fork of react-scripts
135
136
# ******************************************************************************

137
cd "$temp_app_path"
138
139
140
141
create_react_app --scripts-version=react-scripts-fork test-app-fork
cd test-app-fork

# Check corresponding scripts version is installed.
142
exists node_modules/react-scripts-fork
143

144
145
146
147
# ******************************************************************************
# Test project folder is deleted on failing package installation
# ******************************************************************************

148
cd "$temp_app_path"
149
150
151
# 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
152
test ! -d test-app-should-not-exist
153
154
155
156
157

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

158
cd "$temp_app_path"
159
160
161
162
163
164
165
166
167
168
169
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

170
171
172
173
174
175
176
177
178
179
180
181
# ******************************************************************************
# 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

182
183
184
185
# ******************************************************************************
# Test nested folder path as the project name
# ******************************************************************************

186
# Testing a path that exists
187
cd "$temp_app_path"
188
189
190
191
192
193
194
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

195
# Testing a path that does not exist
196
cd "$temp_app_path"
197
198
199
200
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

201
# Testing a path that is half exists
202
cd "$temp_app_path"
203
204
205
206
207
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
208
# Cleanup
209
cleanup