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
ash / system / network / network_feature_tile_pixeltest.cc [blame]
// Copyright 2023 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 "ash/system/tray/tray_constants.h"
#include "ash/system/unified/unified_system_tray.h"
#include "ash/system/unified/unified_system_tray_bubble.h"
#include "ash/test/ash_test_base.h"
#include "ash/test/pixel/ash_pixel_differ.h"
#include "ash/test/pixel/ash_pixel_test_init_params.h"
#include "chromeos/ash/components/network/network_state_test_helper.h"
#include "chromeos/ash/services/network_config/public/cpp/cros_network_config_test_helper.h"
#include "chromeos/constants/chromeos_features.h"
#include "ui/chromeos/styles/cros_tokens_color_mappings.h"
#include "ui/views/layout/flex_layout_types.h"
#include "ui/views/view.h"
#include "ui/views/view_class_properties.h"
#include "ui/views/widget/widget.h"
namespace ash {
namespace {
constexpr char kStubCellularDevice[] = "/device/stub_cellular_device";
// The GUIDs used for the different network types.
constexpr char kNetworkGuidCellular[] = "cellular_guid";
constexpr char kNetworkGuidWifi[] = "wifi_guid";
constexpr char kNetworkGuidEthernet[] = "ethernet_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, "SecurityClass": "%s"})";
// Configures a `Feature Tile` base to follow Quick Settings sizing standards.
void ConfigureQSFeatureTile(FeatureTile* tile) {
// Quick Settings Feature Tiles set a fixed size for their feature tiles.
tile->SetPreferredSize(
gfx::Size(kPrimaryFeatureTileWidth, kFeatureTileHeight));
tile->SetProperty(
views::kFlexBehaviorKey,
views::FlexSpecification(views::MinimumFlexSizeRule::kScaleToZero,
views::MaximumFlexSizeRule::kPreferred,
/*adjust_height_for_width=*/false));
}
} // namespace
// Pixel test for the quick settings network feature tile view.
class NetworkFeatureTilePixelTest : public AshTestBase {
public:
NetworkFeatureTilePixelTest() = default;
void SetUp() override {
AshTestBase::SetUp();
GetPrimaryUnifiedSystemTray()->ShowBubble();
network_feature_pod_controller_ =
std::make_unique<NetworkFeaturePodController>(tray_controller());
auto feature_tile = network_feature_pod_controller_->CreateTile();
widget_ = CreateFramelessTestWidget();
widget_->SetFullscreen(true);
auto* contents =
widget_->SetContentsView(std::make_unique<views::BoxLayoutView>());
contents->SetMainAxisAlignment(
views::BoxLayout::MainAxisAlignment::kCenter);
contents->SetCrossAxisAlignment(
views::BoxLayout::CrossAxisAlignment::kCenter);
// The tile colors have transparency, so set a background color so they
// render like in production.
contents->SetBackground(views::CreateThemedSolidBackground(
cros_tokens::kCrosSysSystemBaseElevated));
feature_tile_ =
widget_->GetContentsView()->AddChildView(std::move(feature_tile));
ConfigureQSFeatureTile(feature_tile_);
// 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);
}
void TearDown() override {
widget_.reset();
network_feature_pod_controller_.reset();
AshTestBase::TearDown();
}
// AshTestBase:
std::optional<pixel_test::InitParams> CreatePixelTestInitParams()
const override {
return pixel_test::InitParams();
}
FeatureTile* feature_tile() { return feature_tile_; }
NetworkStateTestHelper* network_state_helper() {
return &network_config_helper_.network_state_helper();
}
UnifiedSystemTrayController* tray_controller() {
return GetPrimaryUnifiedSystemTray()
->bubble()
->unified_system_tray_controller();
}
NetworkStateHandler* network_state_handler() {
return network_state_helper()->network_state_handler();
}
void SetupEthernet() {
ASSERT_TRUE(ethernet_path_.empty());
ethernet_path_ = ConfigureService(
base::StringPrintf(kServicePatternEthernet, kNetworkGuidEthernet));
base::RunLoop().RunUntilIdle();
}
void SetupWiFi(const std::string& security) {
ASSERT_TRUE(wifi_path_.empty());
wifi_path_ = ConfigureService(base::StringPrintf(
kServicePatternWiFi, kNetworkGuidWifi, security.c_str()));
base::RunLoop().RunUntilIdle();
}
void SetupCellular() {
ASSERT_TRUE(cellular_path_.empty());
cellular_path_ = ConfigureService(base::StringPrintf(
kServicePatternCellular, kNetworkGuidCellular, kStubCellularDevice));
base::RunLoop().RunUntilIdle();
}
private:
std::string ConfigureService(const std::string& shill_json_string) {
return network_state_helper()->ConfigureService(shill_json_string);
}
std::string cellular_path_;
std::string ethernet_path_;
std::string wifi_path_;
std::unique_ptr<views::Widget> widget_;
std::unique_ptr<NetworkFeaturePodController> network_feature_pod_controller_;
network_config::CrosNetworkConfigTestHelper network_config_helper_;
// Owned by `widget_`.
raw_ptr<FeatureTile, DanglingUntriaged> feature_tile_ = nullptr;
};
TEST_F(NetworkFeatureTilePixelTest, NoNetworks) {
auto* tile_view = feature_tile();
ASSERT_TRUE(tile_view);
EXPECT_TRUE(GetPixelDiffer()->CompareUiComponentsOnPrimaryScreen(
"check_tile_view",
/*revision_number=*/3, tile_view));
}
TEST_F(NetworkFeatureTilePixelTest, Ethernet) {
ASSERT_TRUE(network_state_handler()->IsTechnologyEnabled(
NetworkTypePattern::Ethernet()));
SetupEthernet();
auto* tile_view = feature_tile();
ASSERT_TRUE(tile_view);
EXPECT_TRUE(GetPixelDiffer()->CompareUiComponentsOnPrimaryScreen(
"check_tile_view",
/*revision_number=*/2, tile_view));
}
TEST_F(NetworkFeatureTilePixelTest, Wifi) {
ASSERT_TRUE(
network_state_handler()->IsTechnologyEnabled(NetworkTypePattern::WiFi()));
SetupWiFi("None");
auto* tile_view = feature_tile();
ASSERT_TRUE(tile_view);
EXPECT_TRUE(GetPixelDiffer()->CompareUiComponentsOnPrimaryScreen(
"check_tile_view",
/*revision_number=*/2, tile_view));
}
TEST_F(NetworkFeatureTilePixelTest, WifiSecurity) {
ASSERT_TRUE(
network_state_handler()->IsTechnologyEnabled(NetworkTypePattern::WiFi()));
SetupWiFi("wep");
auto* tile_view = feature_tile();
ASSERT_TRUE(tile_view);
EXPECT_TRUE(GetPixelDiffer()->CompareUiComponentsOnPrimaryScreen(
"check_tile_view",
/*revision_number=*/1, tile_view));
}
TEST_F(NetworkFeatureTilePixelTest, Cellular) {
ASSERT_TRUE(network_state_handler()->IsTechnologyEnabled(
NetworkTypePattern::Cellular()));
SetupCellular();
auto* tile_view = feature_tile();
ASSERT_TRUE(tile_view);
EXPECT_TRUE(GetPixelDiffer()->CompareUiComponentsOnPrimaryScreen(
"check_tile_view",
/*revision_number=*/2, tile_view));
}
} // namespace ash