blob: 50437b4d5f3ec0f0a52c51cbbc4fb4648e70fc71 [file] [log] [blame]
Howard Chen0a947642019-01-07 14:10:44 +08001/*
2 * Copyright (C) 2019 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;
18
Howard Chen0a947642019-01-07 14:10:44 +080019import android.os.ServiceManager;
Po-Chien Hsueh4e908c22019-03-07 11:57:17 +080020import android.os.image.IDynamicSystemService;
Howard Chen0a947642019-01-07 14:10:44 +080021import android.test.AndroidTestCase;
22import android.test.suitebuilder.annotation.LargeTest;
23
Po-Chien Hsueh4e908c22019-03-07 11:57:17 +080024public class DynamicSystemServiceTest extends AndroidTestCase {
25 private static final String TAG = "DynamicSystemServiceTests";
26 private IDynamicSystemService mService;
Howard Chen0a947642019-01-07 14:10:44 +080027
28 @Override
29 protected void setUp() throws Exception {
30 mService =
Po-Chien Hsueh4e908c22019-03-07 11:57:17 +080031 IDynamicSystemService.Stub.asInterface(
32 ServiceManager.getService("dynamic_system"));
Howard Chen0a947642019-01-07 14:10:44 +080033 }
34
35 @LargeTest
36 public void test1() {
Po-Chien Hsueh4e908c22019-03-07 11:57:17 +080037 assertTrue("dynamic_system service available", mService != null);
Howard Chen0a947642019-01-07 14:10:44 +080038 try {
Howard Chen6ea5bed2019-10-04 18:15:14 +080039 mService.startInstallation();
Po-Chien Hsueh4e908c22019-03-07 11:57:17 +080040 fail("DynamicSystemService did not throw SecurityException as expected");
Howard Chen0a947642019-01-07 14:10:44 +080041 } catch (SecurityException e) {
42 // expected
43 } catch (Exception e) {
44 fail(e.toString());
45 }
46 }
47}