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
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
|
/*
* Copyright (C) 2012 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.android.compatibilitytest;
import android.app.ActivityManager;
import android.app.ActivityManager.ProcessErrorStateInfo;
import android.app.ActivityManager.RunningTaskInfo;
import android.app.IActivityController;
import android.app.IActivityManager;
import android.app.Instrumentation;
import android.app.UiAutomation;
import android.app.UiModeManager;
import android.content.Context;
import android.content.Intent;
import android.content.pm.PackageManager;
import android.content.pm.ResolveInfo;
import android.content.res.Configuration;
import android.os.Bundle;
import android.os.DropBoxManager;
import android.os.RemoteException;
import android.os.ServiceManager;
import android.util.Log;
import androidx.test.InstrumentationRegistry;
import androidx.test.runner.AndroidJUnit4;
import org.junit.After;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import java.util.ArrayList;
import java.util.Collection;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
/**
* Application Compatibility Test that launches an application and detects
* crashes.
*/
@RunWith(AndroidJUnit4.class)
public class AppCompatibility {
private static final String TAG = AppCompatibility.class.getSimpleName();
private static final String PACKAGE_TO_LAUNCH = "package_to_launch";
private static final String APP_LAUNCH_TIMEOUT_MSECS = "app_launch_timeout_ms";
private static final String WORKSPACE_LAUNCH_TIMEOUT_MSECS = "workspace_launch_timeout_ms";
private static final Set<String> DROPBOX_TAGS = new HashSet<>();
static {
DROPBOX_TAGS.add("SYSTEM_TOMBSTONE");
DROPBOX_TAGS.add("system_app_anr");
DROPBOX_TAGS.add("system_app_native_crash");
DROPBOX_TAGS.add("system_app_crash");
DROPBOX_TAGS.add("data_app_anr");
DROPBOX_TAGS.add("data_app_native_crash");
DROPBOX_TAGS.add("data_app_crash");
}
private static final int MAX_CRASH_SNIPPET_LINES = 20;
private static final int MAX_NUM_CRASH_SNIPPET = 3;
// time waiting for app to launch
private int mAppLaunchTimeout = 7000;
// time waiting for launcher home screen to show up
private int mWorkspaceLaunchTimeout = 2000;
private Context mContext;
private ActivityManager mActivityManager;
private PackageManager mPackageManager;
private Bundle mArgs;
private Instrumentation mInstrumentation;
private String mLauncherPackageName;
private IActivityController mCrashSupressor = new CrashSuppressor();
private Map<String, List<String>> mAppErrors = new HashMap<>();
@Before
public void setUp() throws Exception {
mInstrumentation = InstrumentationRegistry.getInstrumentation();
mContext = InstrumentationRegistry.getTargetContext();
mActivityManager = (ActivityManager) mContext.getSystemService(Context.ACTIVITY_SERVICE);
mPackageManager = mContext.getPackageManager();
mArgs = InstrumentationRegistry.getArguments();
// resolve launcher package name
Intent intent = new Intent(Intent.ACTION_MAIN).addCategory(Intent.CATEGORY_HOME);
ResolveInfo resolveInfo = mPackageManager.resolveActivity(
intent, PackageManager.MATCH_DEFAULT_ONLY);
mLauncherPackageName = resolveInfo.activityInfo.packageName;
Assert.assertNotNull("failed to resolve package name for launcher", mLauncherPackageName);
Log.v(TAG, "Using launcher package name: " + mLauncherPackageName);
// Parse optional inputs.
String appLaunchTimeoutMsecs = mArgs.getString(APP_LAUNCH_TIMEOUT_MSECS);
if (appLaunchTimeoutMsecs != null) {
mAppLaunchTimeout = Integer.parseInt(appLaunchTimeoutMsecs);
}
String workspaceLaunchTimeoutMsecs = mArgs.getString(WORKSPACE_LAUNCH_TIMEOUT_MSECS);
if (workspaceLaunchTimeoutMsecs != null) {
mWorkspaceLaunchTimeout = Integer.parseInt(workspaceLaunchTimeoutMsecs);
}
mInstrumentation.getUiAutomation().setRotation(UiAutomation.ROTATION_FREEZE_0);
// set activity controller to suppress crash dialogs and collects them by process name
mAppErrors.clear();
IActivityManager.Stub.asInterface(ServiceManager.checkService(Context.ACTIVITY_SERVICE))
.setActivityController(mCrashSupressor, false);
}
@After
public void tearDown() throws Exception {
// unset activity controller
IActivityManager.Stub.asInterface(ServiceManager.checkService(Context.ACTIVITY_SERVICE))
.setActivityController(null, false);
mInstrumentation.getUiAutomation().setRotation(UiAutomation.ROTATION_UNFREEZE);
}
/**
* Actual test case that launches the package and throws an exception on the
* first error.
*
* @throws Exception
*/
@Test
public void testAppStability() throws Exception {
String packageName = mArgs.getString(PACKAGE_TO_LAUNCH);
if (packageName != null) {
Log.d(TAG, "Launching app " + packageName);
Intent intent = getLaunchIntentForPackage(packageName);
if (intent == null) {
Log.w(TAG, String.format("Skipping %s; no launch intent", packageName));
return;
}
long startTime = System.currentTimeMillis();
launchActivity(packageName, intent);
try {
checkDropbox(startTime, packageName);
if (mAppErrors.containsKey(packageName)) {
StringBuilder message = new StringBuilder("Error(s) detected for package: ")
.append(packageName);
List<String> errors = mAppErrors.get(packageName);
for (int i = 0; i < MAX_NUM_CRASH_SNIPPET && i < errors.size(); i++) {
String err = errors.get(i);
message.append("\n\n");
// limit the size of each crash snippet
message.append(truncate(err, MAX_CRASH_SNIPPET_LINES));
}
if (errors.size() > MAX_NUM_CRASH_SNIPPET) {
message.append(String.format("\n... %d more errors omitted ...",
errors.size() - MAX_NUM_CRASH_SNIPPET));
}
Assert.fail(message.toString());
}
// last check: see if app process is still running
Assert.assertTrue("app package \"" + packageName + "\" no longer found in running "
+ "tasks, but no explicit crashes were detected; check logcat for details",
processStillUp(packageName));
} finally {
returnHome();
}
} else {
Log.d(TAG, "Missing argument, use " + PACKAGE_TO_LAUNCH +
" to specify the package to launch");
}
}
/**
* Truncate the text to at most the specified number of lines, and append a marker at the end
* when truncated
* @param text
* @param maxLines
* @return
*/
private static String truncate(String text, int maxLines) {
String[] lines = text.split("\\r?\\n");
StringBuilder ret = new StringBuilder();
for (int i = 0; i < maxLines && i < lines.length; i++) {
ret.append(lines[i]);
ret.append('\n');
}
if (lines.length > maxLines) {
ret.append("... ");
ret.append(lines.length - maxLines);
ret.append(" more lines truncated ...\n");
}
return ret.toString();
}
/**
* Check dropbox for entries of interest regarding the specified process
* @param startTime if not 0, only check entries with timestamp later than the start time
* @param processName the process name to check for
*/
private void checkDropbox(long startTime, String processName) {
DropBoxManager dropbox = (DropBoxManager) mContext
.getSystemService(Context.DROPBOX_SERVICE);
DropBoxManager.Entry entry = null;
while (null != (entry = dropbox.getNextEntry(null, startTime))) {
try {
// only check entries with tag that's of interest
String tag = entry.getTag();
if (DROPBOX_TAGS.contains(tag)) {
String content = entry.getText(4096);
if (content != null) {
if (content.contains(processName)) {
addProcessError(processName, "dropbox:" + tag, content);
}
}
}
startTime = entry.getTimeMillis();
} finally {
entry.close();
}
}
}
private void returnHome() {
Intent homeIntent = new Intent(Intent.ACTION_MAIN);
homeIntent.addCategory(Intent.CATEGORY_HOME);
homeIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
// Send the "home" intent and wait 2 seconds for us to get there
mContext.startActivity(homeIntent);
try {
Thread.sleep(mWorkspaceLaunchTimeout);
} catch (InterruptedException e) {
// ignore
}
}
private Intent getLaunchIntentForPackage(String packageName) {
UiModeManager umm = (UiModeManager) mContext.getSystemService(Context.UI_MODE_SERVICE);
boolean isLeanback = umm.getCurrentModeType() == Configuration.UI_MODE_TYPE_TELEVISION;
Intent intent = null;
if (isLeanback) {
intent = mPackageManager.getLeanbackLaunchIntentForPackage(packageName);
} else {
intent = mPackageManager.getLaunchIntentForPackage(packageName);
}
return intent;
}
/**
* Launches and activity and queries for errors.
*
* @param packageName {@link String} the package name of the application to
* launch.
* @return {@link Collection} of {@link ProcessErrorStateInfo} detected
* during the app launch.
*/
private void launchActivity(String packageName, Intent intent) {
Log.d(TAG, String.format("launching package \"%s\" with intent: %s",
packageName, intent.toString()));
// Launch Activity
mContext.startActivity(intent);
try {
// artificial delay: in case app crashes after doing some work during launch
Thread.sleep(mAppLaunchTimeout);
} catch (InterruptedException e) {
// ignore
}
}
private void addProcessError(String processName, String errorType, String errorInfo) {
// parse out the package name if necessary, for apps with multiple proceses
String pkgName = processName.split(":", 2)[0];
List<String> errors;
if (mAppErrors.containsKey(pkgName)) {
errors = mAppErrors.get(pkgName);
} else {
errors = new ArrayList<>();
}
errors.add(String.format("### Type: %s, Details:\n%s", errorType, errorInfo));
mAppErrors.put(pkgName, errors);
}
/**
* Determine if a given package is still running.
*
* @param packageName {@link String} package to look for
* @return True if package is running, false otherwise.
*/
private boolean processStillUp(String packageName) {
@SuppressWarnings("deprecation")
List<RunningTaskInfo> infos = mActivityManager.getRunningTasks(100);
for (RunningTaskInfo info : infos) {
if (info.baseActivity.getPackageName().equals(packageName)) {
return true;
}
}
return false;
}
/**
* An {@link IActivityController} that instructs framework to kill processes hitting crashes
* directly without showing crash dialogs
*
*/
private class CrashSuppressor extends IActivityController.Stub {
@Override
public boolean activityStarting(Intent intent, String pkg) throws RemoteException {
Log.d(TAG, "activity starting: " + intent.getComponent().toShortString());
return true;
}
@Override
public boolean activityResuming(String pkg) throws RemoteException {
Log.d(TAG, "activity resuming: " + pkg);
return true;
}
@Override
public boolean appCrashed(String processName, int pid, String shortMsg, String longMsg,
long timeMillis, String stackTrace) throws RemoteException {
Log.d(TAG, "app crash: " + processName);
addProcessError(processName, "crash", stackTrace);
// don't show dialog
return false;
}
@Override
public int appEarlyNotResponding(String processName, int pid, String annotation)
throws RemoteException {
// ignore
return 0;
}
@Override
public int appNotResponding(String processName, int pid, String processStats)
throws RemoteException {
Log.d(TAG, "app ANR: " + processName);
addProcessError(processName, "ANR", processStats);
// don't show dialog
return -1;
}
@Override
public int systemNotResponding(String msg) throws RemoteException {
// ignore
return -1;
}
}
}
|