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
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
ash / system / network / network_feature_pod_controller_unittest.cc [blame]
// Copyright 2021 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/network/network_feature_pod_controller.h"
#include <memory>
#include <string>
#include "ash/constants/quick_settings_catalogs.h"
#include "ash/session/test_session_controller_client.h"
#include "ash/shell.h"
#include "ash/strings/grit/ash_strings.h"
#include "ash/system/model/system_tray_model.h"
#include "ash/system/network/active_network_icon.h"
#include "ash/system/network/network_icon.h"
#include "ash/system/unified/feature_tile.h"
#include "ash/system/unified/unified_system_tray.h"
#include "ash/system/unified/unified_system_tray_bubble.h"
#include "ash/system/unified/unified_system_tray_controller.h"
#include "ash/system/unified/unified_system_tray_model.h"
#include "ash/test/ash_test_base.h"
#include "base/strings/stringprintf.h"
#include "base/test/metrics/histogram_tester.h"
#include "chromeos/ash/components/network/network_handler_callbacks.h"
#include "chromeos/ash/components/network/network_state_handler.h"
#include "chromeos/ash/components/network/network_state_test_helper.h"
#include "chromeos/ash/components/network/network_type_pattern.h"
#include "chromeos/ash/components/network/technology_state_controller.h"
#include "chromeos/ash/services/network_config/public/cpp/cros_network_config_test_helper.h"
#include "chromeos/constants/chromeos_features.h"
#include "third_party/cros_system_api/dbus/shill/dbus-constants.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/gfx/image/image.h"
#include "ui/gfx/image/image_skia.h"
#include "ui/gfx/image/image_unittest_util.h"
#include "ui/views/controls/button/button.h"
#include "ui/views/controls/button/image_button.h"
namespace ash {
namespace {
const char* kStubCellularDevice = "/device/stub_cellular_device";
// The GUIDs used for the different network types.
const char* kNetworkGuidCellular = "cellular_guid";
const char* kNetworkGuidTether = "tether_guid";
const char* kNetworkGuidWifi = "wifi_guid";
constexpr char kNetworkGuidEthernet[] = "ethernet_guid";
constexpr char kNetworkGuidTetherWiFi[] = "tether_wifi_guid";
// The templates used to configure services for different network types.
constexpr char kServicePatternCellular[] = R"({
"GUID": "%s", "Type": "cellular", "State": "online", "Strength": 100,
"Device": "%s", "Cellular.NetworkTechnology": "LTE"})";
constexpr char kServicePatternEthernet[] = R"({
"GUID": "%s", "Type": "ethernet", "State": "online"})";
constexpr char kServicePatternWiFi[] = R"({
"GUID": "%s", "Type": "wifi", "State": "online", "Strength": 100})";
constexpr char kServicePatternTetherWiFi[] = R"({
"GUID": "%s", "Type": "wifi", "State": "idle"})";
// Compute the next signal strength that is larger than |signal_strength| that
// would be placed into a different bucket (e.g. NONE to WEAK).
int ComputeNextSignalStrength(int signal_strength) {
EXPECT_LE(0, signal_strength);
const network_icon::SignalStrength previous =
network_icon::GetSignalStrength(signal_strength);
do {
// Don't bother incrementing past |100|.
if (signal_strength >= 90) {
return 100;
}
// Small signal strength changes don't cause the network to be "changed".
signal_strength += 10;
} while (network_icon::GetSignalStrength(signal_strength) == previous);
return signal_strength;
}
} // namespace
class NetworkFeaturePodControllerTest : public AshTestBase {
public:
void SetUp() override {
AshTestBase::SetUp();
// Create the feature tile.
GetPrimaryUnifiedSystemTray()->ShowBubble();
CreateFeatureTile();
// Add the non-default cellular and ethernet devices to Shill.
network_state_helper()->manager_test()->AddTechnology(shill::kTypeCellular,
/*enabled=*/true);
network_state_helper()->AddDevice(kStubCellularDevice, shill::kTypeCellular,
"stub_cellular_device");
network_state_helper()->AddDevice("/device/stub_eth_device",
shill::kTypeEthernet, "stub_eth_device");
network_state_handler()->SetTetherTechnologyState(
NetworkStateHandler::TechnologyState::TECHNOLOGY_ENABLED);
base::RunLoop().RunUntilIdle();
}
void TearDown() override {
network_feature_pod_controller_.reset();
AshTestBase::TearDown();
}
protected:
void CreateFeatureTile() {
network_feature_pod_controller_ =
std::make_unique<NetworkFeaturePodController>(tray_controller());
feature_tile_ = quick_settings_view()->AddChildView(
network_feature_pod_controller_->CreateTile());
}
// Disabling a network technology does not remove corresponding networks from
// the testing fakes. This function is used to clear the existing networks.
void ClearNetworks() {
network_state_handler()->RemoveTetherNetworkState(kNetworkGuidTether);
network_state_helper()->ClearServices();
base::RunLoop().RunUntilIdle();
}
void LockScreen() {
GetSessionControllerClient()->LockScreen();
// Changing the lock state closes the system tray bubble which destroys all
// feature tiles, so open the bubble and recreate the feature tile.
GetPrimaryUnifiedSystemTray()->ShowBubble();
CreateFeatureTile();
// Perform an action to cause the button to be updated since we do not
// actually observe session state changes.
PressLabel();
}
void UnlockScreen() {
GetSessionControllerClient()->UnlockScreen();
// Changing the lock state closes the system tray bubble which destroys all
// feature tiles, so open the bubble and recreate the feature tile.
GetPrimaryUnifiedSystemTray()->ShowBubble();
CreateFeatureTile();
// Perform an action to cause the button to be updated since we do not
// actually observe session state changes.
PressLabel();
}
void PressIcon() {
network_feature_pod_controller_->OnIconPressed();
base::RunLoop().RunUntilIdle();
}
void PressLabel() {
network_feature_pod_controller_->OnLabelPressed();
base::RunLoop().RunUntilIdle();
}
void SetupCellular() {
ASSERT_TRUE(cellular_path_.empty());
cellular_path_ = ConfigureService(base::StringPrintf(
kServicePatternCellular, kNetworkGuidCellular, kStubCellularDevice));
base::RunLoop().RunUntilIdle();
}
void SetupEthernet() {
ASSERT_TRUE(ethernet_path_.empty());
ethernet_path_ = ConfigureService(
base::StringPrintf(kServicePatternEthernet, kNetworkGuidEthernet));
base::RunLoop().RunUntilIdle();
}
void SetupTether() {
ASSERT_TRUE(tether_path_.empty());
ASSERT_TRUE(tether_wifi_path_.empty());
tether_wifi_path_ = ConfigureService(
base::StringPrintf(kServicePatternTetherWiFi, kNetworkGuidTetherWiFi));
base::RunLoop().RunUntilIdle();
network_state_handler()->AddTetherNetworkState(
kNetworkGuidTether, /*name=*/kNetworkGuidTether,
/*carrier=*/"carrier_stub",
/*battery_percentage=*/0, /*signal_strength=*/0,
/*has_connected_to_host=*/false);
network_state_handler()->SetTetherNetworkStateConnecting(
/*guid=*/kNetworkGuidTether);
ASSERT_TRUE(
network_state_handler()->AssociateTetherNetworkStateWithWifiNetwork(
/*tether_network_guid=*/kNetworkGuidTether,
/*wifi_network_guid=*/kNetworkGuidTetherWiFi));
network_state_handler()->SetTetherNetworkStateConnected(
/*guid=*/kNetworkGuidTether);
SetServiceProperty(/*service_path=*/tether_wifi_path_,
/*key=*/shill::kStateProperty,
/*value=*/base::Value(shill::kStateOnline));
base::RunLoop().RunUntilIdle();
network_state_handler()->SetTetherNetworkStateConnected(
/*guid=*/kNetworkGuidTether);
}
void SetupWiFi() {
ASSERT_TRUE(wifi_path_.empty());
wifi_path_ = ConfigureService(
base::StringPrintf(kServicePatternWiFi, kNetworkGuidWifi));
base::RunLoop().RunUntilIdle();
}
void SetServiceProperty(const std::string& service_path,
const std::string& key,
const base::Value& value) {
network_state_helper()->SetServiceProperty(service_path, key, value);
base::RunLoop().RunUntilIdle();
}
bool IsDetailedViewEmpty() {
auto* container = quick_settings_view()->detailed_view_container();
return container->children().empty();
}
void CheckNetworkDetailedViewFocused() {
views::View::Views children;
EXPECT_TRUE(quick_settings_view()->detailed_view_container());
children = quick_settings_view()->detailed_view_container()->children();
ASSERT_EQ(1u, children.size());
EXPECT_STREQ("NetworkDetailedNetworkViewImpl",
children.at(0)->GetClassName());
}
void CheckSignalStrengthSubLabel(
base::RepeatingCallback<void(int)> set_signal_strength) {
int signal_strength = 0;
set_signal_strength.Run(signal_strength);
EXPECT_EQ(
l10n_util::GetStringUTF16(IDS_ASH_STATUS_TRAY_NETWORK_STATUS_CONNECTED),
GetSubLabelText());
signal_strength = ComputeNextSignalStrength(signal_strength);
set_signal_strength.Run(signal_strength);
EXPECT_EQ(l10n_util::GetStringUTF16(
IDS_ASH_STATUS_TRAY_NETWORK_SIGNAL_WEAK_SUBLABEL),
GetSubLabelText());
signal_strength = ComputeNextSignalStrength(signal_strength);
set_signal_strength.Run(signal_strength);
EXPECT_EQ(l10n_util::GetStringUTF16(
IDS_ASH_STATUS_TRAY_NETWORK_SIGNAL_MEDIUM_SUBLABEL),
GetSubLabelText());
signal_strength = ComputeNextSignalStrength(signal_strength);
set_signal_strength.Run(signal_strength);
EXPECT_EQ(l10n_util::GetStringUTF16(
IDS_ASH_STATUS_TRAY_NETWORK_SIGNAL_STRONG_SUBLABEL),
GetSubLabelText());
}
bool IsButtonVisible() { return feature_tile_->GetVisible(); }
bool IsButtonEnabled() { return feature_tile_->GetEnabled(); }
bool IsDiveInButtonEnabled() { return feature_tile_->GetEnabled(); }
void SetButtonEnabled(bool enabled) { feature_tile_->SetEnabled(enabled); }
bool IsButtonToggled() { return feature_tile_->IsToggled(); }
const std::u16string GetLabelText() {
return feature_tile_->label()->GetText();
}
const std::u16string GetSubLabelText() {
return feature_tile_->sub_label()->GetText();
}
const std::u16string GetIconTooltipText() {
return feature_tile_->icon_button()->GetTooltipText();
}
const std::u16string GetLabelTooltipText() {
return feature_tile_->GetTooltipText();
}
NetworkStateTestHelper* network_state_helper() {
return &network_config_helper_.network_state_helper();
}
NetworkStateHandler* network_state_handler() {
return network_state_helper()->network_state_handler();
}
TechnologyStateController* technology_state_controller() {
return network_state_helper()->technology_state_controller();
}
FeatureTile* feature_tile() { return feature_tile_; }
UnifiedSystemTrayController* tray_controller() {
return GetPrimaryUnifiedSystemTray()
->bubble()
->unified_system_tray_controller();
}
QuickSettingsView* quick_settings_view() {
return GetPrimaryUnifiedSystemTray()->bubble()->quick_settings_view();
}
const std::string& cellular_path() const { return cellular_path_; }
const std::string& ethernet_path() const { return ethernet_path_; }
const std::string& tether_wifi_path() const { return tether_wifi_path_; }
const std::string& wifi_path() const { return wifi_path_; }
private:
std::string ConfigureService(const std::string& shill_json_string) {
return network_state_helper()->ConfigureService(shill_json_string);
}
network_config::CrosNetworkConfigTestHelper network_config_helper_;
std::string cellular_path_;
std::string ethernet_path_;
std::string wifi_path_;
std::string tether_path_;
std::string tether_wifi_path_;
raw_ptr<FeatureTile, DanglingUntriaged> feature_tile_;
std::unique_ptr<NetworkFeaturePodController> network_feature_pod_controller_;
};
TEST_F(NetworkFeaturePodControllerTest, PressingLabelShowsNetworkDetailedView) {
ASSERT_TRUE(IsDetailedViewEmpty());
PressLabel();
CheckNetworkDetailedViewFocused();
}
TEST_F(NetworkFeaturePodControllerTest,
EnablingNetworkTechnologyShowsNetworkDetailedView) {
// Disable WiFi.
PressIcon();
// We do not navigate to the detailed view when a network technology becomes
// disabled.
EXPECT_TRUE(IsDetailedViewEmpty());
PressIcon();
CheckNetworkDetailedViewFocused();
}
TEST_F(NetworkFeaturePodControllerTest,
HasCorrectButtonStateWhenNetworkStateChanges) {
EXPECT_TRUE(IsButtonEnabled());
EXPECT_TRUE(IsButtonVisible());
// When WiFi is available the button will always be toggled, even when there
// are no connected networks.
EXPECT_TRUE(IsButtonToggled());
SetupWiFi();
EXPECT_TRUE(IsButtonToggled());
ClearNetworks();
SetupTether();
EXPECT_TRUE(IsButtonToggled());
ClearNetworks();
technology_state_controller()->SetTechnologiesEnabled(
NetworkTypePattern::WiFi(), /*enabled=*/false,
network_handler::ErrorCallback());
base::RunLoop().RunUntilIdle();
// Any connected network should cause the button to be toggled.
EXPECT_FALSE(IsButtonToggled());
SetupCellular();
EXPECT_TRUE(IsButtonToggled());
ClearNetworks();
EXPECT_FALSE(IsButtonToggled());
SetupEthernet();
EXPECT_TRUE(IsButtonToggled());
ClearNetworks();
}
TEST_F(NetworkFeaturePodControllerTest, CannotBeModifiedWhenScreenIsLocked) {
EXPECT_TRUE(IsButtonEnabled());
EXPECT_TRUE(IsDiveInButtonEnabled());
LockScreen();
EXPECT_FALSE(IsButtonEnabled());
EXPECT_FALSE(IsDiveInButtonEnabled());
}
TEST_F(NetworkFeaturePodControllerTest,
PressingIconOrLabelIsHandledCorrectly_Cellular) {
ASSERT_TRUE(network_state_handler()->IsTechnologyEnabled(
NetworkTypePattern::Cellular()));
SetupCellular();
// Make sure that Cellular cannot be toggled on when the icon or label is
// pressed, only toggled off.
for (int i = 0; i < 2; ++i) {
PressIcon();
EXPECT_FALSE(network_state_handler()->IsTechnologyEnabled(
NetworkTypePattern::Cellular()));
ClearNetworks();
}
PressLabel();
EXPECT_FALSE(network_state_handler()->IsTechnologyEnabled(
NetworkTypePattern::Cellular()));
}
TEST_F(NetworkFeaturePodControllerTest,
PressingIconOrLabelIsHandledCorrectly_Ethernet) {
ASSERT_TRUE(network_state_handler()->IsTechnologyEnabled(
NetworkTypePattern::Ethernet()));
SetupEthernet();
// Make sure that Ethernet cannot be toggled when the icon is pressed.
PressIcon();
EXPECT_TRUE(network_state_handler()->IsTechnologyEnabled(
NetworkTypePattern::Ethernet()));
// Make sure that Ethernet cannot be toggled when the label is pressed.
PressLabel();
EXPECT_TRUE(network_state_handler()->IsTechnologyEnabled(
NetworkTypePattern::Ethernet()));
}
TEST_F(NetworkFeaturePodControllerTest,
PressingIconOrLabelIsHandledCorrectly_Tether) {
ASSERT_TRUE(network_state_handler()->IsTechnologyEnabled(
NetworkTypePattern::Tether()));
SetupTether();
// Make sure that Tether can only be toggled off when the icon is pressed.
for (int i = 0; i < 2; ++i) {
PressIcon();
EXPECT_FALSE(network_state_handler()->IsTechnologyEnabled(
NetworkTypePattern::Tether()));
ClearNetworks();
}
// Make sure that Tether cannot be toggled on when the label is pressed.
PressLabel();
EXPECT_FALSE(network_state_handler()->IsTechnologyEnabled(
NetworkTypePattern::Tether()));
}
TEST_F(NetworkFeaturePodControllerTest,
PressingIconOrLabelIsHandledCorrectly_WiFi) {
ASSERT_TRUE(
network_state_handler()->IsTechnologyEnabled(NetworkTypePattern::WiFi()));
// Make sure that WiFi can be toggled on and off when the icon is pressed.
PressIcon();
EXPECT_FALSE(
network_state_handler()->IsTechnologyEnabled(NetworkTypePattern::WiFi()));
PressIcon();
EXPECT_TRUE(
network_state_handler()->IsTechnologyEnabled(NetworkTypePattern::WiFi()));
PressIcon();
EXPECT_FALSE(
network_state_handler()->IsTechnologyEnabled(NetworkTypePattern::WiFi()));
// Make sure that WiFi is toggled on, and only on, when the label is pressed.
for (int i = 0; i < 2; ++i) {
PressLabel();
EXPECT_TRUE(network_state_handler()->IsTechnologyEnabled(
NetworkTypePattern::WiFi()));
}
}
TEST_F(NetworkFeaturePodControllerTest, HasCorrectLabel) {
EXPECT_EQ(
l10n_util::GetStringUTF16(IDS_ASH_STATUS_TRAY_NETWORK_DISCONNECTED_LABEL),
GetLabelText());
// For Ethernet we use a generic label.
SetupEthernet();
EXPECT_EQ(l10n_util::GetStringUTF16(IDS_ASH_STATUS_TRAY_ETHERNET),
GetLabelText());
ClearNetworks();
// For all other networks we use the name.
SetupCellular();
EXPECT_EQ(base::ASCIIToUTF16(kNetworkGuidCellular), GetLabelText());
ClearNetworks();
SetupTether();
EXPECT_EQ(base::ASCIIToUTF16(kNetworkGuidTether), GetLabelText());
ClearNetworks();
SetupWiFi();
EXPECT_EQ(base::ASCIIToUTF16(kNetworkGuidWifi), GetLabelText());
}
TEST_F(NetworkFeaturePodControllerTest, HasCorrectSubLabel_Cellular) {
EXPECT_EQ(l10n_util::GetStringUTF16(
IDS_ASH_STATUS_TRAY_NETWORK_DISCONNECTED_SUBLABEL),
GetSubLabelText());
SetupCellular();
// A network exists but we are not connected to it.
SetServiceProperty(cellular_path(), shill::kStateProperty,
base::Value(shill::kStateIdle));
EXPECT_EQ(l10n_util::GetStringUTF16(
IDS_ASH_STATUS_TRAY_NETWORK_DISCONNECTED_SUBLABEL),
GetSubLabelText());
// Mark the network as currently connecting.
SetServiceProperty(cellular_path(), shill::kStateProperty,
base::Value(shill::kStateAssociation));
EXPECT_EQ(l10n_util::GetStringUTF16(
IDS_ASH_STATUS_TRAY_NETWORK_CONNECTING_SUBLABEL),
GetSubLabelText());
// Cellular networks in the process of activating have a specific sub-label,
// even if the network is in the connecting state.
SetServiceProperty(cellular_path(), shill::kActivationStateProperty,
base::Value(shill::kActivationStateActivating));
EXPECT_EQ(l10n_util::GetStringUTF16(
IDS_ASH_STATUS_TRAY_NETWORK_ACTIVATING_SUBLABEL),
GetSubLabelText());
// Cellular networks that are activated and online have a specific sub-label
// depending on the network technology (e.g. LTE).
SetServiceProperty(cellular_path(), shill::kActivationStateProperty,
base::Value(shill::kActivationStateActivated));
SetServiceProperty(cellular_path(), shill::kStateProperty,
base::Value(shill::kStateOnline));
const base::flat_map<const char*, int> network_technology_to_text_id{{
{shill::kNetworkTechnology1Xrtt,
IDS_ASH_STATUS_TRAY_NETWORK_CELLULAR_TYPE_ONE_X},
{shill::kNetworkTechnologyGsm,
IDS_ASH_STATUS_TRAY_NETWORK_CELLULAR_TYPE_GSM},
{shill::kNetworkTechnologyGprs,
IDS_ASH_STATUS_TRAY_NETWORK_CELLULAR_TYPE_GPRS},
{shill::kNetworkTechnologyEdge,
IDS_ASH_STATUS_TRAY_NETWORK_CELLULAR_TYPE_EDGE},
{shill::kNetworkTechnologyEvdo,
IDS_ASH_STATUS_TRAY_NETWORK_CELLULAR_TYPE_THREE_G},
{shill::kNetworkTechnologyUmts,
IDS_ASH_STATUS_TRAY_NETWORK_CELLULAR_TYPE_THREE_G},
{shill::kNetworkTechnologyHspa,
IDS_ASH_STATUS_TRAY_NETWORK_CELLULAR_TYPE_HSPA},
{shill::kNetworkTechnologyHspaPlus,
IDS_ASH_STATUS_TRAY_NETWORK_CELLULAR_TYPE_HSPA_PLUS},
{shill::kNetworkTechnologyLte,
IDS_ASH_STATUS_TRAY_NETWORK_CELLULAR_TYPE_LTE},
{shill::kNetworkTechnologyLteAdvanced,
IDS_ASH_STATUS_TRAY_NETWORK_CELLULAR_TYPE_LTE_PLUS},
}};
for (const auto& it : network_technology_to_text_id) {
SetServiceProperty(cellular_path(), shill::kNetworkTechnologyProperty,
base::Value(it.first));
EXPECT_EQ(l10n_util::GetStringUTF16(it.second), GetSubLabelText());
}
}
TEST_F(NetworkFeaturePodControllerTest, HasCorrectSubLabel_Ethernet) {
EXPECT_EQ(l10n_util::GetStringUTF16(
IDS_ASH_STATUS_TRAY_NETWORK_DISCONNECTED_SUBLABEL),
GetSubLabelText());
SetupEthernet();
// A network exists but we are not connected to it.
SetServiceProperty(ethernet_path(), shill::kStateProperty,
base::Value(shill::kStateIdle));
EXPECT_EQ(l10n_util::GetStringUTF16(
IDS_ASH_STATUS_TRAY_NETWORK_DISCONNECTED_SUBLABEL),
GetSubLabelText());
// Ethernet is not eligible to be the default network until it is connected.
// Mark the network as currently connecting and ensure this is true.
SetServiceProperty(ethernet_path(), shill::kStateProperty,
base::Value(shill::kStateAssociation));
network_state_handler()->SetNetworkConnectRequested(ethernet_path(), true);
base::RunLoop().RunUntilIdle();
EXPECT_EQ(l10n_util::GetStringUTF16(
IDS_ASH_STATUS_TRAY_NETWORK_DISCONNECTED_SUBLABEL),
GetSubLabelText());
SetServiceProperty(ethernet_path(), shill::kStateProperty,
base::Value(shill::kStateOnline));
EXPECT_EQ(
l10n_util::GetStringUTF16(IDS_ASH_STATUS_TRAY_NETWORK_STATUS_CONNECTED),
GetSubLabelText());
}
TEST_F(NetworkFeaturePodControllerTest, HasCorrectSubLabel_Tether) {
EXPECT_EQ(l10n_util::GetStringUTF16(
IDS_ASH_STATUS_TRAY_NETWORK_DISCONNECTED_SUBLABEL),
GetSubLabelText());
SetupTether();
// A network exists but we are not connected to it.
network_state_handler()->SetTetherNetworkStateDisconnected(
/*guid=*/kNetworkGuidTether);
base::RunLoop().RunUntilIdle();
EXPECT_EQ(l10n_util::GetStringUTF16(
IDS_ASH_STATUS_TRAY_NETWORK_DISCONNECTED_SUBLABEL),
GetSubLabelText());
// Mark the network as currently connecting.
network_state_handler()->SetTetherNetworkStateConnecting(
/*guid=*/kNetworkGuidTether);
base::RunLoop().RunUntilIdle();
EXPECT_EQ(l10n_util::GetStringUTF16(
IDS_ASH_STATUS_TRAY_NETWORK_CONNECTING_SUBLABEL),
GetSubLabelText());
// Mark the network as connected.
network_state_handler()->SetTetherNetworkStateConnected(
/*guid=*/kNetworkGuidTether);
base::RunLoop().RunUntilIdle();
CheckSignalStrengthSubLabel(base::BindRepeating(
[](NetworkStateHandler* handler, int signal_strength) {
EXPECT_TRUE(handler->UpdateTetherNetworkProperties(
kNetworkGuidTether, /*carrier=*/"carrier_stub",
/*battery_percentage=*/0, signal_strength));
base::RunLoop().RunUntilIdle();
},
network_state_handler()));
}
TEST_F(NetworkFeaturePodControllerTest, HasCorrectSubLabel_WiFi) {
EXPECT_EQ(l10n_util::GetStringUTF16(
IDS_ASH_STATUS_TRAY_NETWORK_DISCONNECTED_SUBLABEL),
GetSubLabelText());
SetupWiFi();
// A network exists but we are not connected to it.
SetServiceProperty(wifi_path(), shill::kStateProperty,
base::Value(shill::kStateIdle));
EXPECT_EQ(l10n_util::GetStringUTF16(
IDS_ASH_STATUS_TRAY_NETWORK_DISCONNECTED_SUBLABEL),
GetSubLabelText());
// Mark the network as currently connecting.
SetServiceProperty(wifi_path(), shill::kStateProperty,
base::Value(shill::kStateAssociation));
network_state_handler()->SetNetworkConnectRequested(wifi_path(), true);
base::RunLoop().RunUntilIdle();
EXPECT_EQ(l10n_util::GetStringUTF16(
IDS_ASH_STATUS_TRAY_NETWORK_CONNECTING_SUBLABEL),
GetSubLabelText());
SetServiceProperty(wifi_path(), shill::kStateProperty,
base::Value(shill::kStateOnline));
CheckSignalStrengthSubLabel(base::BindRepeating(
[](NetworkStateTestHelper* helper, const std::string& service_path,
int signal_strength) {
helper->SetServiceProperty(service_path, shill::kSignalStrengthProperty,
base::Value(signal_strength));
},
network_state_helper(), wifi_path()));
}
TEST_F(NetworkFeaturePodControllerTest, HasCorrectTooltips) {
std::u16string tooltip;
ActiveNetworkIcon* active_network_icon =
Shell::Get()->system_tray_model()->active_network_icon();
SetupEthernet();
active_network_icon->GetConnectionStatusStrings(
ActiveNetworkIcon::Type::kSingle,
/*a11y_name=*/nullptr,
/*a11y_desc=*/nullptr, &tooltip);
// When the network type cannot actually be toggled the tooltip should be the
// same for the icon as it is for the label.
EXPECT_EQ(l10n_util::GetStringFUTF16(
IDS_ASH_STATUS_TRAY_NETWORK_SETTINGS_TOOLTIP, tooltip),
GetIconTooltipText());
EXPECT_EQ(l10n_util::GetStringFUTF16(
IDS_ASH_STATUS_TRAY_NETWORK_SETTINGS_TOOLTIP, tooltip),
GetLabelTooltipText());
ClearNetworks();
active_network_icon->GetConnectionStatusStrings(
ActiveNetworkIcon::Type::kSingle,
/*a11y_name=*/nullptr,
/*a11y_desc=*/nullptr, &tooltip);
EXPECT_EQ(l10n_util::GetStringFUTF16(
IDS_ASH_STATUS_TRAY_NETWORK_TOGGLE_TOOLTIP, tooltip),
GetIconTooltipText());
EXPECT_EQ(l10n_util::GetStringFUTF16(
IDS_ASH_STATUS_TRAY_NETWORK_SETTINGS_TOOLTIP, tooltip),
GetLabelTooltipText());
PressIcon();
EXPECT_EQ(l10n_util::GetStringFUTF16(
IDS_ASH_STATUS_TRAY_NETWORK_TOGGLE_TOOLTIP, tooltip),
GetIconTooltipText());
// Pressing the label when the network type is disabled but can be enabled
// will enable that network type.
EXPECT_EQ(l10n_util::GetStringFUTF16(
IDS_ASH_STATUS_TRAY_NETWORK_TOGGLE_TOOLTIP, tooltip),
GetLabelTooltipText());
LockScreen();
active_network_icon->GetConnectionStatusStrings(
ActiveNetworkIcon::Type::kSingle,
/*a11y_name=*/nullptr,
/*a11y_desc=*/nullptr, &tooltip);
EXPECT_EQ(tooltip, GetIconTooltipText());
EXPECT_EQ(tooltip, GetLabelTooltipText());
}
// This test does not check whether the icons are correct, and is only intended
// to cover whether the icons supplied by the ActiveNetworkIcon class are used.
TEST_F(NetworkFeaturePodControllerTest, HasCorrectIcons) {
ActiveNetworkIcon* active_network_icon =
Shell::Get()->system_tray_model()->active_network_icon();
views::ImageButton* icon_button = feature_tile()->icon_button();
gfx::Image image =
gfx::Image(icon_button->GetImage(views::Button::STATE_NORMAL));
ui::ColorProvider* color_provider = quick_settings_view()->GetColorProvider();
EXPECT_TRUE(gfx::test::AreImagesEqual(
gfx::Image(active_network_icon->GetImage(
color_provider, ActiveNetworkIcon::Type::kSingle,
network_icon::ICON_TYPE_FEATURE_POD_TOGGLED,
/*animating=*/nullptr)),
image));
// Lock screen to get the button's disabled state.
LockScreen();
icon_button = feature_tile()->icon_button();
image = gfx::Image(icon_button->GetImage(views::Button::STATE_DISABLED));
EXPECT_TRUE(gfx::test::AreImagesEqual(
gfx::Image(active_network_icon->GetImage(
color_provider, ActiveNetworkIcon::Type::kSingle,
network_icon::ICON_TYPE_FEATURE_POD_DISABLED, /*animating=*/nullptr)),
image));
// Unlock screen to get the button's normal state again.
UnlockScreen();
// Disable WiFi which will update the feature pod button state to be enabled
// but not toggled.
technology_state_controller()->SetTechnologiesEnabled(
NetworkTypePattern::WiFi(), /*enabled=*/false,
network_handler::ErrorCallback());
base::RunLoop().RunUntilIdle();
icon_button = feature_tile()->icon_button();
image = gfx::Image(icon_button->GetImage(views::Button::STATE_NORMAL));
EXPECT_TRUE(gfx::test::AreImagesEqual(
gfx::Image(active_network_icon->GetImage(
color_provider, ActiveNetworkIcon::Type::kSingle,
network_icon::ICON_TYPE_FEATURE_POD,
/*animating=*/nullptr)),
image));
}
TEST_F(NetworkFeaturePodControllerTest, UMATracking) {
std::string histogram_prefix;
histogram_prefix = "Ash.QuickSettings.FeaturePod.";
// No metrics logged before clicking on any views.
auto histogram_tester = std::make_unique<base::HistogramTester>();
histogram_tester->ExpectTotalCount(histogram_prefix + "ToggledOn",
/*expected_count=*/0);
histogram_tester->ExpectTotalCount(histogram_prefix + "ToggledOff",
/*expected_count=*/0);
histogram_tester->ExpectTotalCount(histogram_prefix + "DiveIn",
/*expected_count=*/0);
// Disable WiFi.
PressIcon();
histogram_tester->ExpectTotalCount(histogram_prefix + "ToggledOn",
/*expected_count=*/0);
histogram_tester->ExpectTotalCount(histogram_prefix + "ToggledOff",
/*expected_count=*/1);
histogram_tester->ExpectBucketCount(histogram_prefix + "ToggledOff",
QsFeatureCatalogName::kNetwork,
/*expected_count=*/1);
histogram_tester->ExpectTotalCount(histogram_prefix + "DiveIn",
/*expected_count=*/0);
// Go to the detailed page.
PressLabel();
histogram_tester->ExpectTotalCount(histogram_prefix + "ToggledOn",
/*expected_count=*/0);
histogram_tester->ExpectTotalCount(histogram_prefix + "ToggledOff",
/*expected_count=*/1);
histogram_tester->ExpectTotalCount(histogram_prefix + "DiveIn",
/*expected_count=*/1);
histogram_tester->ExpectBucketCount(histogram_prefix + "DiveIn",
QsFeatureCatalogName::kNetwork,
/*expected_count=*/1);
}
} // namespace ash