Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1081)

Unified Diff: chrome/browser/chromeos/login/network_screen_browsertest.cc

Issue 2010001: Refactor WifiNetwork, CellularNetwork, and EthernetNetwork into classes to ma... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/chromeos/login/network_screen.cc ('k') | chrome/browser/chromeos/network_list.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/login/network_screen_browsertest.cc
===================================================================
--- chrome/browser/chromeos/login/network_screen_browsertest.cc (revision 46522)
+++ chrome/browser/chromeos/login/network_screen_browsertest.cc (working copy)
@@ -37,8 +37,8 @@
class NetworkScreenTest : public WizardInProcessBrowserTest {
public:
NetworkScreenTest(): WizardInProcessBrowserTest("network") {
- cellular_.name = "Cellular network";
- wifi_.ssid = "WiFi network";
+ cellular_.set_name("Cellular network");
+ wifi_.set_name("WiFi network");
}
protected:
@@ -98,15 +98,15 @@
void SetupWifiNetwork(bool connected, bool connecting) {
wifi_networks_.clear();
- wifi_.connected = connected;
- wifi_.connecting = connecting;
+ wifi_.set_connected(connected);
+ wifi_.set_connecting(connecting);
wifi_networks_.push_back(wifi_);
}
void SetupCellularNetwork(bool connected, bool connecting) {
cellular_networks_.clear();
- cellular_.connected = connected;
- cellular_.connecting = connecting;
+ cellular_.set_connected(connected);
+ cellular_.set_connecting(connecting);
cellular_networks_.push_back(cellular_);
}
@@ -129,7 +129,7 @@
}
void WifiSsidExpectation(const std::string& ssid) {
- EXPECT_CALL(*mock_network_library_, wifi_ssid())
+ EXPECT_CALL(*mock_network_library_, wifi_name())
.Times(1)
.WillOnce((ReturnRef(ssid)));
}
@@ -200,28 +200,28 @@
SetupCellularNetwork(true, false);
CellularExpectations(true, false);
WifiCellularNetworksExpectations();
- WifiSsidExpectation(wifi_.ssid);
- CellularNameExpectation(cellular_.name);
+ WifiSsidExpectation(wifi_.name());
+ CellularNameExpectation(cellular_.name());
network_screen->NetworkChanged(network_library);
ASSERT_EQ(network_screen, controller()->current_screen());
ASSERT_EQ(3, network_screen->GetItemCount());
- EXPECT_EQ(ASCIIToWide(wifi_.ssid), network_screen->GetItemAt(1));
- EXPECT_EQ(ASCIIToWide(cellular_.name), network_screen->GetItemAt(2));
+ EXPECT_EQ(ASCIIToWide(wifi_.name()), network_screen->GetItemAt(1));
+ EXPECT_EQ(ASCIIToWide(cellular_.name()), network_screen->GetItemAt(2));
// Ethernet, WiFi & Cellular - connected.
EthernetExpectations(true, false);
WifiExpectations(true, false);
CellularExpectations(true, false);
WifiCellularNetworksExpectations();
- WifiSsidExpectation(wifi_.ssid);
- CellularNameExpectation(cellular_.name);
+ WifiSsidExpectation(wifi_.name());
+ CellularNameExpectation(cellular_.name());
network_screen->NetworkChanged(network_library);
ASSERT_EQ(network_screen, controller()->current_screen());
ASSERT_EQ(4, network_screen->GetItemCount());
EXPECT_EQ(l10n_util::GetString(IDS_STATUSBAR_NETWORK_DEVICE_ETHERNET),
network_screen->GetItemAt(1));
- EXPECT_EQ(ASCIIToWide(wifi_.ssid), network_screen->GetItemAt(2));
- EXPECT_EQ(ASCIIToWide(cellular_.name), network_screen->GetItemAt(3));
+ EXPECT_EQ(ASCIIToWide(wifi_.name()), network_screen->GetItemAt(2));
+ EXPECT_EQ(ASCIIToWide(cellular_.name()), network_screen->GetItemAt(3));
}
IN_PROC_BROWSER_TEST_F(NetworkScreenTest, EthernetSelected) {
@@ -281,7 +281,7 @@
WifiSsidExpectation(std::string());
network_screen->NetworkChanged(network_library);
ASSERT_EQ(2, network_screen->GetItemCount());
- EXPECT_EQ(ASCIIToWide(wifi_.ssid), network_screen->GetItemAt(1));
+ EXPECT_EQ(ASCIIToWide(wifi_.name()), network_screen->GetItemAt(1));
DummyComboboxModel combobox_model;
views::Combobox combobox(&combobox_model);
@@ -304,7 +304,7 @@
SetupWifiNetwork(false, true);
WifiExpectations(false, true);
WifiCellularNetworksExpectations();
- WifiSsidExpectation(wifi_.ssid);
+ WifiSsidExpectation(wifi_.name());
network_screen->NetworkChanged(network_library);
ASSERT_EQ(network_screen, controller()->current_screen());
@@ -319,7 +319,7 @@
SetupWifiNetwork(true, false);
WifiExpectations(true, false);
WifiCellularNetworksExpectations();
- WifiSsidExpectation(wifi_.ssid);
+ WifiSsidExpectation(wifi_.name());
network_screen->NetworkChanged(network_library);
ui_test_utils::RunAllPendingInMessageLoop();
controller()->set_observer(NULL);
@@ -340,7 +340,7 @@
CellularNameExpectation(std::string());
network_screen->NetworkChanged(network_library);
ASSERT_EQ(2, network_screen->GetItemCount());
- EXPECT_EQ(ASCIIToWide(cellular_.name), network_screen->GetItemAt(1));
+ EXPECT_EQ(ASCIIToWide(cellular_.name()), network_screen->GetItemAt(1));
DummyComboboxModel combobox_model;
views::Combobox combobox(&combobox_model);
@@ -361,7 +361,7 @@
SetupCellularNetwork(false, true);
CellularExpectations(false, true);
WifiCellularNetworksExpectations();
- CellularNameExpectation(cellular_.name);
+ CellularNameExpectation(cellular_.name());
network_screen->NetworkChanged(network_library);
ASSERT_EQ(network_screen, controller()->current_screen());
@@ -376,7 +376,7 @@
SetupCellularNetwork(true, false);
CellularExpectations(true, false);
WifiCellularNetworksExpectations();
- CellularNameExpectation(cellular_.name);
+ CellularNameExpectation(cellular_.name());
network_screen->NetworkChanged(network_library);
ui_test_utils::RunAllPendingInMessageLoop();
controller()->set_observer(NULL);
« no previous file with comments | « chrome/browser/chromeos/login/network_screen.cc ('k') | chrome/browser/chromeos/network_list.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698