1 /* 2 * Copyright (C) 2015 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 17 package android.app.cts; 18 19 import android.app.Instrumentation; 20 import android.app.PictureInPictureParams; 21 import android.app.stubs.PipNotSupportedActivity; 22 import android.test.ActivityInstrumentationTestCase2; 23 24 public class PipNotSupportedActivityTest 25 extends ActivityInstrumentationTestCase2<PipNotSupportedActivity> { 26 27 private Instrumentation mInstrumentation; 28 private PipNotSupportedActivity mActivity; 29 30 public PipNotSupportedActivityTest() { 31 super("android.app.stubs", PipNotSupportedActivity.class); 32 } 33 34 @Override 35 protected void setUp() throws Exception { 36 super.setUp(); 37 mInstrumentation = getInstrumentation(); 38 mActivity = getActivity(); 39 } 40 41 public void testLaunchPipNotSupportedActivity() throws Throwable { 42 runTestOnUiThread(new Runnable() { 43 public void run() { 44 boolean pipSupportDisabled = false; 45 try { 46 pipSupportDisabled = !mActivity.enterPictureInPictureMode( 47 new PictureInPictureParams.Builder().build()); 48 } catch (IllegalStateException e) { 49 // Pip not supported 50 pipSupportDisabled = true; 51 } catch (IllegalArgumentException e) { 52 // Pip not supported 53 pipSupportDisabled = true; 54 } 55 assertTrue(pipSupportDisabled); 56 assertFalse(mActivity.isInPictureInPictureMode()); 57 } 58 }); 59 mInstrumentation.waitForIdleSync(); 60 } 61 } 62