blob: 45ecbfb891a5f6eb423cea482310c4665c85e272 [file] [log] [blame]
/*
** Copyright 2017, 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.server.accessibility;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
import static org.mockito.ArgumentMatchers.anyInt;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.verify;
import static org.mockito.Mockito.when;
import android.accessibilityservice.AccessibilityServiceInfo;
import android.accessibilityservice.IAccessibilityServiceClient;
import android.app.UiAutomation;
import android.content.Context;
import android.content.pm.ApplicationInfo;
import android.content.pm.ResolveInfo;
import android.content.pm.ServiceInfo;
import android.os.IBinder;
import android.os.Looper;
import android.view.accessibility.AccessibilityEvent;
import com.android.server.wm.WindowManagerInternal;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Test;
import org.mockito.ArgumentCaptor;
import org.mockito.Mock;
import org.mockito.MockitoAnnotations;
/**
* Tests for UiAutomationManager
*/
public class UiAutomationManagerTest {
static final int SERVICE_ID = 42;
final UiAutomationManager mUiAutomationManager = new UiAutomationManager();
MessageCapturingHandler mMessageCapturingHandler;
@Mock AccessibilityManagerService.UserState mMockUserState;
@Mock Context mMockContext;
@Mock AccessibilityServiceInfo mMockServiceInfo;
@Mock ResolveInfo mMockResolveInfo;
@Mock AccessibilityManagerService.SecurityPolicy mMockSecurityPolicy;
@Mock AccessibilityClientConnection.SystemSupport mMockSystemSupport;
@Mock WindowManagerInternal mMockWindowManagerInternal;
@Mock GlobalActionPerformer mMockGlobalActionPerformer;
@Mock IBinder mMockOwner;
@Mock IAccessibilityServiceClient mMockAccessibilityServiceClient;
@Mock IBinder mMockServiceAsBinder;
@BeforeClass
public static void oneTimeInitialization() {
if (Looper.myLooper() == null) {
Looper.prepare();
}
}
@Before
public void setup() {
MockitoAnnotations.initMocks(this);
when(mMockSystemSupport.getKeyEventDispatcher()).thenReturn(mock(KeyEventDispatcher.class));
when(mMockServiceInfo.getResolveInfo()).thenReturn(mMockResolveInfo);
mMockResolveInfo.serviceInfo = mock(ServiceInfo.class);
mMockResolveInfo.serviceInfo.applicationInfo = mock(ApplicationInfo.class);
when(mMockAccessibilityServiceClient.asBinder()).thenReturn(mMockServiceAsBinder);
mMessageCapturingHandler = new MessageCapturingHandler(null);
}
@Test
public void isRunning_returnsTrueOnlyWhenRunning() {
assertFalse(mUiAutomationManager.isUiAutomationRunningLocked());
register(0);
assertTrue(mUiAutomationManager.isUiAutomationRunningLocked());
unregister();
assertFalse(mUiAutomationManager.isUiAutomationRunningLocked());
}
@Test
public void suppressingAccessibilityServicesLocked_dependsOnFlags() {
assertFalse(mUiAutomationManager.suppressingAccessibilityServicesLocked());
register(0);
assertTrue(mUiAutomationManager.suppressingAccessibilityServicesLocked());
unregister();
assertFalse(mUiAutomationManager.suppressingAccessibilityServicesLocked());
register(UiAutomation.FLAG_DONT_SUPPRESS_ACCESSIBILITY_SERVICES);
assertFalse(mUiAutomationManager.suppressingAccessibilityServicesLocked());
unregister();
assertFalse(mUiAutomationManager.suppressingAccessibilityServicesLocked());
}
@Test
public void isTouchExplorationEnabledLocked_dependsOnInfoFlags() {
assertFalse(mUiAutomationManager.isTouchExplorationEnabledLocked());
register(0);
assertFalse(mUiAutomationManager.isTouchExplorationEnabledLocked());
unregister();
mMockServiceInfo.flags = AccessibilityServiceInfo.FLAG_REQUEST_TOUCH_EXPLORATION_MODE;
register(0);
assertTrue(mUiAutomationManager.isTouchExplorationEnabledLocked());
unregister();
assertFalse(mUiAutomationManager.isTouchExplorationEnabledLocked());
}
@Test
public void canRetrieveInteractiveWindowsLocked_dependsOnInfoFlags() {
assertFalse(mUiAutomationManager.canRetrieveInteractiveWindowsLocked());
register(0);
assertFalse(mUiAutomationManager.canRetrieveInteractiveWindowsLocked());
unregister();
mMockServiceInfo.flags = AccessibilityServiceInfo.FLAG_RETRIEVE_INTERACTIVE_WINDOWS;
register(0);
assertTrue(mUiAutomationManager.canRetrieveInteractiveWindowsLocked());
unregister();
assertFalse(mUiAutomationManager.canRetrieveInteractiveWindowsLocked());
}
@Test
public void getRequestedEventMaskLocked_dependsOnInfoEventTypes() {
assertEquals(0, mUiAutomationManager.getRequestedEventMaskLocked());
mMockServiceInfo.eventTypes = 0;
register(0);
assertEquals(mMockServiceInfo.eventTypes,
mUiAutomationManager.getRequestedEventMaskLocked());
unregister();
mMockServiceInfo.eventTypes = AccessibilityEvent.TYPES_ALL_MASK;
register(0);
assertEquals(mMockServiceInfo.eventTypes,
mUiAutomationManager.getRequestedEventMaskLocked());
unregister();
assertEquals(0, mUiAutomationManager.getRequestedEventMaskLocked());
}
@Test
public void uiAutomationBinderDiesBeforeConnecting_notifiesSystem() throws Exception {
register(0);
ArgumentCaptor<IBinder.DeathRecipient> captor = ArgumentCaptor.forClass(
IBinder.DeathRecipient.class);
verify(mMockOwner).linkToDeath(captor.capture(), anyInt());
captor.getValue().binderDied();
mMessageCapturingHandler.sendAllMessages();
verify(mMockSystemSupport).onClientChange(false);
}
private void register(int flags) {
mUiAutomationManager.registerUiTestAutomationServiceLocked(mMockOwner,
mMockAccessibilityServiceClient, mMockContext, mMockServiceInfo, SERVICE_ID,
mMessageCapturingHandler, new Object(), mMockSecurityPolicy, mMockSystemSupport,
mMockWindowManagerInternal, mMockGlobalActionPerformer, flags);
}
private void unregister() {
mUiAutomationManager.unregisterUiTestAutomationServiceLocked(
mMockAccessibilityServiceClient);
}
}