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

Unified Diff: components/proximity_auth/proximity_auth_system_unittest.cc

Issue 1377313002: Revert of Hook up ProximityAuthSystem in EasyUnlockService. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@bluetooth_connection
Patch Set: Created 5 years, 3 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 | « components/proximity_auth/proximity_auth_system.cc ('k') | components/proximity_auth/proximity_monitor.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/proximity_auth/proximity_auth_system_unittest.cc
diff --git a/components/proximity_auth/proximity_auth_system_unittest.cc b/components/proximity_auth/proximity_auth_system_unittest.cc
index c9c676e167c8e3ecb7d0d2b8959554570895b918..b29f85ffa507cd9c5413f49106646983aa1aba74 100644
--- a/components/proximity_auth/proximity_auth_system_unittest.cc
+++ b/components/proximity_auth/proximity_auth_system_unittest.cc
@@ -9,7 +9,23 @@
namespace proximity_auth {
TEST(ProximityAuthSystemTest, GetRemoteDevices) {
- // TODO(tengs): Reimplement this test.
+ RemoteDevice device1("example@gmail.com", "device1", "public_key1",
+ RemoteDevice::BLUETOOTH_CLASSIC, "bt_addr1", "psk1", "");
+ RemoteDevice device2("example@gmail.com", "device2", "public_key2",
+ RemoteDevice::BLUETOOTH_LE, "bt_addr2", "psk2", "");
+
+ std::vector<RemoteDevice> device_list;
+ device_list.push_back(device1);
+ device_list.push_back(device2);
+
+ ProximityAuthSystem system(device_list);
+
+ const std::vector<RemoteDevice>& returned_list = system.GetRemoteDevices();
+ ASSERT_EQ(2u, returned_list.size());
+ EXPECT_EQ(device1.name, returned_list[0].name);
+ EXPECT_EQ(device1.public_key, returned_list[0].public_key);
+ EXPECT_EQ(device2.name, returned_list[1].name);
+ EXPECT_EQ(device2.public_key, returned_list[1].public_key);
}
} // namespace proximity_auth
« no previous file with comments | « components/proximity_auth/proximity_auth_system.cc ('k') | components/proximity_auth/proximity_monitor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698