blob: 8d1c46b77d58cded88642fa701195afdf2a240d5 [file] [log] [blame]
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef ASH_ACCESSIBILITY_TEST_ACCESSIBILITY_CONTROLLER_CLEINT_H_
#define ASH_ACCESSIBILITY_TEST_ACCESSIBILITY_CONTROLLER_CLEINT_H_
#include "ash/public/cpp/accessibility_controller_client.h"
#include "ash/public/cpp/accessibility_controller_enums.h"
#include "base/macros.h"
#include "base/optional.h"
#include "chromeos/audio/chromeos_sounds.h"
#include "ui/accessibility/ax_enums.mojom.h"
namespace ash {
// Implement AccessibilityControllerClient mojo interface to simulate chrome
// behavior in tests. This breaks the ash/chrome dependency to allow testing ash
// code in isolation.
class TestAccessibilityControllerClient : public AccessibilityControllerClient {
public:
TestAccessibilityControllerClient();
~TestAccessibilityControllerClient();
static constexpr base::TimeDelta kShutdownSoundDuration =
base::TimeDelta::FromMilliseconds(1000);
// AccessibilityControllerClient:
void TriggerAccessibilityAlert(AccessibilityAlert alert) override;
void TriggerAccessibilityAlertWithMessage(
const std::string& message) override;
void PlayEarcon(chromeos::Sound sound_key) override;
base::TimeDelta PlayShutdownSound() override;
void HandleAccessibilityGesture(ax::mojom::Gesture gesture,
gfx::PointF location) override;
bool ToggleDictation() override;
void SilenceSpokenFeedback() override;
void OnTwoFingerTouchStart() override;
void OnTwoFingerTouchStop() override;
bool ShouldToggleSpokenFeedbackViaTouch() const override;
void PlaySpokenFeedbackToggleCountdown(int tick_count) override;
void RequestSelectToSpeakStateChange() override;
void RequestAutoclickScrollableBoundsForPoint(
gfx::Point& point_in_screen) override;
void MagnifierBoundsChanged(const gfx::Rect& bounds_in_screen) override;
void OnSwitchAccessDisabled() override;
void OnSelectToSpeakPanelAction(SelectToSpeakPanelAction action,
double value) override;
base::Optional<chromeos::Sound> GetPlayedEarconAndReset();
AccessibilityAlert last_a11y_alert() const { return last_a11y_alert_; }
ax::mojom::Gesture last_a11y_gesture() const { return last_a11y_gesture_; }
int select_to_speak_change_change_requests() const {
return select_to_speak_state_change_requests_;
}
const std::string& last_alert_message() const { return last_alert_message_; }
SelectToSpeakPanelAction last_select_to_speak_panel_action() const {
return last_select_to_speak_panel_action_;
}
double last_select_to_speak_panel_action_value() const {
return last_select_to_speak_panel_action_value_;
}
private:
AccessibilityAlert last_a11y_alert_ = AccessibilityAlert::NONE;
std::string last_alert_message_;
base::Optional<chromeos::Sound> sound_key_;
bool is_dictation_active_ = false;
SelectToSpeakPanelAction last_select_to_speak_panel_action_ =
SelectToSpeakPanelAction::kNone;
double last_select_to_speak_panel_action_value_ = 0.0;
ax::mojom::Gesture last_a11y_gesture_ = ax::mojom::Gesture::kNone;
int select_to_speak_state_change_requests_ = 0;
DISALLOW_COPY_AND_ASSIGN(TestAccessibilityControllerClient);
};
} // namespace ash
#endif // ASH_ACCESSIBILITY_TEST_ACCESSIBILITY_CONTROLLER_CLEINT_H_