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

Side by Side Diff: chrome/browser/sync/test/integration/two_client_wifi_credentials_sync_test.cc

Issue 2463463004: [Sync] Rename wifi_sync to sync_wifi. (Closed)
Patch Set: Created 4 years, 1 month 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include <stddef.h> 5 #include <stddef.h>
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 #include "base/macros.h" 8 #include "base/macros.h"
9 #include "chrome/browser/sync/test/integration/profile_sync_service_harness.h" 9 #include "chrome/browser/sync/test/integration/profile_sync_service_harness.h"
10 #include "chrome/browser/sync/test/integration/sync_test.h" 10 #include "chrome/browser/sync/test/integration/sync_test.h"
11 #include "chrome/browser/sync/test/integration/wifi_credentials_helper.h" 11 #include "chrome/browser/sync/test/integration/wifi_credentials_helper.h"
12 #include "components/browser_sync/browser_sync_switches.h" 12 #include "components/browser_sync/browser_sync_switches.h"
13 #include "components/wifi_sync/wifi_credential.h" 13 #include "components/sync_wifi/wifi_credential.h"
14 #include "components/wifi_sync/wifi_security_class.h" 14 #include "components/sync_wifi/wifi_security_class.h"
15 15
16 using wifi_sync::WifiCredential; 16 using sync_wifi::WifiCredential;
17 17
18 using WifiCredentialSet = wifi_sync::WifiCredential::CredentialSet; 18 using WifiCredentialSet = sync_wifi::WifiCredential::CredentialSet;
19 19
20 class TwoClientWifiCredentialsSyncTest : public SyncTest { 20 class TwoClientWifiCredentialsSyncTest : public SyncTest {
21 public: 21 public:
22 TwoClientWifiCredentialsSyncTest() : SyncTest(TWO_CLIENT) {} 22 TwoClientWifiCredentialsSyncTest() : SyncTest(TWO_CLIENT) {}
23 ~TwoClientWifiCredentialsSyncTest() override {} 23 ~TwoClientWifiCredentialsSyncTest() override {}
24 24
25 // SyncTest implementation. 25 // SyncTest implementation.
26 void SetUp() override { 26 void SetUp() override {
27 wifi_credentials_helper::SetUp(); 27 wifi_credentials_helper::SetUp();
28 SyncTest::SetUp(); 28 SyncTest::SetUp();
(...skipping 20 matching lines...) Expand all
49 ASSERT_TRUE(wifi_credentials_helper::VerifierIsEmpty()); 49 ASSERT_TRUE(wifi_credentials_helper::VerifierIsEmpty());
50 ASSERT_TRUE(wifi_credentials_helper::AllProfilesMatch()); 50 ASSERT_TRUE(wifi_credentials_helper::AllProfilesMatch());
51 } 51 }
52 52
53 IN_PROC_BROWSER_TEST_F(TwoClientWifiCredentialsSyncTest, SingleCredential) { 53 IN_PROC_BROWSER_TEST_F(TwoClientWifiCredentialsSyncTest, SingleCredential) {
54 ASSERT_TRUE(SetupSync()) << "SetupSync() failed."; 54 ASSERT_TRUE(SetupSync()) << "SetupSync() failed.";
55 55
56 const char ssid[] = "fake-ssid"; 56 const char ssid[] = "fake-ssid";
57 std::unique_ptr<WifiCredential> credential = 57 std::unique_ptr<WifiCredential> credential =
58 wifi_credentials_helper::MakeWifiCredential( 58 wifi_credentials_helper::MakeWifiCredential(
59 ssid, wifi_sync::SECURITY_CLASS_PSK, "fake_passphrase"); 59 ssid, sync_wifi::SECURITY_CLASS_PSK, "fake_passphrase");
60 ASSERT_TRUE(credential); 60 ASSERT_TRUE(credential);
61 61
62 const size_t profile_a_index = 0; 62 const size_t profile_a_index = 0;
63 wifi_credentials_helper::AddWifiCredential( 63 wifi_credentials_helper::AddWifiCredential(
64 profile_a_index, "fake_id", *credential); 64 profile_a_index, "fake_id", *credential);
65 65
66 const WifiCredentialSet verifier_credentials = 66 const WifiCredentialSet verifier_credentials =
67 wifi_credentials_helper::GetWifiCredentialsForProfile(verifier()); 67 wifi_credentials_helper::GetWifiCredentialsForProfile(verifier());
68 EXPECT_EQ(1U, verifier_credentials.size()); 68 EXPECT_EQ(1U, verifier_credentials.size());
69 EXPECT_EQ(WifiCredential::MakeSsidBytesForTest(ssid), 69 EXPECT_EQ(WifiCredential::MakeSsidBytesForTest(ssid),
70 verifier_credentials.begin()->ssid()); 70 verifier_credentials.begin()->ssid());
71 71
72 const size_t profile_b_index = 1; 72 const size_t profile_b_index = 1;
73 ASSERT_TRUE(GetClient(profile_a_index)->AwaitMutualSyncCycleCompletion( 73 ASSERT_TRUE(GetClient(profile_a_index)->AwaitMutualSyncCycleCompletion(
74 GetClient(profile_b_index))); 74 GetClient(profile_b_index)));
75 EXPECT_FALSE(wifi_credentials_helper::VerifierIsEmpty()); 75 EXPECT_FALSE(wifi_credentials_helper::VerifierIsEmpty());
76 EXPECT_TRUE(wifi_credentials_helper::AllProfilesMatch()); 76 EXPECT_TRUE(wifi_credentials_helper::AllProfilesMatch());
77 } 77 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698