blob: a27b20b937aa5f601d7139fcdc1bc4697f9d719d [file] [log] [blame]
/*
* Copyright (C) 2015 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 android.support.v7.app;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
import android.os.SystemClock;
import android.support.v7.testutils.BaseTestActivity;
import android.test.suitebuilder.annotation.SmallTest;
import android.view.KeyCharacterMap;
import android.view.KeyEvent;
import android.view.View;
import org.junit.Test;
public class KeyboardShortcutsTestCaseWithToolbar
extends BaseKeyboardShortcutsTestCase<ToolbarActionBarActivity> {
public KeyboardShortcutsTestCaseWithToolbar() {
super(ToolbarActionBarActivity.class);
}
@Test
@SmallTest
public void testAccessActionBar() throws Throwable {
final BaseTestActivity activity = getActivity();
final View editText = activity.findViewById(android.support.v7.appcompat.test.R.id.editText);
runTestOnUiThread(new Runnable() {
@Override
public void run() {
editText.requestFocus();
}
});
getInstrumentation().waitForIdleSync();
sendControlChar('<');
getInstrumentation().waitForIdleSync();
// Should jump to the action bar after control-<
runTestOnUiThread(new Runnable() {
@Override
public void run() {
assertFalse(editText.hasFocus());
final View toolbar = activity.findViewById(android.support.v7.appcompat.test.R.id.toolbar);
assertTrue(toolbar.hasFocus());
}
});
getInstrumentation().sendKeyDownUpSync(KeyEvent.KEYCODE_DPAD_DOWN);
getInstrumentation().waitForIdleSync();
// Should jump to the first view again.
runTestOnUiThread(new Runnable() {
@Override
public void run() {
assertTrue(editText.hasFocus());
}
});
getInstrumentation().sendKeyDownUpSync(KeyEvent.KEYCODE_DPAD_UP);
getInstrumentation().waitForIdleSync();
}
private void sendControlChar(char key) throws Throwable {
KeyEvent tempEvent = new KeyEvent(KeyEvent.ACTION_DOWN, KeyEvent.KEYCODE_A);
KeyCharacterMap map = tempEvent.getKeyCharacterMap();
KeyEvent[] events = map.getEvents(new char[] {key});
for (int i = 0; i < events.length; i++) {
long time = SystemClock.uptimeMillis();
KeyEvent event = events[i];
KeyEvent controlKey = new KeyEvent(time, time, event.getAction(), event.getKeyCode(),
event.getRepeatCount(), event.getMetaState() | KeyEvent.META_CTRL_ON);
getInstrumentation().sendKeySync(controlKey);
}
}
}