2011-12-09 11:18:39 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2011 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.inputmethod.keyboard.internal;
|
|
|
|
|
2012-01-17 07:30:37 +00:00
|
|
|
public class KeyboardStateTests extends KeyboardStateNonDistinctTests {
|
2011-12-09 11:18:39 +00:00
|
|
|
@Override
|
2012-01-17 07:30:37 +00:00
|
|
|
public boolean hasDistinctMultitouch() {
|
|
|
|
return true;
|
2012-01-10 05:31:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Shift key chording input.
|
|
|
|
public void testShiftChording() {
|
|
|
|
// Press shift key and hold, enter into choring shift state.
|
2012-01-18 03:31:02 +00:00
|
|
|
pressKey(CODE_SHIFT, ALPHABET_MANUAL_SHIFTED);
|
2012-01-10 05:31:47 +00:00
|
|
|
|
|
|
|
// Press/release letter keys.
|
2012-01-18 03:31:02 +00:00
|
|
|
chordingPressAndReleaseKey('Z', ALPHABET_MANUAL_SHIFTED, ALPHABET_MANUAL_SHIFTED);
|
|
|
|
chordingPressAndReleaseKey('X', ALPHABET_MANUAL_SHIFTED, ALPHABET_MANUAL_SHIFTED);
|
2011-12-09 11:18:39 +00:00
|
|
|
|
2012-01-10 05:31:47 +00:00
|
|
|
// Release shift key, snap back to normal state.
|
2012-01-18 03:31:02 +00:00
|
|
|
releaseKey(CODE_SHIFT, ALPHABET_UNSHIFTED);
|
2011-12-09 11:18:39 +00:00
|
|
|
}
|
|
|
|
|
2012-01-10 05:31:47 +00:00
|
|
|
// Symbols key chording input.
|
|
|
|
public void testSymbolsChording() {
|
|
|
|
// Press symbols key and hold, enter into choring shift state.
|
2012-01-18 03:31:02 +00:00
|
|
|
pressKey(CODE_SYMBOL, SYMBOLS_UNSHIFTED);
|
2012-01-10 05:31:47 +00:00
|
|
|
|
|
|
|
// Press/release symbol letter keys.
|
2012-01-18 03:31:02 +00:00
|
|
|
chordingPressAndReleaseKey('1', SYMBOLS_UNSHIFTED, SYMBOLS_UNSHIFTED);
|
|
|
|
chordingPressAndReleaseKey('2', SYMBOLS_UNSHIFTED, SYMBOLS_UNSHIFTED);
|
2012-01-10 05:31:47 +00:00
|
|
|
|
|
|
|
// Release shift key, snap back to normal state.
|
2012-01-18 03:31:02 +00:00
|
|
|
releaseKey(CODE_SYMBOL, ALPHABET_UNSHIFTED);
|
2012-01-10 05:31:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Chording shift key in automatic upper case.
|
|
|
|
public void testAutomaticUpperCaseChording() {
|
2012-01-18 03:31:02 +00:00
|
|
|
// Set auto caps mode on.
|
|
|
|
setAutoCapsMode(AUTO_CAPS);
|
|
|
|
|
2012-01-10 05:31:47 +00:00
|
|
|
// Update shift state with auto caps enabled.
|
2012-01-18 03:31:02 +00:00
|
|
|
updateShiftState(ALPHABET_AUTOMATIC_SHIFTED);
|
2011-12-09 11:18:39 +00:00
|
|
|
|
2012-01-10 05:31:47 +00:00
|
|
|
// Press shift key.
|
2012-01-18 03:31:02 +00:00
|
|
|
pressKey(CODE_SHIFT, ALPHABET_MANUAL_SHIFTED);
|
|
|
|
|
2012-01-10 05:31:47 +00:00
|
|
|
// Press/release letter keys.
|
2012-01-18 03:31:02 +00:00
|
|
|
chordingPressAndReleaseKey('Z', ALPHABET_MANUAL_SHIFTED, ALPHABET_MANUAL_SHIFTED);
|
|
|
|
|
2012-01-10 05:31:47 +00:00
|
|
|
// Release shift key, snap back to alphabet.
|
2012-01-18 03:31:02 +00:00
|
|
|
releaseKey(CODE_SHIFT, ALPHABET_UNSHIFTED);
|
2011-12-09 11:18:39 +00:00
|
|
|
}
|
|
|
|
|
2012-01-10 05:31:47 +00:00
|
|
|
// Chording symbol key in automatic upper case.
|
2012-01-18 03:31:02 +00:00
|
|
|
public void testAutomaticUpperCaseChording2() {
|
|
|
|
// Set auto caps mode on.
|
|
|
|
setAutoCapsMode(AUTO_CAPS);
|
|
|
|
|
2012-01-10 05:31:47 +00:00
|
|
|
// Update shift state with auto caps enabled.
|
2012-01-18 03:31:02 +00:00
|
|
|
updateShiftState(ALPHABET_AUTOMATIC_SHIFTED);
|
2011-12-09 11:18:39 +00:00
|
|
|
|
2012-01-10 05:31:47 +00:00
|
|
|
// Press "123?" key.
|
2012-01-18 03:31:02 +00:00
|
|
|
pressKey(CODE_SYMBOL, SYMBOLS_UNSHIFTED);
|
|
|
|
|
2012-01-10 05:31:47 +00:00
|
|
|
// Press/release symbol letter keys.
|
2012-01-18 03:31:02 +00:00
|
|
|
chordingPressAndReleaseKey('1', SYMBOLS_UNSHIFTED, SYMBOLS_UNSHIFTED);
|
|
|
|
|
2012-01-10 05:31:47 +00:00
|
|
|
// Release "123?" key, snap back to alphabet.
|
2012-01-18 03:31:02 +00:00
|
|
|
releaseKey(CODE_SYMBOL, ALPHABET_UNSHIFTED);
|
2012-01-10 05:31:47 +00:00
|
|
|
}
|
2011-12-09 11:18:39 +00:00
|
|
|
|
2012-01-10 05:31:47 +00:00
|
|
|
// TODO: Multitouch test
|
2012-01-17 09:45:04 +00:00
|
|
|
|
|
|
|
// TODO: n-Keys roll over test
|
2011-12-09 11:18:39 +00:00
|
|
|
}
|