summaryrefslogtreecommitdiff
path: root/espresso/espresso-lib/src/main/java/com/google/android/apps/common/testing/ui/espresso/action/EspressoKey.java
diff options
context:
space:
mode:
Diffstat (limited to 'espresso/espresso-lib/src/main/java/com/google/android/apps/common/testing/ui/espresso/action/EspressoKey.java')
-rw-r--r--espresso/espresso-lib/src/main/java/com/google/android/apps/common/testing/ui/espresso/action/EspressoKey.java111
1 files changed, 0 insertions, 111 deletions
diff --git a/espresso/espresso-lib/src/main/java/com/google/android/apps/common/testing/ui/espresso/action/EspressoKey.java b/espresso/espresso-lib/src/main/java/com/google/android/apps/common/testing/ui/espresso/action/EspressoKey.java
deleted file mode 100644
index 530ddde..0000000
--- a/espresso/espresso-lib/src/main/java/com/google/android/apps/common/testing/ui/espresso/action/EspressoKey.java
+++ /dev/null
@@ -1,111 +0,0 @@
-/*
- * Copyright (C) 2014 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.google.android.apps.common.testing.ui.espresso.action;
-
-import static com.google.common.base.Preconditions.checkState;
-
-import android.os.Build;
-import android.view.KeyEvent;
-
-/**
- * Class that wraps the key code and meta state of the desired key press.
- */
-public final class EspressoKey {
- private final int keyCode;
- private final int metaState;
-
- private EspressoKey(Builder builder) {
- this.keyCode = builder.builderKeyCode;
- this.metaState = builder.getMetaState();
- }
-
- public int getKeyCode() {
- return keyCode;
- }
-
- public int getMetaState() {
- return metaState;
- }
-
- @Override
- public String toString() {
- return String.format("keyCode: %s, metaState: %s", keyCode, metaState);
- }
-
- /**
- * Builder for the EspressoKey class.
- */
- public static class Builder {
- private int builderKeyCode = -1;
- private boolean isShiftPressed;
- private boolean isAltPressed;
- private boolean isCtrlPressed;
-
- public Builder withKeyCode(int keyCode) {
- builderKeyCode = keyCode;
- return this;
- }
-
- /**
- * Sets the SHIFT_ON meta state of the resulting key.
- */
- public Builder withShiftPressed(boolean shiftPressed) {
- isShiftPressed = shiftPressed;
- return this;
- }
-
- /**
- * On Honeycomb and above, sets the CTRL_ON meta state of the resulting key. On Gingerbread and
- * below, this is a noop.
- */
- public Builder withCtrlPressed(boolean ctrlPressed) {
- isCtrlPressed = ctrlPressed;
- return this;
- }
-
- /**
- * Sets the ALT_ON meta state of the resulting key.
- */
- public Builder withAltPressed(boolean altPressed) {
- isAltPressed = altPressed;
- return this;
- }
-
- private int getMetaState() {
- int metaState = 0;
- if (isShiftPressed) {
- metaState |= KeyEvent.META_SHIFT_ON;
- }
-
- if (isAltPressed) {
- metaState |= KeyEvent.META_ALT_ON;
- }
-
- if (isCtrlPressed && Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) {
- metaState |= KeyEvent.META_CTRL_ON;
- }
-
- return metaState;
- }
-
- public EspressoKey build() {
- checkState(builderKeyCode > 0 && builderKeyCode < KeyEvent.getMaxKeyCode(),
- "Invalid key code: %s", builderKeyCode);
- return new EspressoKey(this);
- }
- }
-}