1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
|
// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ash/quick_insert/quick_insert_caps_lock_bubble_controller.h"
#include "ash/shell.h"
#include "ash/test/ash_test_base.h"
#include "base/test/task_environment.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "ui/aura/window_tree_host.h"
#include "ui/base/ime/ash/fake_ime_keyboard.h"
#include "ui/base/ime/fake_text_input_client.h"
#include "ui/base/ime/text_input_type.h"
#include "ui/events/base_event_utils.h"
namespace ash {
namespace {
class QuickInsertCapsLockBubbleControllerTest : public AshTestBase {
public:
QuickInsertCapsLockBubbleControllerTest()
: AshTestBase(base::test::TaskEnvironment::TimeSource::MOCK_TIME) {}
};
TEST_F(QuickInsertCapsLockBubbleControllerTest,
ToggleCapsLockWhenNotFocusedDoesNotShowBubble) {
input_method::FakeImeKeyboard ime_keyboard;
QuickInsertCapsLockBubbleController controller(&ime_keyboard);
ime_keyboard.SetCapsLockEnabled(true);
EXPECT_FALSE(controller.bubble_view_for_testing());
}
TEST_F(QuickInsertCapsLockBubbleControllerTest,
ToggleCapsLockInTextFieldShowsBubbleForAShortTime) {
input_method::FakeImeKeyboard ime_keyboard;
QuickInsertCapsLockBubbleController controller(&ime_keyboard);
ui::FakeTextInputClient input_field(
Shell::GetPrimaryRootWindow()->GetHost()->GetInputMethod(),
{.type = ui::TEXT_INPUT_TYPE_TEXT});
input_field.Focus();
ime_keyboard.SetCapsLockEnabled(true);
EXPECT_TRUE(controller.bubble_view_for_testing());
task_environment()->FastForwardBy(base::Seconds(4));
EXPECT_FALSE(controller.bubble_view_for_testing());
}
TEST_F(QuickInsertCapsLockBubbleControllerTest,
ToggleCapsLockTwiceQuicklyInTextFieldExtendsBubbleShowTime) {
input_method::FakeImeKeyboard ime_keyboard;
QuickInsertCapsLockBubbleController controller(&ime_keyboard);
ui::FakeTextInputClient input_field(
Shell::GetPrimaryRootWindow()->GetHost()->GetInputMethod(),
{.type = ui::TEXT_INPUT_TYPE_TEXT});
input_field.Focus();
ime_keyboard.SetCapsLockEnabled(true);
task_environment()->FastForwardBy(base::Seconds(1));
ime_keyboard.SetCapsLockEnabled(false);
EXPECT_TRUE(controller.bubble_view_for_testing());
task_environment()->FastForwardBy(base::Seconds(1));
EXPECT_TRUE(controller.bubble_view_for_testing());
task_environment()->FastForwardBy(base::Seconds(2));
EXPECT_FALSE(controller.bubble_view_for_testing());
}
TEST_F(QuickInsertCapsLockBubbleControllerTest, InputEventClosesBubble) {
input_method::FakeImeKeyboard ime_keyboard;
QuickInsertCapsLockBubbleController controller(&ime_keyboard);
ui::FakeTextInputClient input_field(
Shell::GetPrimaryRootWindow()->GetHost()->GetInputMethod(),
{.type = ui::TEXT_INPUT_TYPE_TEXT});
input_field.Focus();
ime_keyboard.SetCapsLockEnabled(true);
task_environment()->FastForwardBy(base::Seconds(1));
EXPECT_TRUE(controller.bubble_view_for_testing());
ui::MouseEvent event(ui::EventType::kMousePressed, gfx::Point(5, 5),
gfx::Point(5, 5), ui::EventTimeForNow(),
ui::EF_LEFT_MOUSE_BUTTON, ui::EF_LEFT_MOUSE_BUTTON);
controller.OnMouseEvent(&event);
EXPECT_FALSE(controller.bubble_view_for_testing());
}
TEST_F(QuickInsertCapsLockBubbleControllerTest,
InputEventDoesNotCloseBubbleIfTooEarly) {
input_method::FakeImeKeyboard ime_keyboard;
QuickInsertCapsLockBubbleController controller(&ime_keyboard);
ui::FakeTextInputClient input_field(
Shell::GetPrimaryRootWindow()->GetHost()->GetInputMethod(),
{.type = ui::TEXT_INPUT_TYPE_TEXT});
input_field.Focus();
ime_keyboard.SetCapsLockEnabled(true);
EXPECT_TRUE(controller.bubble_view_for_testing());
ui::MouseEvent event(ui::EventType::kMousePressed, gfx::Point(5, 5),
gfx::Point(5, 5), ui::EventTimeForNow(),
ui::EF_LEFT_MOUSE_BUTTON, ui::EF_LEFT_MOUSE_BUTTON);
controller.OnMouseEvent(&event);
EXPECT_TRUE(controller.bubble_view_for_testing());
}
} // namespace
} // namespace ash
|