forked from facebook/react-native
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test-manual-e2e.sh
executable file
·235 lines (190 loc) · 6.51 KB
/
test-manual-e2e.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
#!/bin/bash
# Copyright (c) Meta Platforms, Inc. and affiliates.
#
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.
RED="\033[0;31m"
GREEN="\033[0;32m"
BLUE="\033[0;35m"
ENDCOLOR="\033[0m"
error() {
echo -e "$RED""$*""$ENDCOLOR"
popd >/dev/null || exit
exit 1
}
success() {
echo -e "$GREEN""$*""$ENDCOLOR"
}
info() {
echo -e "$BLUE""$*""$ENDCOLOR"
}
# Ensures commands are executed from the repo root folder
dir_absolute_path=$( cd "$(dirname "${BASH_SOURCE[0]}")" || exit ; pwd -P )
pushd "$dir_absolute_path/../" >/dev/null || exit
repo_root=$(pwd)
selected_platform=""
selected_vm=""
PACKAGE_VERSION=""
test_android(){
generate_maven_artifacts
if [ "$1" == "1" ]; then
test_android_hermes
elif [ "$1" == "2" ]; then
test_android_jsc
fi
}
generate_maven_artifacts(){
rm -rf android
./gradlew :ReactAndroid:installArchives || error "Couldn't generate artifacts"
success "Generated artifacts for Maven"
}
test_android_hermes(){
./gradlew :packages:rn-tester:android:app:installHermesDebug || error "Couldn't build RNTester Android"
info "Press any key to run RNTester on Android with Hermes enabled"
info ""
read -r -n 1
adb shell am start -n com.facebook.react.uiapp/.RNTesterActivity
}
test_android_jsc(){
./gradlew :packages:rn-tester:android:app:installJscDebug || error "Couldn't build RNTester Android"
info "Press any key to run RNTester in an already running Android emulator/device"
info ""
read -r -n 1
adb shell am start -n com.facebook.react.uiapp/.RNTesterActivity
}
test_ios(){
if [ "$1" == "1" ]; then
test_ios_hermes
elif [ "$1" == "2" ]; then
test_ios_jsc
fi
}
test_ios_hermes(){
success "About to test iOS Hermes... "
success "Installing CocoaPods dependencies..."
rm -rf packages/rn-tester/Pods
(cd packages/rn-tester && USE_HERMES=1 bundle exec pod install)
info "Press any key to open the workspace in Xcode, then build and test manually."
info ""
read -r -n 1
open "packages/rn-tester/RNTesterPods.xcworkspace"
}
test_ios_jsc(){
success "About to test iOS JSC... "
success "Installing CocoaPods dependencies..."
rm -rf packages/rn-tester/Pods
(cd packages/rn-tester && bundle exec pod install)
info "Press any key to open the workspace in Xcode, then build and test manually."
info ""
read -r -n 1
open "packages/rn-tester/RNTesterPods.xcworkspace"
}
kill_packagers(){
success "Killing any running packagers"
lsof -i :8081 | grep LISTEN
lsof -i :8081 | grep LISTEN | /usr/bin/awk '{print $2}' | xargs kill
}
init_template_app(){
kill_packagers
PACKAGE_VERSION=$(cat package.json \
| grep version \
| head -1 \
| awk -F: '{ print $2 }' \
| sed 's/[",]//g' \
| tr -d '[[:space:]]')
success "Preparing version $PACKAGE_VERSION"
npm pack
TIMESTAMP=$(date +%s)
PACKAGE=$(pwd)/react-native-$PACKAGE_VERSION-$TIMESTAMP.tgz
success "Package bundled ($PACKAGE)"
mv "$(pwd)/react-native-$PACKAGE_VERSION.tgz" "$PACKAGE"
node scripts/set-rn-template-version.js "file:$PACKAGE"
success "React Native version changed in the template"
project_name="RNTestProject"
pushd /tmp/ >/dev/null || exit
rm -rf "$project_name"
node "$repo_root/cli.js" init "$project_name" --template "$repo_root"
info "Double checking the versions in package.json are correct:"
grep "\"react-native\": \".*react-native-$PACKAGE_VERSION-$TIMESTAMP.tgz\"" "/tmp/${project_name}/package.json" || error "Incorrect version number in /tmp/${project_name}/package.json"
grep -E "com.facebook.react:react-native:\\+" "${project_name}/android/app/build.gradle" || error "Dependency in /tmp/${project_name}/android/app/build.gradle must be com.facebook.react:react-native:+"
success "New sample project generated at /tmp/${project_name}"
popd >/dev/null || exit
}
test_template_app(){
if [ "$PACKAGE_VERSION" == "" ]; then
init_template_app
fi
pushd "/tmp/${project_name}" >/dev/null || exit
if [ "$selected_platform" == "1" ]; then
info "Test the following on Android:"
info " - Disable Fast Refresh. It might be enabled from last time (the setting is stored on the device)"
info " - Verify 'Reload JS' works"
info ""
info "Press any key to run the sample in Android emulator/device"
info ""
read -r -n 1
npx react-native run-android
elif [ "$selected_platform" == "2" ]; then
info "Test the following on iOS:"
info " - Disable Fast Refresh. It might be enabled from last time (the setting is stored on the device)"
info " - Verify 'Reload JS' works"
info " - Test Chrome debugger by adding breakpoints and reloading JS. We don't have tests for Chrome debugging."
info " - Disable Chrome debugging."
info " - Enable Fast Refresh, change a file (index.js) and save. The UI should refresh."
info " - Disable Fast Refresh."
info ""
info "Press any key to open the project in Xcode"
info ""
read -r -n 1
open "ios/${project_name}.xcworkspace"
fi
popd >/dev/null || exit
}
show_menu(){
echo "Which app do you want to test?
1 - RNTester
2 - A new RN app using the template"
read -p "> " selected_app
echo "What platform do you want to test?
1 - Android
2 - iOS"
read -p "> " selected_platform
if [ "$selected_app" == "1" ]; then
echo "What VM are you testing?
1 - Hermes
2 - JSC"
read -p "> " selected_vm
fi
}
handle_menu_input(){
if [ "$selected_app" == "1" ]; then
info "Start the packager in another terminal by running 'npm start' from the root"
info "and then press any key."
info ""
read -r -n 1
if [ "$selected_platform" == "1" ]; then
test_android "$selected_vm"
elif [ "$selected_platform" == "2" ]; then
test_ios "$selected_vm"
fi
elif [ "$selected_app" == "2" ]; then
test_template_app
fi
read -p "Would you like to test something else? (Y/N)" confirm
if [ "$confirm" == "${confirm#[Yy]}" ]; then
info "Next steps:"
info "https://github.com/facebook/react-native/wiki/Release-Process"
popd >/dev/null || exit
exit 1
else
show_menu
handle_menu_input
fi
}
init(){
show_menu
yarn
kill_packagers
handle_menu_input
}
init