@react-native-harness/platform-android 1.1.0-rc.1 → 1.1.0-rc.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +9 -2
- package/dist/__tests__/adb.test.js +283 -10
- package/dist/__tests__/avd-config.test.d.ts +2 -0
- package/dist/__tests__/avd-config.test.d.ts.map +1 -0
- package/dist/__tests__/avd-config.test.js +174 -0
- package/dist/__tests__/ci-action.test.d.ts +2 -0
- package/dist/__tests__/ci-action.test.d.ts.map +1 -0
- package/dist/__tests__/ci-action.test.js +46 -0
- package/dist/__tests__/emulator-startup.test.d.ts +2 -0
- package/dist/__tests__/emulator-startup.test.d.ts.map +1 -0
- package/dist/__tests__/emulator-startup.test.js +19 -0
- package/dist/__tests__/environment.test.d.ts +2 -0
- package/dist/__tests__/environment.test.d.ts.map +1 -0
- package/dist/__tests__/environment.test.js +51 -0
- package/dist/__tests__/instance.test.d.ts +2 -0
- package/dist/__tests__/instance.test.d.ts.map +1 -0
- package/dist/__tests__/instance.test.js +423 -0
- package/dist/__tests__/shared-prefs.test.d.ts +2 -0
- package/dist/__tests__/shared-prefs.test.d.ts.map +1 -0
- package/dist/__tests__/shared-prefs.test.js +87 -0
- package/dist/adb.d.ts +23 -0
- package/dist/adb.d.ts.map +1 -1
- package/dist/adb.js +265 -16
- package/dist/app-monitor.d.ts.map +1 -1
- package/dist/app-monitor.js +29 -8
- package/dist/avd-config.d.ts +41 -0
- package/dist/avd-config.d.ts.map +1 -0
- package/dist/avd-config.js +173 -0
- package/dist/config.d.ts +77 -0
- package/dist/config.d.ts.map +1 -1
- package/dist/config.js +5 -0
- package/dist/emulator-startup.d.ts +3 -0
- package/dist/emulator-startup.d.ts.map +1 -0
- package/dist/emulator-startup.js +17 -0
- package/dist/environment.d.ts +28 -0
- package/dist/environment.d.ts.map +1 -0
- package/dist/environment.js +295 -0
- package/dist/errors.d.ts +4 -12
- package/dist/errors.d.ts.map +1 -1
- package/dist/errors.js +10 -24
- package/dist/factory.d.ts.map +1 -1
- package/dist/factory.js +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3 -0
- package/dist/instance.d.ts +6 -0
- package/dist/instance.d.ts.map +1 -0
- package/dist/instance.js +234 -0
- package/dist/runner.d.ts +3 -3
- package/dist/runner.d.ts.map +1 -1
- package/dist/runner.js +12 -48
- package/dist/shared-prefs.d.ts +3 -0
- package/dist/shared-prefs.d.ts.map +1 -0
- package/dist/shared-prefs.js +92 -0
- package/dist/targets.d.ts +1 -1
- package/dist/targets.d.ts.map +1 -1
- package/dist/targets.js +2 -0
- package/dist/tsconfig.lib.tsbuildinfo +1 -1
- package/package.json +4 -4
- package/src/__tests__/adb.test.ts +419 -15
- package/src/__tests__/avd-config.test.ts +206 -0
- package/src/__tests__/ci-action.test.ts +81 -0
- package/src/__tests__/emulator-startup.test.ts +32 -0
- package/src/__tests__/environment.test.ts +87 -0
- package/src/__tests__/instance.test.ts +610 -0
- package/src/__tests__/shared-prefs.test.ts +144 -0
- package/src/adb.ts +423 -16
- package/src/app-monitor.ts +58 -18
- package/src/avd-config.ts +290 -0
- package/src/config.ts +8 -0
- package/src/emulator-startup.ts +28 -0
- package/src/environment.ts +510 -0
- package/src/errors.ts +19 -0
- package/src/factory.ts +4 -0
- package/src/index.ts +7 -1
- package/src/instance.ts +380 -0
- package/src/runner.ts +25 -63
- package/src/shared-prefs.ts +205 -0
- package/src/targets.ts +11 -8
- package/tsconfig.json +2 -2
- package/tsconfig.lib.json +2 -2
package/src/instance.ts
ADDED
|
@@ -0,0 +1,380 @@
|
|
|
1
|
+
import {
|
|
2
|
+
AppNotInstalledError,
|
|
3
|
+
CreateAppMonitorOptions,
|
|
4
|
+
DeviceNotFoundError,
|
|
5
|
+
type HarnessPlatformInitOptions,
|
|
6
|
+
HarnessPlatformRunner,
|
|
7
|
+
} from '@react-native-harness/platforms';
|
|
8
|
+
import type { Config as HarnessConfig } from '@react-native-harness/config';
|
|
9
|
+
import { logger } from '@react-native-harness/tools';
|
|
10
|
+
import {
|
|
11
|
+
AndroidPlatformConfig,
|
|
12
|
+
assertAndroidDeviceEmulator,
|
|
13
|
+
assertAndroidDevicePhysical,
|
|
14
|
+
} from './config.js';
|
|
15
|
+
import {
|
|
16
|
+
isAvdCompatible,
|
|
17
|
+
readAvdConfig,
|
|
18
|
+
resolveAvdCachingEnabled,
|
|
19
|
+
} from './avd-config.js';
|
|
20
|
+
import { getAdbId } from './adb-id.js';
|
|
21
|
+
import * as adb from './adb.js';
|
|
22
|
+
import {
|
|
23
|
+
applyHarnessDebugHttpHost,
|
|
24
|
+
clearHarnessDebugHttpHost,
|
|
25
|
+
} from './shared-prefs.js';
|
|
26
|
+
import { getDeviceName } from './utils.js';
|
|
27
|
+
import { createAndroidAppMonitor } from './app-monitor.js';
|
|
28
|
+
import { HarnessAppPathError, HarnessEmulatorConfigError } from './errors.js';
|
|
29
|
+
import {
|
|
30
|
+
ensureAndroidEmulatorEnvironment,
|
|
31
|
+
getHostAndroidSystemImageArch,
|
|
32
|
+
} from './environment.js';
|
|
33
|
+
import { isInteractive } from '@react-native-harness/tools';
|
|
34
|
+
import fs from 'node:fs';
|
|
35
|
+
import type { AppMonitor } from '@react-native-harness/platforms';
|
|
36
|
+
|
|
37
|
+
const androidInstanceLogger = logger.child('android-instance');
|
|
38
|
+
|
|
39
|
+
const createNoopAppMonitor = (): AppMonitor => ({
|
|
40
|
+
start: async () => undefined,
|
|
41
|
+
stop: async () => undefined,
|
|
42
|
+
dispose: async () => undefined,
|
|
43
|
+
addListener: () => undefined,
|
|
44
|
+
removeListener: () => undefined,
|
|
45
|
+
});
|
|
46
|
+
|
|
47
|
+
const getHarnessAppPath = (): string => {
|
|
48
|
+
const appPath = process.env.HARNESS_APP_PATH;
|
|
49
|
+
|
|
50
|
+
if (!appPath) {
|
|
51
|
+
throw new HarnessAppPathError('missing');
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
if (!fs.existsSync(appPath)) {
|
|
55
|
+
throw new HarnessAppPathError('invalid', appPath);
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
return appPath;
|
|
59
|
+
};
|
|
60
|
+
|
|
61
|
+
const configureAndroidRuntime = async (
|
|
62
|
+
adbId: string,
|
|
63
|
+
config: AndroidPlatformConfig,
|
|
64
|
+
harnessConfig: HarnessConfig
|
|
65
|
+
): Promise<number> => {
|
|
66
|
+
const metroPort = harnessConfig.metroPort;
|
|
67
|
+
|
|
68
|
+
await Promise.all([
|
|
69
|
+
adb.reversePort(adbId, metroPort),
|
|
70
|
+
adb.reversePort(adbId, 8080),
|
|
71
|
+
adb.setHideErrorDialogs(adbId, true),
|
|
72
|
+
applyHarnessDebugHttpHost(adbId, config.bundleId, `localhost:${metroPort}`),
|
|
73
|
+
]);
|
|
74
|
+
|
|
75
|
+
return adb.getAppUid(adbId, config.bundleId);
|
|
76
|
+
};
|
|
77
|
+
|
|
78
|
+
const startAndWaitForBoot = async ({
|
|
79
|
+
emulatorName,
|
|
80
|
+
signal,
|
|
81
|
+
mode,
|
|
82
|
+
}: {
|
|
83
|
+
emulatorName: string;
|
|
84
|
+
signal: AbortSignal;
|
|
85
|
+
mode?: Parameters<typeof adb.startEmulator>[1];
|
|
86
|
+
}): Promise<string> => {
|
|
87
|
+
await adb.startEmulator(emulatorName, mode);
|
|
88
|
+
return adb.waitForBoot(emulatorName, signal);
|
|
89
|
+
};
|
|
90
|
+
|
|
91
|
+
const recreateAvd = async ({
|
|
92
|
+
emulatorConfig,
|
|
93
|
+
}: {
|
|
94
|
+
emulatorConfig: Extract<
|
|
95
|
+
AndroidPlatformConfig['device'],
|
|
96
|
+
{ type: 'emulator' }
|
|
97
|
+
>;
|
|
98
|
+
}): Promise<void> => {
|
|
99
|
+
if (!emulatorConfig.avd) {
|
|
100
|
+
throw new HarnessEmulatorConfigError(emulatorConfig.name);
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
await adb.createAvd({
|
|
104
|
+
name: emulatorConfig.name,
|
|
105
|
+
apiLevel: emulatorConfig.avd.apiLevel,
|
|
106
|
+
profile: emulatorConfig.avd.profile,
|
|
107
|
+
diskSize: emulatorConfig.avd.diskSize,
|
|
108
|
+
heapSize: emulatorConfig.avd.heapSize,
|
|
109
|
+
});
|
|
110
|
+
};
|
|
111
|
+
|
|
112
|
+
const prepareCachedAvd = async ({
|
|
113
|
+
emulatorConfig,
|
|
114
|
+
signal,
|
|
115
|
+
}: {
|
|
116
|
+
emulatorConfig: Extract<
|
|
117
|
+
AndroidPlatformConfig['device'],
|
|
118
|
+
{ type: 'emulator' }
|
|
119
|
+
>;
|
|
120
|
+
signal: AbortSignal;
|
|
121
|
+
}): Promise<string> => {
|
|
122
|
+
const emulatorName = emulatorConfig.name;
|
|
123
|
+
const hostArch = getHostAndroidSystemImageArch();
|
|
124
|
+
const hasExistingAvd = await adb.hasAvd(emulatorName);
|
|
125
|
+
const avdConfig = hasExistingAvd ? await readAvdConfig(emulatorName) : null;
|
|
126
|
+
const compatibility =
|
|
127
|
+
avdConfig == null
|
|
128
|
+
? { compatible: false as const, reason: 'Missing AVD config.ini.' }
|
|
129
|
+
: isAvdCompatible({
|
|
130
|
+
emulator: emulatorConfig,
|
|
131
|
+
avdConfig,
|
|
132
|
+
hostArch,
|
|
133
|
+
});
|
|
134
|
+
|
|
135
|
+
if (!hasExistingAvd || !compatibility.compatible) {
|
|
136
|
+
logger.info(
|
|
137
|
+
hasExistingAvd
|
|
138
|
+
? 'Recreating incompatible Android emulator %s...'
|
|
139
|
+
: 'Creating Android emulator %s...',
|
|
140
|
+
emulatorName
|
|
141
|
+
);
|
|
142
|
+
|
|
143
|
+
if (hasExistingAvd && !compatibility.compatible) {
|
|
144
|
+
androidInstanceLogger.debug(
|
|
145
|
+
'Android AVD %s is not reusable: %s',
|
|
146
|
+
emulatorName,
|
|
147
|
+
compatibility.reason
|
|
148
|
+
);
|
|
149
|
+
await adb.deleteAvd(emulatorName);
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
await recreateAvd({ emulatorConfig });
|
|
153
|
+
|
|
154
|
+
const generationAdbId = await startAndWaitForBoot({
|
|
155
|
+
emulatorName,
|
|
156
|
+
signal,
|
|
157
|
+
mode: 'clean-snapshot-generation',
|
|
158
|
+
});
|
|
159
|
+
|
|
160
|
+
logger.info('Saving Android emulator snapshot for %s...', emulatorName);
|
|
161
|
+
await adb.stopEmulator(generationAdbId);
|
|
162
|
+
await adb.waitForEmulatorDisconnect(generationAdbId, signal);
|
|
163
|
+
} else {
|
|
164
|
+
logger.info('Using cached Android emulator %s...', emulatorName);
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
return startAndWaitForBoot({
|
|
168
|
+
emulatorName,
|
|
169
|
+
signal,
|
|
170
|
+
mode: 'snapshot-reuse',
|
|
171
|
+
});
|
|
172
|
+
};
|
|
173
|
+
|
|
174
|
+
export const getAndroidEmulatorPlatformInstance = async (
|
|
175
|
+
config: AndroidPlatformConfig,
|
|
176
|
+
harnessConfig: HarnessConfig,
|
|
177
|
+
init: HarnessPlatformInitOptions
|
|
178
|
+
): Promise<HarnessPlatformRunner> => {
|
|
179
|
+
assertAndroidDeviceEmulator(config.device);
|
|
180
|
+
const detectNativeCrashes = harnessConfig.detectNativeCrashes ?? true;
|
|
181
|
+
const emulatorConfig = config.device;
|
|
182
|
+
const emulatorName = emulatorConfig.name;
|
|
183
|
+
const avdConfig = emulatorConfig.avd;
|
|
184
|
+
const avdCachingEnabled = resolveAvdCachingEnabled({
|
|
185
|
+
avd: avdConfig,
|
|
186
|
+
isInteractive: isInteractive(),
|
|
187
|
+
});
|
|
188
|
+
|
|
189
|
+
let adbId = await getAdbId(emulatorConfig);
|
|
190
|
+
let startedByHarness = false;
|
|
191
|
+
|
|
192
|
+
androidInstanceLogger.debug(
|
|
193
|
+
'resolved Android emulator %s with adb id %s',
|
|
194
|
+
emulatorConfig.name,
|
|
195
|
+
adbId ?? 'not-found'
|
|
196
|
+
);
|
|
197
|
+
|
|
198
|
+
if (!adbId) {
|
|
199
|
+
if (!avdConfig) {
|
|
200
|
+
throw new HarnessEmulatorConfigError(emulatorConfig.name);
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
await ensureAndroidEmulatorEnvironment(avdConfig.apiLevel);
|
|
204
|
+
|
|
205
|
+
adbId = avdCachingEnabled
|
|
206
|
+
? await prepareCachedAvd({
|
|
207
|
+
emulatorConfig,
|
|
208
|
+
signal: init.signal,
|
|
209
|
+
})
|
|
210
|
+
: await (async () => {
|
|
211
|
+
if (!(await adb.hasAvd(emulatorConfig.name))) {
|
|
212
|
+
logger.info('Creating Android emulator %s...', emulatorName);
|
|
213
|
+
androidInstanceLogger.debug(
|
|
214
|
+
'creating Android AVD %s before startup',
|
|
215
|
+
emulatorConfig.name
|
|
216
|
+
);
|
|
217
|
+
await recreateAvd({ emulatorConfig });
|
|
218
|
+
} else {
|
|
219
|
+
logger.info('Using existing Android emulator %s...', emulatorName);
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
androidInstanceLogger.debug(
|
|
223
|
+
'starting Android emulator %s',
|
|
224
|
+
emulatorConfig.name
|
|
225
|
+
);
|
|
226
|
+
return startAndWaitForBoot({
|
|
227
|
+
emulatorName: emulatorConfig.name,
|
|
228
|
+
signal: init.signal,
|
|
229
|
+
});
|
|
230
|
+
})();
|
|
231
|
+
|
|
232
|
+
startedByHarness = true;
|
|
233
|
+
|
|
234
|
+
androidInstanceLogger.debug(
|
|
235
|
+
'Android emulator %s connected as %s',
|
|
236
|
+
emulatorConfig.name,
|
|
237
|
+
adbId
|
|
238
|
+
);
|
|
239
|
+
} else if (emulatorConfig.avd) {
|
|
240
|
+
await ensureAndroidEmulatorEnvironment(emulatorConfig.avd.apiLevel);
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
if (!adbId) {
|
|
244
|
+
throw new DeviceNotFoundError(getDeviceName(emulatorConfig));
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
androidInstanceLogger.debug(
|
|
248
|
+
'waiting for Android emulator %s to finish booting',
|
|
249
|
+
adbId
|
|
250
|
+
);
|
|
251
|
+
|
|
252
|
+
const isInstalled = await adb.isAppInstalled(adbId, config.bundleId);
|
|
253
|
+
|
|
254
|
+
if (!isInstalled) {
|
|
255
|
+
const appPath = getHarnessAppPath();
|
|
256
|
+
await adb.installApp(adbId, appPath);
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
const appUid = await configureAndroidRuntime(adbId, config, harnessConfig);
|
|
260
|
+
|
|
261
|
+
return {
|
|
262
|
+
startApp: async (options) => {
|
|
263
|
+
await adb.startApp(
|
|
264
|
+
adbId,
|
|
265
|
+
config.bundleId,
|
|
266
|
+
config.activityName,
|
|
267
|
+
(options as typeof config.appLaunchOptions | undefined) ??
|
|
268
|
+
config.appLaunchOptions
|
|
269
|
+
);
|
|
270
|
+
},
|
|
271
|
+
restartApp: async (options) => {
|
|
272
|
+
await adb.stopApp(adbId, config.bundleId);
|
|
273
|
+
await adb.startApp(
|
|
274
|
+
adbId,
|
|
275
|
+
config.bundleId,
|
|
276
|
+
config.activityName,
|
|
277
|
+
(options as typeof config.appLaunchOptions | undefined) ??
|
|
278
|
+
config.appLaunchOptions
|
|
279
|
+
);
|
|
280
|
+
},
|
|
281
|
+
stopApp: async () => {
|
|
282
|
+
await adb.stopApp(adbId, config.bundleId);
|
|
283
|
+
},
|
|
284
|
+
dispose: async () => {
|
|
285
|
+
await adb.stopApp(adbId, config.bundleId);
|
|
286
|
+
await clearHarnessDebugHttpHost(adbId, config.bundleId);
|
|
287
|
+
await adb.setHideErrorDialogs(adbId, false);
|
|
288
|
+
|
|
289
|
+
if (startedByHarness) {
|
|
290
|
+
logger.info('Shutting down Android emulator %s...', emulatorName);
|
|
291
|
+
await adb.stopEmulator(adbId);
|
|
292
|
+
}
|
|
293
|
+
},
|
|
294
|
+
isAppRunning: async () => {
|
|
295
|
+
return await adb.isAppRunning(adbId, config.bundleId);
|
|
296
|
+
},
|
|
297
|
+
createAppMonitor: (options?: CreateAppMonitorOptions) => {
|
|
298
|
+
if (!detectNativeCrashes) {
|
|
299
|
+
return createNoopAppMonitor();
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
return createAndroidAppMonitor({
|
|
303
|
+
adbId,
|
|
304
|
+
bundleId: config.bundleId,
|
|
305
|
+
appUid,
|
|
306
|
+
crashArtifactWriter: options?.crashArtifactWriter,
|
|
307
|
+
});
|
|
308
|
+
},
|
|
309
|
+
};
|
|
310
|
+
};
|
|
311
|
+
|
|
312
|
+
export const getAndroidPhysicalDevicePlatformInstance = async (
|
|
313
|
+
config: AndroidPlatformConfig,
|
|
314
|
+
harnessConfig: HarnessConfig
|
|
315
|
+
): Promise<HarnessPlatformRunner> => {
|
|
316
|
+
assertAndroidDevicePhysical(config.device);
|
|
317
|
+
const detectNativeCrashes = harnessConfig.detectNativeCrashes ?? true;
|
|
318
|
+
|
|
319
|
+
const adbId = await getAdbId(config.device);
|
|
320
|
+
|
|
321
|
+
if (!adbId) {
|
|
322
|
+
throw new DeviceNotFoundError(getDeviceName(config.device));
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
const isInstalled = await adb.isAppInstalled(adbId, config.bundleId);
|
|
326
|
+
|
|
327
|
+
if (!isInstalled) {
|
|
328
|
+
throw new AppNotInstalledError(
|
|
329
|
+
config.bundleId,
|
|
330
|
+
getDeviceName(config.device)
|
|
331
|
+
);
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
const appUid = await configureAndroidRuntime(adbId, config, harnessConfig);
|
|
335
|
+
|
|
336
|
+
return {
|
|
337
|
+
startApp: async (options) => {
|
|
338
|
+
await adb.startApp(
|
|
339
|
+
adbId,
|
|
340
|
+
config.bundleId,
|
|
341
|
+
config.activityName,
|
|
342
|
+
(options as typeof config.appLaunchOptions | undefined) ??
|
|
343
|
+
config.appLaunchOptions
|
|
344
|
+
);
|
|
345
|
+
},
|
|
346
|
+
restartApp: async (options) => {
|
|
347
|
+
await adb.stopApp(adbId, config.bundleId);
|
|
348
|
+
await adb.startApp(
|
|
349
|
+
adbId,
|
|
350
|
+
config.bundleId,
|
|
351
|
+
config.activityName,
|
|
352
|
+
(options as typeof config.appLaunchOptions | undefined) ??
|
|
353
|
+
config.appLaunchOptions
|
|
354
|
+
);
|
|
355
|
+
},
|
|
356
|
+
stopApp: async () => {
|
|
357
|
+
await adb.stopApp(adbId, config.bundleId);
|
|
358
|
+
},
|
|
359
|
+
dispose: async () => {
|
|
360
|
+
await adb.stopApp(adbId, config.bundleId);
|
|
361
|
+
await clearHarnessDebugHttpHost(adbId, config.bundleId);
|
|
362
|
+
await adb.setHideErrorDialogs(adbId, false);
|
|
363
|
+
},
|
|
364
|
+
isAppRunning: async () => {
|
|
365
|
+
return await adb.isAppRunning(adbId, config.bundleId);
|
|
366
|
+
},
|
|
367
|
+
createAppMonitor: (options?: CreateAppMonitorOptions) => {
|
|
368
|
+
if (!detectNativeCrashes) {
|
|
369
|
+
return createNoopAppMonitor();
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
return createAndroidAppMonitor({
|
|
373
|
+
adbId,
|
|
374
|
+
bundleId: config.bundleId,
|
|
375
|
+
appUid,
|
|
376
|
+
crashArtifactWriter: options?.crashArtifactWriter,
|
|
377
|
+
});
|
|
378
|
+
},
|
|
379
|
+
};
|
|
380
|
+
};
|
package/src/runner.ts
CHANGED
|
@@ -1,85 +1,47 @@
|
|
|
1
1
|
import {
|
|
2
|
-
DeviceNotFoundError,
|
|
3
|
-
AppNotInstalledError,
|
|
4
|
-
CreateAppMonitorOptions,
|
|
5
2
|
HarnessPlatformRunner,
|
|
3
|
+
type HarnessPlatformInitOptions,
|
|
6
4
|
} from '@react-native-harness/platforms';
|
|
7
|
-
import { Config } from '@react-native-harness/config';
|
|
5
|
+
import type { Config as HarnessConfig } from '@react-native-harness/config';
|
|
8
6
|
import {
|
|
9
7
|
AndroidPlatformConfigSchema,
|
|
10
8
|
type AndroidPlatformConfig,
|
|
9
|
+
isAndroidDeviceEmulator,
|
|
11
10
|
} from './config.js';
|
|
12
|
-
import {
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
11
|
+
import {
|
|
12
|
+
getAndroidEmulatorPlatformInstance,
|
|
13
|
+
getAndroidPhysicalDevicePlatformInstance,
|
|
14
|
+
} from './instance.js';
|
|
15
|
+
import {
|
|
16
|
+
ensureAndroidEmulatorEnvironment,
|
|
17
|
+
ensureAndroidPhysicalDeviceEnvironment,
|
|
18
|
+
initializeAndroidProcessEnv,
|
|
19
|
+
} from './environment.js';
|
|
16
20
|
|
|
17
21
|
const getAndroidRunner = async (
|
|
18
22
|
config: AndroidPlatformConfig,
|
|
19
|
-
harnessConfig:
|
|
23
|
+
harnessConfig: HarnessConfig,
|
|
24
|
+
init: HarnessPlatformInitOptions
|
|
20
25
|
): Promise<HarnessPlatformRunner> => {
|
|
21
26
|
const parsedConfig = AndroidPlatformConfigSchema.parse(config);
|
|
22
|
-
const adbId = await getAdbId(parsedConfig.device);
|
|
23
27
|
|
|
24
|
-
|
|
25
|
-
throw new DeviceNotFoundError(getDeviceName(parsedConfig.device));
|
|
26
|
-
}
|
|
28
|
+
initializeAndroidProcessEnv();
|
|
27
29
|
|
|
28
|
-
|
|
30
|
+
if (isAndroidDeviceEmulator(parsedConfig.device)) {
|
|
31
|
+
if (parsedConfig.device.avd) {
|
|
32
|
+
await ensureAndroidEmulatorEnvironment(parsedConfig.device.avd.apiLevel);
|
|
33
|
+
}
|
|
29
34
|
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
35
|
+
return getAndroidEmulatorPlatformInstance(
|
|
36
|
+
parsedConfig,
|
|
37
|
+
harnessConfig,
|
|
38
|
+
init
|
|
34
39
|
);
|
|
35
40
|
}
|
|
36
41
|
|
|
37
|
-
await
|
|
38
|
-
adb.reversePort(adbId, 8081),
|
|
39
|
-
adb.reversePort(adbId, 8080),
|
|
40
|
-
adb.reversePort(adbId, harnessConfig.webSocketPort),
|
|
41
|
-
adb.setHideErrorDialogs(adbId, true),
|
|
42
|
-
]);
|
|
43
|
-
const appUid = await adb.getAppUid(adbId, parsedConfig.bundleId);
|
|
42
|
+
await ensureAndroidPhysicalDeviceEnvironment();
|
|
44
43
|
|
|
45
|
-
return
|
|
46
|
-
startApp: async (options) => {
|
|
47
|
-
await adb.startApp(
|
|
48
|
-
adbId,
|
|
49
|
-
parsedConfig.bundleId,
|
|
50
|
-
parsedConfig.activityName,
|
|
51
|
-
(options as typeof parsedConfig.appLaunchOptions | undefined) ??
|
|
52
|
-
parsedConfig.appLaunchOptions
|
|
53
|
-
);
|
|
54
|
-
},
|
|
55
|
-
restartApp: async (options) => {
|
|
56
|
-
await adb.stopApp(adbId, parsedConfig.bundleId);
|
|
57
|
-
await adb.startApp(
|
|
58
|
-
adbId,
|
|
59
|
-
parsedConfig.bundleId,
|
|
60
|
-
parsedConfig.activityName,
|
|
61
|
-
(options as typeof parsedConfig.appLaunchOptions | undefined) ??
|
|
62
|
-
parsedConfig.appLaunchOptions
|
|
63
|
-
);
|
|
64
|
-
},
|
|
65
|
-
stopApp: async () => {
|
|
66
|
-
await adb.stopApp(adbId, parsedConfig.bundleId);
|
|
67
|
-
},
|
|
68
|
-
dispose: async () => {
|
|
69
|
-
await adb.stopApp(adbId, parsedConfig.bundleId);
|
|
70
|
-
await adb.setHideErrorDialogs(adbId, false);
|
|
71
|
-
},
|
|
72
|
-
isAppRunning: async () => {
|
|
73
|
-
return await adb.isAppRunning(adbId, parsedConfig.bundleId);
|
|
74
|
-
},
|
|
75
|
-
createAppMonitor: (options?: CreateAppMonitorOptions) =>
|
|
76
|
-
createAndroidAppMonitor({
|
|
77
|
-
adbId,
|
|
78
|
-
bundleId: parsedConfig.bundleId,
|
|
79
|
-
appUid,
|
|
80
|
-
crashArtifactWriter: options?.crashArtifactWriter,
|
|
81
|
-
}),
|
|
82
|
-
};
|
|
44
|
+
return getAndroidPhysicalDevicePlatformInstance(parsedConfig, harnessConfig);
|
|
83
45
|
};
|
|
84
46
|
|
|
85
47
|
export default getAndroidRunner;
|
|
@@ -0,0 +1,205 @@
|
|
|
1
|
+
import { spawn, SubprocessError } from '@react-native-harness/tools';
|
|
2
|
+
|
|
3
|
+
const DEBUG_HTTP_HOST_BLOCK_START =
|
|
4
|
+
'<!-- react-native-harness:debug_http_host:start -->';
|
|
5
|
+
const DEBUG_HTTP_HOST_BLOCK_END =
|
|
6
|
+
'<!-- react-native-harness:debug_http_host:end -->';
|
|
7
|
+
const DEBUG_HTTP_HOST_BACKUP_KEY = 'harness_debug_http_host_backup';
|
|
8
|
+
|
|
9
|
+
const getSharedPrefsPath = (bundleId: string) =>
|
|
10
|
+
`shared_prefs/${bundleId}_preferences.xml`;
|
|
11
|
+
|
|
12
|
+
const escapeRegExp = (value: string): string =>
|
|
13
|
+
value.replace(/[.*+?^${}()|[\]\\]/g, '\\$&');
|
|
14
|
+
|
|
15
|
+
const escapeXml = (value: string): string =>
|
|
16
|
+
value
|
|
17
|
+
.replaceAll('&', '&')
|
|
18
|
+
.replaceAll('<', '<')
|
|
19
|
+
.replaceAll('>', '>')
|
|
20
|
+
.replaceAll('"', '"')
|
|
21
|
+
.replaceAll("'", ''');
|
|
22
|
+
|
|
23
|
+
const unescapeXml = (value: string): string =>
|
|
24
|
+
value
|
|
25
|
+
.replaceAll(''', "'")
|
|
26
|
+
.replaceAll('"', '"')
|
|
27
|
+
.replaceAll('>', '>')
|
|
28
|
+
.replaceAll('<', '<')
|
|
29
|
+
.replaceAll('&', '&');
|
|
30
|
+
|
|
31
|
+
const getStringPreferenceRegex = (key: string) =>
|
|
32
|
+
new RegExp(
|
|
33
|
+
`<string\\s+name="${escapeRegExp(key)}">([\\s\\S]*?)<\\/string>`,
|
|
34
|
+
'g'
|
|
35
|
+
);
|
|
36
|
+
|
|
37
|
+
const getStringPreferenceValue = (
|
|
38
|
+
content: string,
|
|
39
|
+
key: string
|
|
40
|
+
): string | null => {
|
|
41
|
+
const matches = [...content.matchAll(getStringPreferenceRegex(key))];
|
|
42
|
+
const value = matches.at(-1)?.[1];
|
|
43
|
+
|
|
44
|
+
return value == null ? null : unescapeXml(value);
|
|
45
|
+
};
|
|
46
|
+
|
|
47
|
+
const renameStringPreference = (
|
|
48
|
+
content: string,
|
|
49
|
+
fromKey: string,
|
|
50
|
+
toKey: string
|
|
51
|
+
): string =>
|
|
52
|
+
content.replace(
|
|
53
|
+
new RegExp(
|
|
54
|
+
`(<string\\s+name=")${escapeRegExp(fromKey)}(">[\\s\\S]*?<\\/string>)`,
|
|
55
|
+
'g'
|
|
56
|
+
),
|
|
57
|
+
`$1${toKey}$2`
|
|
58
|
+
);
|
|
59
|
+
|
|
60
|
+
const stripStringPreference = (content: string, key: string): string =>
|
|
61
|
+
content.replace(
|
|
62
|
+
new RegExp(
|
|
63
|
+
`\\s*<string\\s+name="${escapeRegExp(key)}">[\\s\\S]*?<\\/string>\\s*`,
|
|
64
|
+
'g'
|
|
65
|
+
),
|
|
66
|
+
'\n'
|
|
67
|
+
);
|
|
68
|
+
|
|
69
|
+
const normalizeEmptyMap = (content: string): string =>
|
|
70
|
+
content.replace(/<map\s*\/>/g, '<map>\n</map>');
|
|
71
|
+
|
|
72
|
+
const getHarnessDebugHttpHostBlock = (host: string) =>
|
|
73
|
+
[
|
|
74
|
+
DEBUG_HTTP_HOST_BLOCK_START,
|
|
75
|
+
`<string name="debug_http_host">${escapeXml(host)}</string>`,
|
|
76
|
+
DEBUG_HTTP_HOST_BLOCK_END,
|
|
77
|
+
].join('\n');
|
|
78
|
+
|
|
79
|
+
const stripHarnessDebugHttpHostBlock = (content: string): string =>
|
|
80
|
+
content.replace(
|
|
81
|
+
new RegExp(
|
|
82
|
+
`\\s*${escapeRegExp(
|
|
83
|
+
DEBUG_HTTP_HOST_BLOCK_START
|
|
84
|
+
)}\\s*\\n[\\s\\S]*?\\n\\s*${escapeRegExp(DEBUG_HTTP_HOST_BLOCK_END)}\\s*`,
|
|
85
|
+
'g'
|
|
86
|
+
),
|
|
87
|
+
'\n'
|
|
88
|
+
);
|
|
89
|
+
|
|
90
|
+
const normalizeSharedPrefsContent = (content: string | null): string => {
|
|
91
|
+
if (!content?.trim()) {
|
|
92
|
+
return ['<?xml version="1.0" encoding="utf-8"?>', '<map>', '</map>'].join(
|
|
93
|
+
'\n'
|
|
94
|
+
);
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
return normalizeEmptyMap(stripHarnessDebugHttpHostBlock(content)).trim();
|
|
98
|
+
};
|
|
99
|
+
|
|
100
|
+
const insertBeforeClosingMap = (content: string, block: string): string => {
|
|
101
|
+
if (!content.includes('</map>')) {
|
|
102
|
+
throw new Error('Android shared preferences file is missing </map>.');
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
return content.replace(
|
|
106
|
+
/<\/map>\s*$/,
|
|
107
|
+
` ${block.replace(/\n/g, '\n ')}\n</map>`
|
|
108
|
+
);
|
|
109
|
+
};
|
|
110
|
+
|
|
111
|
+
const readSharedPrefsFile = async (
|
|
112
|
+
adbId: string,
|
|
113
|
+
bundleId: string
|
|
114
|
+
): Promise<string | null> => {
|
|
115
|
+
try {
|
|
116
|
+
const { stdout } = await spawn('adb', [
|
|
117
|
+
'-s',
|
|
118
|
+
adbId,
|
|
119
|
+
'shell',
|
|
120
|
+
`run-as ${bundleId} cat ${getSharedPrefsPath(bundleId)}`,
|
|
121
|
+
]);
|
|
122
|
+
return stdout;
|
|
123
|
+
} catch (error) {
|
|
124
|
+
if (error instanceof SubprocessError && error.exitCode === 1) {
|
|
125
|
+
return null;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
throw error;
|
|
129
|
+
}
|
|
130
|
+
};
|
|
131
|
+
|
|
132
|
+
const writeSharedPrefsFile = async (
|
|
133
|
+
adbId: string,
|
|
134
|
+
bundleId: string,
|
|
135
|
+
content: string
|
|
136
|
+
): Promise<void> => {
|
|
137
|
+
await spawn(
|
|
138
|
+
'adb',
|
|
139
|
+
[
|
|
140
|
+
'-s',
|
|
141
|
+
adbId,
|
|
142
|
+
'shell',
|
|
143
|
+
`run-as ${bundleId} sh -c 'mkdir -p shared_prefs && cat > ${getSharedPrefsPath(
|
|
144
|
+
bundleId
|
|
145
|
+
)}'`,
|
|
146
|
+
],
|
|
147
|
+
{ stdin: { string: `${content.trim()}\n` } }
|
|
148
|
+
);
|
|
149
|
+
};
|
|
150
|
+
|
|
151
|
+
export const applyHarnessDebugHttpHost = async (
|
|
152
|
+
adbId: string,
|
|
153
|
+
bundleId: string,
|
|
154
|
+
host: string
|
|
155
|
+
): Promise<void> => {
|
|
156
|
+
const existingContent = await readSharedPrefsFile(adbId, bundleId);
|
|
157
|
+
const normalizedContent = normalizeSharedPrefsContent(existingContent);
|
|
158
|
+
const existingHost = getStringPreferenceValue(
|
|
159
|
+
normalizedContent,
|
|
160
|
+
'debug_http_host'
|
|
161
|
+
);
|
|
162
|
+
const contentWithBackup =
|
|
163
|
+
existingHost == null
|
|
164
|
+
? normalizedContent
|
|
165
|
+
: renameStringPreference(
|
|
166
|
+
stripStringPreference(normalizedContent, DEBUG_HTTP_HOST_BACKUP_KEY),
|
|
167
|
+
'debug_http_host',
|
|
168
|
+
DEBUG_HTTP_HOST_BACKUP_KEY
|
|
169
|
+
);
|
|
170
|
+
const nextContent = insertBeforeClosingMap(
|
|
171
|
+
contentWithBackup,
|
|
172
|
+
getHarnessDebugHttpHostBlock(host)
|
|
173
|
+
);
|
|
174
|
+
await writeSharedPrefsFile(adbId, bundleId, nextContent);
|
|
175
|
+
};
|
|
176
|
+
|
|
177
|
+
export const clearHarnessDebugHttpHost = async (
|
|
178
|
+
adbId: string,
|
|
179
|
+
bundleId: string
|
|
180
|
+
): Promise<void> => {
|
|
181
|
+
const existingContent = await readSharedPrefsFile(adbId, bundleId);
|
|
182
|
+
|
|
183
|
+
if (!existingContent) {
|
|
184
|
+
return;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
const nextContentWithoutHarnessBlock =
|
|
188
|
+
stripHarnessDebugHttpHostBlock(existingContent).trim();
|
|
189
|
+
|
|
190
|
+
if (nextContentWithoutHarnessBlock === existingContent.trim()) {
|
|
191
|
+
return;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
const restoredContent = renameStringPreference(
|
|
195
|
+
nextContentWithoutHarnessBlock,
|
|
196
|
+
DEBUG_HTTP_HOST_BACKUP_KEY,
|
|
197
|
+
'debug_http_host'
|
|
198
|
+
);
|
|
199
|
+
|
|
200
|
+
await writeSharedPrefsFile(
|
|
201
|
+
adbId,
|
|
202
|
+
bundleId,
|
|
203
|
+
normalizeEmptyMap(restoredContent).trim()
|
|
204
|
+
);
|
|
205
|
+
};
|