blob: 1dfce51725f1fb693e5cb77e67910d3ee38f8495 [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
Tadashi G. Takaoka74ccec22018-10-23 11:07:13 +090019import static androidx.test.platform.app.InstrumentationRegistry.getInstrumentation;
20
Adrian Roos0da67d662017-04-17 14:50:22 -070021import android.content.Context;
22import android.os.Handler;
Brett Chabota26eda92018-07-23 13:08:30 -070023
Brett Chabota26eda92018-07-23 13:08:30 -070024import androidx.test.annotation.UiThreadTest;
Dan Shiebfde332018-10-19 14:25:36 -070025import androidx.test.filters.FlakyTest;
Brett Chabota26eda92018-07-23 13:08:30 -070026import androidx.test.filters.SmallTest;
Adrian Roos0da67d662017-04-17 14:50:22 -070027
Svet Ganov8455ba22019-01-02 13:05:56 -080028import com.android.server.appop.AppOpsService;
Charles Chen40a9d562019-01-14 21:48:29 +080029import com.android.server.wm.ActivityTaskManagerService;
Adrian Roos0da67d662017-04-17 14:50:22 -070030
31import org.junit.Before;
32import org.junit.Test;
Adrian Roos0da67d662017-04-17 14:50:22 -070033
34import java.io.File;
35
36/**
Tadashi G. Takaoka74ccec22018-10-23 11:07:13 +090037 * Build/Install/Run:
Tadashi G. Takaokad3eb6452018-11-03 18:21:40 -070038 * atest FrameworksServicesTests:AppErrorDialogTest
Adrian Roos0da67d662017-04-17 14:50:22 -070039 */
Adrian Roos0da67d662017-04-17 14:50:22 -070040@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 {
Tadashi G. Takaoka74ccec22018-10-23 11:07:13 +090049 mContext = getInstrumentation().getTargetContext();
Adrian Roos0da67d662017-04-17 14:50:22 -070050 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 });
Charles Chen40a9d562019-01-14 21:48:29 +080066 mService.mActivityTaskManager = new ActivityTaskManagerService(mContext);
67 mService.mActivityTaskManager.initialize(null, null, mContext.getMainLooper());
Adrian Roos0da67d662017-04-17 14:50:22 -070068 }
69
70 @Test
71 @UiThreadTest
Tadashi G. Takaoka74ccec22018-10-23 11:07:13 +090072 public void testCreateWorks() {
Adrian Roos0da67d662017-04-17 14:50:22 -070073 AppErrorDialog.Data data = new AppErrorDialog.Data();
Charles Chen40a9d562019-01-14 21:48:29 +080074 data.proc = new ProcessRecord(mService, mContext.getApplicationInfo(), "name", 12345);
Adrian Roos0da67d662017-04-17 14:50:22 -070075 data.result = new AppErrorResult();
76
77 AppErrorDialog dialog = new AppErrorDialog(mContext, mService, data);
78
79 dialog.create();
80 }
81}