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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
ash / system / accessibility / dictation_button_tray_unittest.cc [blame]
// Copyright 2018 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/system/accessibility/dictation_button_tray.h"
#include <memory>
#include "ash/accessibility/accessibility_controller.h"
#include "ash/accessibility/test_accessibility_controller_client.h"
#include "ash/constants/ash_features.h"
#include "ash/display/window_tree_host_manager.h"
#include "ash/login_status.h"
#include "ash/public/cpp/shelf_types.h"
#include "ash/resources/vector_icons/vector_icons.h"
#include "ash/root_window_controller.h"
#include "ash/rotator/screen_rotation_animator.h"
#include "ash/session/session_controller_impl.h"
#include "ash/shell.h"
#include "ash/strings/grit/ash_strings.h"
#include "ash/style/ash_color_id.h"
#include "ash/system/progress_indicator/progress_indicator.h"
#include "ash/system/status_area_widget.h"
#include "ash/system/status_area_widget_test_helper.h"
#include "ash/test/ash_test_base.h"
#include "ash/test/ash_test_helper.h"
#include "ash/wm/overview/overview_controller.h"
#include "ash/wm/splitview/split_view_controller.h"
#include "ash/wm/tablet_mode/tablet_mode_controller.h"
#include "ash/wm/window_state.h"
#include "ash/wm/window_util.h"
#include "base/command_line.h"
#include "base/strings/utf_string_conversions.h"
#include "base/test/bind.h"
#include "base/test/metrics/user_action_tester.h"
#include "base/test/scoped_feature_list.h"
#include "base/time/time.h"
#include "components/soda/soda_installer.h"
#include "components/soda/soda_installer_impl_chromeos.h"
#include "ui/accessibility/accessibility_features.h"
#include "ui/aura/client/aura_constants.h"
#include "ui/aura/window.h"
#include "ui/base/ime/ash/ime_bridge.h"
#include "ui/base/ime/ash/input_method_ash.h"
#include "ui/base/ime/fake_text_input_client.h"
#include "ui/base/ime/text_input_type.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/color/color_provider.h"
#include "ui/compositor/scoped_animation_duration_scale_mode.h"
#include "ui/display/display_switches.h"
#include "ui/display/manager/display_manager.h"
#include "ui/events/event.h"
#include "ui/events/gestures/gesture_types.h"
#include "ui/events/types/event_type.h"
#include "ui/gfx/color_palette.h"
#include "ui/gfx/image/image_unittest_util.h"
#include "ui/gfx/paint_vector_icon.h"
#include "ui/views/accessibility/view_accessibility.h"
#include "ui/views/controls/image_view.h"
#include "ui/wm/core/window_util.h"
namespace ash {
namespace {
const std::string kEnabledTooltip = "Dictation";
const std::string kDisabledTooltip = "Downloading speech files";
DictationButtonTray* GetTray() {
return StatusAreaWidgetTestHelper::GetStatusAreaWidget()
->dictation_button_tray();
}
// ProgressIndicatorWaiter -----------------------------------------------------
// A class which supports waiting for a progress indicator to reach a desired
// state of progress.
class ProgressIndicatorWaiter {
public:
ProgressIndicatorWaiter() = default;
ProgressIndicatorWaiter(const ProgressIndicatorWaiter&) = delete;
ProgressIndicatorWaiter& operator=(const ProgressIndicatorWaiter&) = delete;
~ProgressIndicatorWaiter() = default;
// Waits for `progress_indicator` to reach the specified `progress`. If the
// `progress_indicator` is already at `progress`, this method no-ops.
void WaitForProgress(ProgressIndicator* progress_indicator,
const std::optional<float>& progress) {
if (progress_indicator->progress() == progress)
return;
base::RunLoop run_loop;
auto subscription = progress_indicator->AddProgressChangedCallback(
base::BindLambdaForTesting([&]() {
if (progress_indicator->progress() == progress)
run_loop.Quit();
}));
run_loop.Run();
}
};
} // namespace
// DictationButtonTrayTest -----------------------------------------------------
class DictationButtonTrayTest : public AshTestBase {
public:
DictationButtonTrayTest() = default;
~DictationButtonTrayTest() override = default;
DictationButtonTrayTest(const DictationButtonTrayTest&) = delete;
DictationButtonTrayTest& operator=(const DictationButtonTrayTest&) = delete;
// AshTestBase:
void SetUp() override {
// Focus some input text so the Dictation button will be enabled.
fake_text_input_client_ =
std::make_unique<ui::FakeTextInputClient>(ui::TEXT_INPUT_TYPE_TEXT);
InputMethodAsh ime(nullptr);
IMEBridge::Get()->SetInputContextHandler(&ime);
AshTestBase::SetUp();
FocusTextInputClient();
}
protected:
views::ImageView* GetImageView(DictationButtonTray* tray) {
return tray->icon_;
}
void CheckDictationStatusAndUpdateIcon(DictationButtonTray* tray) {
tray->CheckDictationStatusAndUpdateIcon();
}
void FocusTextInputClient() {
Shell::Get()
->window_tree_host_manager()
->input_method()
->SetFocusedTextInputClient(fake_text_input_client_.get());
}
void DetachTextInputClient() {
Shell::Get()
->window_tree_host_manager()
->input_method()
->SetFocusedTextInputClient(nullptr);
}
std::unique_ptr<ui::FakeTextInputClient> fake_text_input_client_;
};
// Ensures that creation doesn't cause any crashes and adds the image icon.
// Also checks that the tray is visible and has an accessible name.
TEST_F(DictationButtonTrayTest, BasicConstruction) {
AccessibilityController* controller =
Shell::Get()->accessibility_controller();
controller->dictation().SetEnabled(true);
EXPECT_TRUE(GetImageView(GetTray()));
EXPECT_TRUE(GetTray()->GetVisible());
ui::AXNodeData tray_data;
GetTray()->GetViewAccessibility().GetAccessibleNodeData(&tray_data);
EXPECT_EQ(
tray_data.GetString16Attribute(ax::mojom::StringAttribute::kName),
l10n_util::GetStringUTF16(IDS_ASH_DICTATION_BUTTON_ACCESSIBLE_NAME));
}
// Test that clicking the button activates dictation.
TEST_F(DictationButtonTrayTest, ButtonActivatesDictation) {
AccessibilityController* controller =
Shell::Get()->accessibility_controller();
TestAccessibilityControllerClient client;
controller->dictation().SetEnabled(true);
EXPECT_FALSE(controller->dictation_active());
GestureTapOn(GetTray());
EXPECT_TRUE(controller->dictation_active());
GestureTapOn(GetTray());
EXPECT_FALSE(controller->dictation_active());
}
// Test that activating dictation causes the button to activate.
TEST_F(DictationButtonTrayTest, ActivatingDictationActivatesButton) {
AccessibilityController* controller =
Shell::Get()->accessibility_controller();
controller->dictation().SetEnabled(true);
Shell::Get()->OnDictationStarted();
EXPECT_TRUE(GetTray()->is_active());
Shell::Get()->OnDictationEnded();
EXPECT_FALSE(GetTray()->is_active());
}
// Tests that the tray only renders as active while dictation is listening. Any
// termination of dictation clears the active state.
TEST_F(DictationButtonTrayTest, ActiveStateOnlyDuringDictation) {
AccessibilityController* controller =
Shell::Get()->accessibility_controller();
TestAccessibilityControllerClient client;
controller->dictation().SetEnabled(true);
ASSERT_FALSE(controller->dictation_active());
ASSERT_FALSE(GetTray()->is_active());
// In an input text area by default.
EXPECT_TRUE(GetTray()->GetEnabled());
Shell::Get()->accelerator_controller()->PerformActionIfEnabled(
AcceleratorAction::kEnableOrToggleDictation, {});
EXPECT_TRUE(controller->dictation_active());
EXPECT_TRUE(GetTray()->is_active());
Shell::Get()->accelerator_controller()->PerformActionIfEnabled(
AcceleratorAction::kEnableOrToggleDictation, {});
EXPECT_FALSE(controller->dictation_active());
EXPECT_FALSE(GetTray()->is_active());
}
TEST_F(DictationButtonTrayTest, ImageIcons) {
AccessibilityController* controller =
Shell::Get()->accessibility_controller();
TestAccessibilityControllerClient client;
controller->dictation().SetEnabled(true);
const auto* color_provider = GetTray()->GetColorProvider();
const auto off_icon_color =
color_provider->GetColor(cros_tokens::kCrosSysOnSurface);
const auto on_icon_color =
color_provider->GetColor(cros_tokens::kCrosSysSystemOnPrimaryContainer);
gfx::ImageSkia off_icon =
gfx::CreateVectorIcon(kDictationOffNewuiIcon, off_icon_color);
gfx::ImageSkia on_icon =
gfx::CreateVectorIcon(kDictationOnNewuiIcon, on_icon_color);
views::ImageView* view = GetImageView(GetTray());
EXPECT_TRUE(gfx::test::AreBitmapsEqual(*view->GetImage().bitmap(),
*off_icon.bitmap()));
Shell::Get()->accelerator_controller()->PerformActionIfEnabled(
AcceleratorAction::kEnableOrToggleDictation, {});
EXPECT_TRUE(gfx::test::AreBitmapsEqual(*view->GetImage().bitmap(),
*on_icon.bitmap()));
}
TEST_F(DictationButtonTrayTest, DisabledWhenNoInputFocused) {
DetachTextInputClient();
AccessibilityController* controller =
Shell::Get()->accessibility_controller();
controller->dictation().SetEnabled(true);
DictationButtonTray* tray = GetTray();
EXPECT_FALSE(tray->GetEnabled());
// Action doesn't work because disabled.
Shell::Get()->accelerator_controller()->PerformActionIfEnabled(
AcceleratorAction::kEnableOrToggleDictation, {});
EXPECT_FALSE(controller->dictation_active());
EXPECT_FALSE(tray->GetEnabled());
FocusTextInputClient();
EXPECT_TRUE(tray->GetEnabled());
DetachTextInputClient();
EXPECT_FALSE(tray->GetEnabled());
}
// Base class for SODA tests of the dictation button tray.
class DictationButtonTraySodaTest : public DictationButtonTrayTest {
public:
DictationButtonTraySodaTest() = default;
~DictationButtonTraySodaTest() override = default;
DictationButtonTraySodaTest(const DictationButtonTraySodaTest&) = delete;
DictationButtonTraySodaTest& operator=(const DictationButtonTraySodaTest&) =
delete;
// DictationButtonTrayTest:
void SetUp() override {
DictationButtonTrayTest::SetUp();
scoped_feature_list_.InitAndEnableFeature(
features::kOnDeviceSpeechRecognition);
// Since this test suite is part of ash unit tests, the
// SodaInstallerImplChromeOS is never created (it's normally created when
// `ChromeBrowserMainPartsAsh` initializes). Create it here so that
// calling speech::SodaInstaller::GetInstance) returns a valid instance.
soda_installer_impl_ =
std::make_unique<speech::SodaInstallerImplChromeOS>();
}
void TearDown() override {
soda_installer_impl_.reset();
AshTestBase::TearDown();
}
ProgressIndicator* GetProgressIndicator() {
return GetTray()->progress_indicator_.get();
}
float GetProgressIndicatorProgress() const {
DCHECK(GetTray()->progress_indicator_);
std::optional<float> progress = GetTray()->progress_indicator_->progress();
DCHECK(progress.has_value());
return progress.value();
}
bool IsImageVisible() {
DCHECK(GetTray()->icon_);
ui::Layer* const layer = GetTray()->icon_->layer();
if (!layer)
return true;
return layer->GetTargetOpacity() == 1.f &&
layer->GetTargetTransform() == gfx::Transform();
}
bool IsProgressIndicatorVisible() const {
const float progress = GetProgressIndicatorProgress();
return progress > 0.f && progress < 1.f;
}
private:
base::test::ScopedFeatureList scoped_feature_list_;
std::unique_ptr<speech::SodaInstallerImplChromeOS> soda_installer_impl_;
};
// Tests the behavior of the UpdateOnSpeechRecognitionDownloadChanged() method.
TEST_F(DictationButtonTraySodaTest, UpdateOnSpeechRecognitionDownloadChanged) {
AccessibilityController* controller =
Shell::Get()->accessibility_controller();
controller->dictation().SetEnabled(true);
DictationButtonTray* tray = GetTray();
views::ImageView* image = GetImageView(tray);
EXPECT_TRUE(IsImageVisible());
// Download progress of 0 indicates that download is not in-progress.
tray->UpdateOnSpeechRecognitionDownloadChanged(/*download_progress=*/0);
EXPECT_EQ(0, tray->download_progress());
EXPECT_TRUE(tray->GetEnabled());
EXPECT_EQ(base::UTF8ToUTF16(kEnabledTooltip), image->GetTooltipText());
// The tray icon should be visible when the download is not in-progress.
ProgressIndicator* progress_indicator = GetProgressIndicator();
ProgressIndicatorWaiter().WaitForProgress(
progress_indicator, ProgressIndicator::kProgressComplete);
EXPECT_FALSE(IsProgressIndicatorVisible());
EXPECT_TRUE(IsImageVisible());
// Any number 0 < number < 100 means that download is in-progress.
tray->UpdateOnSpeechRecognitionDownloadChanged(/*download_progress=*/50);
EXPECT_EQ(50, tray->download_progress());
EXPECT_FALSE(tray->GetEnabled());
EXPECT_EQ(base::UTF8ToUTF16(kDisabledTooltip), image->GetTooltipText());
// Enabled state doesn't change even if text input is focused.
DetachTextInputClient();
EXPECT_FALSE(tray->GetEnabled());
FocusTextInputClient();
EXPECT_FALSE(tray->GetEnabled());
// The tray icon should still be visible when the download is in progress.
ProgressIndicatorWaiter().WaitForProgress(progress_indicator, 0.5f);
EXPECT_TRUE(IsProgressIndicatorVisible());
EXPECT_FALSE(progress_indicator->inner_icon_visible());
EXPECT_TRUE(IsImageVisible());
tray->UpdateOnSpeechRecognitionDownloadChanged(/*download_progress=*/70);
EXPECT_EQ(70, tray->download_progress());
EXPECT_FALSE(tray->GetEnabled());
EXPECT_EQ(base::UTF8ToUTF16(kDisabledTooltip), image->GetTooltipText());
// The tray icon should be visible when the download is in progress.
ProgressIndicatorWaiter().WaitForProgress(progress_indicator, 0.7f);
EXPECT_TRUE(IsProgressIndicatorVisible());
EXPECT_FALSE(progress_indicator->inner_icon_visible());
EXPECT_TRUE(IsImageVisible());
// Similar to 0, a value of 100 means that download is not in-progress.
tray->UpdateOnSpeechRecognitionDownloadChanged(/*download_progress=*/100);
EXPECT_EQ(100, tray->download_progress());
EXPECT_TRUE(tray->GetEnabled());
EXPECT_EQ(base::UTF8ToUTF16(kEnabledTooltip), image->GetTooltipText());
// The tray icon should be visible when the download is not in-progress.
ProgressIndicatorWaiter().WaitForProgress(
progress_indicator, ProgressIndicator::kProgressComplete);
EXPECT_FALSE(IsProgressIndicatorVisible());
EXPECT_TRUE(IsImageVisible());
}
} // namespace ash