blob: 06d41f1919c871e37300a386ca9e19ce51b75e90 [file] [log] [blame]
Adrian Roos0da67d662017-04-17 14:50:22 -07001/*
2 * Copyright (C) 2017 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.server.am;
18
19import android.content.Context;
20import android.os.Handler;
Brett Chabota26eda92018-07-23 13:08:30 -070021
22import androidx.test.InstrumentationRegistry;
23import androidx.test.annotation.UiThreadTest;
Dan Shiebfde332018-10-19 14:25:36 -070024import androidx.test.filters.FlakyTest;
Brett Chabota26eda92018-07-23 13:08:30 -070025import androidx.test.filters.SmallTest;
26import androidx.test.runner.AndroidJUnit4;
Adrian Roos0da67d662017-04-17 14:50:22 -070027
28import com.android.server.AppOpsService;
29
30import org.junit.Before;
31import org.junit.Test;
32import org.junit.runner.RunWith;
33
34import java.io.File;
35
36/**
John Reck3d294e72018-09-21 20:26:48 +000037 * runtest -c com.android.server.am.AppErrorDialogTest frameworks-services
Adrian Roos0da67d662017-04-17 14:50:22 -070038 */
39@RunWith(AndroidJUnit4.class)
40@SmallTest
Dan Shiebfde332018-10-19 14:25:36 -070041@FlakyTest(bugId = 113616538)
Adrian Roos0da67d662017-04-17 14:50:22 -070042public class AppErrorDialogTest {
43
44 private Context mContext;
45 private ActivityManagerService mService;
46
47 @Before
48 public void setUp() throws Exception {
49 mContext = InstrumentationRegistry.getTargetContext();
50 mService = new ActivityManagerService(new ActivityManagerService.Injector() {
51 @Override
52 public AppOpsService getAppOpsService(File file, Handler handler) {
53 return null;
54 }
55
56 @Override
57 public Handler getUiHandler(ActivityManagerService service) {
58 return null;
59 }
60
61 @Override
62 public boolean isNetworkRestrictedForUid(int uid) {
63 return false;
64 }
65 });
66 }
67
68 @Test
69 @UiThreadTest
70 public void testCreateWorks() throws Exception {
71 AppErrorDialog.Data data = new AppErrorDialog.Data();
Yunfan Chen75157d72018-07-27 14:47:21 +090072 data.proc = new ProcessRecord(null, mContext.getApplicationInfo(), "name", 12345, null);
Adrian Roos0da67d662017-04-17 14:50:22 -070073 data.result = new AppErrorResult();
74
75 AppErrorDialog dialog = new AppErrorDialog(mContext, mService, data);
76
77 dialog.create();
78 }
79}