| /* |
| * Copyright 2023 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. |
| */ |
| |
| #pragma once |
| |
| #include <cstdint> |
| #include <list> |
| #include <memory> |
| #include <optional> |
| #include <string> |
| #include <unordered_map> |
| #include <utility> |
| #include <vector> |
| |
| #include <EventHub.h> |
| #include <InputDevice.h> |
| #include <InputReaderBase.h> |
| #include <InputReaderContext.h> |
| #include <NotifyArgs.h> |
| #include <PointerChoreographerPolicyInterface.h> |
| #include <StylusState.h> |
| #include <VibrationElement.h> |
| #include <android-base/logging.h> |
| #include <android-base/result.h> |
| #include <gmock/gmock.h> |
| #include <input/InputDevice.h> |
| #include <input/KeyCharacterMap.h> |
| #include <input/KeyLayoutMap.h> |
| #include <input/KeyboardClassifier.h> |
| #include <input/PropertyMap.h> |
| #include <input/TouchVideoFrame.h> |
| #include <input/VirtualKeyMap.h> |
| #include <utils/Errors.h> |
| #include <utils/Timers.h> |
| |
| namespace android { |
| |
| class MockInputReaderContext : public InputReaderContext { |
| public: |
| MOCK_METHOD(void, updateGlobalMetaState, (), (override)); |
| MOCK_METHOD(int32_t, getGlobalMetaState, (), (override)); |
| |
| MOCK_METHOD(void, disableVirtualKeysUntil, (nsecs_t time), (override)); |
| MOCK_METHOD(bool, shouldDropVirtualKey, (nsecs_t now, int32_t keyCode, int32_t scanCode), |
| (override)); |
| |
| MOCK_METHOD(void, requestTimeoutAtTime, (nsecs_t when), (override)); |
| int32_t bumpGeneration() override { return ++mGeneration; } |
| |
| MOCK_METHOD(void, getExternalStylusDevices, (std::vector<InputDeviceInfo>& outDevices), |
| (override)); |
| MOCK_METHOD(std::list<NotifyArgs>, dispatchExternalStylusState, (const StylusState& outState), |
| (override)); |
| |
| MOCK_METHOD(InputReaderPolicyInterface*, getPolicy, (), (override)); |
| MOCK_METHOD(EventHubInterface*, getEventHub, (), (override)); |
| |
| int32_t getNextId() override { return 1; }; |
| |
| MOCK_METHOD(void, updateLedMetaState, (int32_t metaState), (override)); |
| MOCK_METHOD(int32_t, getLedMetaState, (), (override)); |
| |
| MOCK_METHOD(void, setPreventingTouchpadTaps, (bool prevent), (override)); |
| MOCK_METHOD(bool, isPreventingTouchpadTaps, (), (override)); |
| |
| MOCK_METHOD(void, setLastKeyDownTimestamp, (nsecs_t when)); |
| MOCK_METHOD(nsecs_t, getLastKeyDownTimestamp, ()); |
| |
| KeyboardClassifier& getKeyboardClassifier() override { return *mClassifier; }; |
| |
| private: |
| int32_t mGeneration = 0; |
| std::unique_ptr<KeyboardClassifier> mClassifier = std::make_unique<KeyboardClassifier>(); |
| }; |
| |
| class MockEventHubInterface : public EventHubInterface { |
| public: |
| MOCK_METHOD(ftl::Flags<InputDeviceClass>, getDeviceClasses, (int32_t deviceId), (const)); |
| MOCK_METHOD(InputDeviceIdentifier, getDeviceIdentifier, (int32_t deviceId), (const)); |
| MOCK_METHOD(int32_t, getDeviceControllerNumber, (int32_t deviceId), (const)); |
| MOCK_METHOD(std::optional<PropertyMap>, getConfiguration, (int32_t deviceId), (const)); |
| MOCK_METHOD(std::optional<RawAbsoluteAxisInfo>, getAbsoluteAxisInfo, |
| (int32_t deviceId, int axis), (const)); |
| MOCK_METHOD(bool, hasRelativeAxis, (int32_t deviceId, int axis), (const)); |
| MOCK_METHOD(bool, hasInputProperty, (int32_t deviceId, int property), (const)); |
| MOCK_METHOD(bool, hasMscEvent, (int32_t deviceId, int mscEvent), (const)); |
| MOCK_METHOD(void, setKeyRemapping, |
| (int32_t deviceId, (const std::map<int32_t, int32_t>& keyRemapping)), (const)); |
| MOCK_METHOD(status_t, mapKey, |
| (int32_t deviceId, int scanCode, int usageCode, int32_t metaState, |
| int32_t* outKeycode, int32_t* outMetaState, uint32_t* outFlags), |
| (const)); |
| MOCK_METHOD(status_t, mapAxis, (int32_t deviceId, int scanCode, AxisInfo* outAxisInfo), |
| (const)); |
| MOCK_METHOD(void, setExcludedDevices, (const std::vector<std::string>& devices)); |
| MOCK_METHOD(std::vector<RawEvent>, getEvents, (int timeoutMillis)); |
| MOCK_METHOD(std::vector<TouchVideoFrame>, getVideoFrames, (int32_t deviceId)); |
| MOCK_METHOD((base::Result<std::pair<InputDeviceSensorType, int32_t>>), mapSensor, |
| (int32_t deviceId, int32_t absCode), (const, override)); |
| MOCK_METHOD(std::vector<int32_t>, getRawBatteryIds, (int32_t deviceId), (const, override)); |
| MOCK_METHOD(std::optional<RawBatteryInfo>, getRawBatteryInfo, |
| (int32_t deviceId, int32_t BatteryId), (const, override)); |
| MOCK_METHOD(std::vector<int32_t>, getRawLightIds, (int32_t deviceId), (const, override)); |
| MOCK_METHOD(std::optional<RawLightInfo>, getRawLightInfo, (int32_t deviceId, int32_t lightId), |
| (const, override)); |
| MOCK_METHOD(std::optional<int32_t>, getLightBrightness, (int32_t deviceId, int32_t lightId), |
| (const, override)); |
| MOCK_METHOD(void, setLightBrightness, (int32_t deviceId, int32_t lightId, int32_t brightness), |
| (override)); |
| MOCK_METHOD((std::optional<std::unordered_map<LightColor, int32_t>>), getLightIntensities, |
| (int32_t deviceId, int32_t lightId), (const, override)); |
| MOCK_METHOD(void, setLightIntensities, |
| (int32_t deviceId, int32_t lightId, |
| (std::unordered_map<LightColor, int32_t>)intensities), |
| (override)); |
| |
| MOCK_METHOD(std::optional<RawLayoutInfo>, getRawLayoutInfo, (int32_t deviceId), |
| (const, override)); |
| MOCK_METHOD(int32_t, getScanCodeState, (int32_t deviceId, int32_t scanCode), (const, override)); |
| MOCK_METHOD(int32_t, getKeyCodeState, (int32_t deviceId, int32_t keyCode), (const, override)); |
| MOCK_METHOD(int32_t, getSwitchState, (int32_t deviceId, int32_t sw), (const, override)); |
| |
| MOCK_METHOD(std::optional<int32_t>, getAbsoluteAxisValue, (int32_t deviceId, int32_t axis), |
| (const, override)); |
| MOCK_METHOD(base::Result<std::vector<int32_t>>, getMtSlotValues, |
| (int32_t deviceId, int32_t axis, size_t slotCount), (const, override)); |
| |
| MOCK_METHOD(int32_t, getKeyCodeForKeyLocation, (int32_t deviceId, int32_t locationKeyCode), |
| (const, override)); |
| MOCK_METHOD(bool, markSupportedKeyCodes, |
| (int32_t deviceId, const std::vector<int32_t>& keyCodes, uint8_t* outFlags), |
| (const, override)); |
| |
| MOCK_METHOD(bool, hasScanCode, (int32_t deviceId, int32_t scanCode), (const, override)); |
| |
| MOCK_METHOD(bool, hasKeyCode, (int32_t deviceId, int32_t keyCode), (const, override)); |
| |
| MOCK_METHOD(bool, hasLed, (int32_t deviceId, int32_t led), (const, override)); |
| |
| MOCK_METHOD(void, setLedState, (int32_t deviceId, int32_t led, bool on), (override)); |
| |
| MOCK_METHOD(void, getVirtualKeyDefinitions, |
| (int32_t deviceId, std::vector<VirtualKeyDefinition>& outVirtualKeys), |
| (const, override)); |
| |
| MOCK_METHOD(const std::shared_ptr<KeyCharacterMap>, getKeyCharacterMap, (int32_t deviceId), |
| (const, override)); |
| |
| MOCK_METHOD(bool, setKeyboardLayoutOverlay, |
| (int32_t deviceId, std::shared_ptr<KeyCharacterMap> map), (override)); |
| |
| MOCK_METHOD(void, vibrate, (int32_t deviceId, const VibrationElement& effect), (override)); |
| MOCK_METHOD(void, cancelVibrate, (int32_t deviceId), (override)); |
| |
| MOCK_METHOD(std::vector<int32_t>, getVibratorIds, (int32_t deviceId), (const, override)); |
| MOCK_METHOD(std::optional<int32_t>, getBatteryCapacity, (int32_t deviceId, int32_t batteryId), |
| (const, override)); |
| |
| MOCK_METHOD(std::optional<int32_t>, getBatteryStatus, (int32_t deviceId, int32_t batteryId), |
| (const, override)); |
| MOCK_METHOD(void, requestReopenDevices, (), (override)); |
| MOCK_METHOD(void, wake, (), (override)); |
| |
| MOCK_METHOD(void, dump, (std::string& dump), (const, override)); |
| MOCK_METHOD(void, monitor, (), (const, override)); |
| MOCK_METHOD(bool, isDeviceEnabled, (int32_t deviceId), (const, override)); |
| MOCK_METHOD(status_t, enableDevice, (int32_t deviceId), (override)); |
| MOCK_METHOD(status_t, disableDevice, (int32_t deviceId), (override)); |
| MOCK_METHOD(void, sysfsNodeChanged, (const std::string& sysfsNodePath), (override)); |
| MOCK_METHOD(bool, setKernelWakeEnabled, (int32_t deviceId, bool enabled), (override)); |
| }; |
| |
| class MockPointerChoreographerPolicyInterface : public PointerChoreographerPolicyInterface { |
| public: |
| MOCK_METHOD(std::shared_ptr<PointerControllerInterface>, createPointerController, |
| (PointerControllerInterface::ControllerType), (override)); |
| MOCK_METHOD(void, notifyPointerDisplayIdChanged, |
| (ui::LogicalDisplayId displayId, const vec2& position), (override)); |
| MOCK_METHOD(bool, isInputMethodConnectionActive, (), (override)); |
| MOCK_METHOD(void, notifyMouseCursorFadedOnTyping, (), (override)); |
| }; |
| |
| class MockInputDevice : public InputDevice { |
| public: |
| MockInputDevice(InputReaderContext* context, int32_t id, int32_t generation, |
| const InputDeviceIdentifier& identifier) |
| : InputDevice(context, id, generation, identifier) {} |
| |
| MOCK_METHOD(uint32_t, getSources, (), (const, override)); |
| MOCK_METHOD(std::optional<DisplayViewport>, getAssociatedViewport, (), (const)); |
| MOCK_METHOD(KeyboardType, getKeyboardType, (), (const, override)); |
| MOCK_METHOD(bool, isEnabled, (), ()); |
| MOCK_METHOD(bool, isExternal, (), (override)); |
| |
| MOCK_METHOD(void, dump, (std::string& dump, const std::string& eventHubDevStr), ()); |
| MOCK_METHOD(void, addEmptyEventHubDevice, (int32_t eventHubId), ()); |
| MOCK_METHOD(std::list<NotifyArgs>, addEventHubDevice, |
| (nsecs_t when, int32_t eventHubId, const InputReaderConfiguration& readerConfig), |
| ()); |
| MOCK_METHOD(void, removeEventHubDevice, (int32_t eventHubId), ()); |
| MOCK_METHOD(std::list<NotifyArgs>, configure, |
| (nsecs_t when, const InputReaderConfiguration& readerConfig, |
| ConfigurationChanges changes), |
| ()); |
| MOCK_METHOD(std::list<NotifyArgs>, reset, (nsecs_t when), ()); |
| MOCK_METHOD(std::list<NotifyArgs>, process, (const RawEvent* rawEvents, size_t count), ()); |
| MOCK_METHOD(std::list<NotifyArgs>, timeoutExpired, (nsecs_t when), ()); |
| MOCK_METHOD(std::list<NotifyArgs>, updateExternalStylusState, (const StylusState& state), ()); |
| |
| MOCK_METHOD(InputDeviceInfo, getDeviceInfo, (), ()); |
| MOCK_METHOD(int32_t, getKeyCodeState, (uint32_t sourceMask, int32_t keyCode), ()); |
| MOCK_METHOD(int32_t, getScanCodeState, (uint32_t sourceMask, int32_t scanCode), ()); |
| MOCK_METHOD(int32_t, getSwitchState, (uint32_t sourceMask, int32_t switchCode), ()); |
| MOCK_METHOD(int32_t, getKeyCodeForKeyLocation, (int32_t locationKeyCode), (const)); |
| MOCK_METHOD(bool, markSupportedKeyCodes, |
| (uint32_t sourceMask, const std::vector<int32_t>& keyCodes, uint8_t* outFlags), ()); |
| MOCK_METHOD(std::list<NotifyArgs>, vibrate, |
| (const VibrationSequence& sequence, ssize_t repeat, int32_t token), ()); |
| MOCK_METHOD(std::list<NotifyArgs>, cancelVibrate, (int32_t token), ()); |
| MOCK_METHOD(bool, isVibrating, (), ()); |
| MOCK_METHOD(std::vector<int32_t>, getVibratorIds, (), ()); |
| MOCK_METHOD(std::list<NotifyArgs>, cancelTouch, (nsecs_t when, nsecs_t readTime), ()); |
| MOCK_METHOD(bool, enableSensor, |
| (InputDeviceSensorType sensorType, std::chrono::microseconds samplingPeriod, |
| std::chrono::microseconds maxBatchReportLatency), |
| ()); |
| |
| MOCK_METHOD(void, disableSensor, (InputDeviceSensorType sensorType), ()); |
| MOCK_METHOD(void, flushSensor, (InputDeviceSensorType sensorType), ()); |
| |
| MOCK_METHOD(std::optional<int32_t>, getBatteryEventHubId, (), (const)); |
| |
| MOCK_METHOD(bool, setLightColor, (int32_t lightId, int32_t color), ()); |
| MOCK_METHOD(bool, setLightPlayerId, (int32_t lightId, int32_t playerId), ()); |
| MOCK_METHOD(std::optional<int32_t>, getLightColor, (int32_t lightId), ()); |
| MOCK_METHOD(std::optional<int32_t>, getLightPlayerId, (int32_t lightId), ()); |
| |
| MOCK_METHOD(int32_t, getMetaState, (), ()); |
| MOCK_METHOD(void, setKeyboardType, (KeyboardType keyboardType), ()); |
| |
| MOCK_METHOD(const PropertyMap&, getConfiguration, (), (const, override)); |
| |
| MOCK_METHOD(NotifyDeviceResetArgs, notifyReset, (nsecs_t when), ()); |
| |
| MOCK_METHOD(std::optional<ui::LogicalDisplayId>, getAssociatedDisplayId, (), ()); |
| |
| MOCK_METHOD(void, updateLedState, (bool reset), ()); |
| |
| MOCK_METHOD(size_t, getMapperCount, (), ()); |
| |
| virtual int32_t getGeneration() const override { return mGeneration; } |
| virtual void bumpGeneration() override { mGeneration++; } |
| |
| private: |
| int32_t mGeneration = 0; |
| }; |
| } // namespace android |