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

Unified Diff: components/wifi_sync/wifi_credential_syncable_service_unittest.cc

Issue 836303004: wifi_sync: implement ACTION_ADD in WifiCredentialSyncableService (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@submit-4.2-wifi-config-delegate
Patch Set: rebase to ToT Created 5 years, 11 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
Index: components/wifi_sync/wifi_credential_syncable_service_unittest.cc
diff --git a/components/wifi_sync/wifi_credential_syncable_service_unittest.cc b/components/wifi_sync/wifi_credential_syncable_service_unittest.cc
new file mode 100644
index 0000000000000000000000000000000000000000..e1539a8ee9454f494866fbb6e921c6659c69857d
--- /dev/null
+++ b/components/wifi_sync/wifi_credential_syncable_service_unittest.cc
@@ -0,0 +1,349 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "components/wifi_sync/wifi_credential_syncable_service.h"
+
+#include <string>
+#include <vector>
+
+#include "base/macros.h"
+#include "base/memory/scoped_ptr.h"
+#include "base/time/time.h"
+#include "base/tracked_objects.h"
+#include "components/wifi_sync/wifi_config_delegate.h"
+#include "components/wifi_sync/wifi_credential.h"
+#include "components/wifi_sync/wifi_security_class.h"
+#include "sync/api/attachments/attachment_id.h"
+#include "sync/api/fake_sync_change_processor.h"
+#include "sync/api/sync_change.h"
+#include "sync/api/sync_data.h"
+#include "sync/api/sync_error.h"
+#include "sync/api/sync_error_factory_mock.h"
+#include "sync/internal_api/public/attachments/attachment_service_proxy_for_test.h"
+#include "sync/protocol/sync.pb.h"
+#include "testing/gtest/include/gtest/gtest.h"
+
+namespace wifi_sync {
+
+using syncer::FakeSyncChangeProcessor;
+using syncer::SyncErrorFactoryMock;
+
+// Fake implementation of WifiConfigDelegate, which provides the
+// ability to check how many times a WifiConfigDelegate method has
+// been called.
+class FakeWifiConfigDelegate : public WifiConfigDelegate {
+ public:
+ FakeWifiConfigDelegate()
+ : add_count_(0) {}
+ virtual ~FakeWifiConfigDelegate() {}
+
+ // WifiConfigDelegate implementation.
+ void AddToLocalNetworks(const WifiCredential& network_credential) override {
+ ++add_count_;
+ }
+
+ // Returns the number of times the AddToLocalNetworks method has
+ // been called.
+ int GetAddCount() const { return add_count_; }
+
+ private:
+ // The number of times AddToLocalNetworks has been called on this fake.
+ int add_count_;
+
+ DISALLOW_COPY_AND_ASSIGN(FakeWifiConfigDelegate);
+};
+
+// Unit tests for WifiCredentialSyncableService.
+class WifiCredentialSyncableServiceTest : public testing::Test {
+ protected:
+ WifiCredentialSyncableServiceTest()
+ : config_delegate_(new FakeWifiConfigDelegate()),
+ change_processor_(nullptr) {
+ syncable_service_.reset(
+ new WifiCredentialSyncableService(make_scoped_ptr(config_delegate_)));
+ }
+
+ // Wrappers for methods in WifiCredentialSyncableService.
+ syncer::SyncError ProcessSyncChanges(
+ const tracked_objects::Location& caller_location,
+ const syncer::SyncChangeList& change_list) {
+ return syncable_service_->ProcessSyncChanges(caller_location, change_list);
+ }
+ bool AddToSyncedNetworks(
+ const std::string& item_id, const WifiCredential& credential) {
+ return syncable_service_->AddToSyncedNetworks(item_id, credential);
+ }
+
+ // Returns the number of change requests received by
+ // |change_processor_|.
+ int GetChangeProcessorChangeCount() {
+ CHECK(change_processor_);
+ return change_processor_->changes().size();
+ }
+
+ // Returns the number of times AddToLocalNetworks has been called on
+ // |config_delegate_|.
+ int GetWifiDelegateAddCount() {
+ return config_delegate_->GetAddCount();
+ }
+
+ // Returns a new WifiCredential constructed from the given parameters.
+ WifiCredential MakeCredential(const std::string& ssid,
+ WifiSecurityClass security_class,
+ const std::string& passphrase) {
+ scoped_ptr<WifiCredential> credential =
+ WifiCredential::Create(
+ WifiCredential::MakeSsidBytesForTest(ssid),
+ security_class,
+ passphrase);
+ CHECK(credential);
+ return *credential;
+ }
+
+ // Returns a new EntitySpecifics protobuf, with the
+ // wifi_credential_specifics fields populated with the given
+ // parameters.
+ sync_pb::EntitySpecifics MakeWifiCredentialSpecifics(
+ const std::string& ssid,
+ sync_pb::WifiCredentialSpecifics_SecurityClass security_class,
+ const std::string* passphrase) {
+ const std::vector<uint8_t> ssid_bytes(ssid.begin(), ssid.end());
+ sync_pb::EntitySpecifics sync_entity_specifics;
+ sync_pb::WifiCredentialSpecifics* wifi_credential_specifics =
+ sync_entity_specifics.mutable_wifi_credential();
+ CHECK(wifi_credential_specifics);
+ wifi_credential_specifics->set_ssid(ssid_bytes.data(), ssid_bytes.size());
+ wifi_credential_specifics->set_security_class(security_class);
+ if (passphrase) {
+ wifi_credential_specifics->set_passphrase(
+ passphrase->data(), passphrase->size());
+ }
+ return sync_entity_specifics;
+ }
+
+ syncer::SyncChange MakeActionAdd(
+ const tracked_objects::Location& caller_location,
+ int sync_item_id,
+ const std::string& ssid,
+ sync_pb::WifiCredentialSpecifics_SecurityClass security_class,
+ const std::string* passphrase) {
+ return syncer::SyncChange(
+ caller_location,
+ syncer::SyncChange::ACTION_ADD,
+ syncer::SyncData::CreateRemoteData(
+ sync_item_id,
+ MakeWifiCredentialSpecifics(ssid, security_class, passphrase),
+ base::Time(),
+ syncer::AttachmentIdList(),
+ syncer::AttachmentServiceProxyForTest::Create()));
+ }
+
+ void StartSyncing() {
+ scoped_ptr<FakeSyncChangeProcessor> change_processor(
+ new FakeSyncChangeProcessor());
+ change_processor_ = change_processor.get();
+ syncable_service_->MergeDataAndStartSyncing(
+ syncer::WIFI_CREDENTIALS,
+ syncer::SyncDataList(),
+ change_processor.Pass(),
+ make_scoped_ptr(new SyncErrorFactoryMock()));
+ }
+
+ private:
+ scoped_ptr<WifiCredentialSyncableService> syncable_service_;
+ FakeWifiConfigDelegate* config_delegate_; // Owned by |syncable_service_|
+ FakeSyncChangeProcessor* change_processor_; // Owned by |syncable_service_|
+
+ DISALLOW_COPY_AND_ASSIGN(WifiCredentialSyncableServiceTest);
+};
+
+namespace {
+const char kSsidNonUtf8[] = "\xc0";
+}
+
+TEST_F(WifiCredentialSyncableServiceTest, ProcessSyncChangesNotStarted) {
+ syncer::SyncError sync_error(
+ ProcessSyncChanges(FROM_HERE, syncer::SyncChangeList()));
+ ASSERT_TRUE(sync_error.IsSet());
+ EXPECT_EQ(syncer::SyncError::UNREADY_ERROR, sync_error.error_type());
+ EXPECT_EQ(0, GetWifiDelegateAddCount());
+}
+
+TEST_F(WifiCredentialSyncableServiceTest, ProcessSyncChangesInvalidChange) {
mukesh agrawal 2015/01/22 00:36:00 Removed test as this case is now handled with a DC
+ StartSyncing();
+ syncer::SyncError sync_error(
+ ProcessSyncChanges(FROM_HERE,
+ syncer::SyncChangeList(1, syncer::SyncChange())));
+ ASSERT_TRUE(sync_error.IsSet());
+ EXPECT_EQ(syncer::SyncError::DATATYPE_ERROR, sync_error.error_type());
+ EXPECT_EQ(0, GetWifiDelegateAddCount());
+}
+
+TEST_F(WifiCredentialSyncableServiceTest,
+ ProcessSyncChangesActionAddSecurityClassInvalid) {
+ syncer::SyncChangeList changes;
+ const int sync_item_id = 1;
+ changes.push_back(
+ MakeActionAdd(
+ FROM_HERE,
+ sync_item_id,
+ kSsidNonUtf8,
+ sync_pb::WifiCredentialSpecifics::SECURITY_CLASS_INVALID,
+ nullptr));
+ StartSyncing();
+ syncer::SyncError sync_error = ProcessSyncChanges(FROM_HERE, changes);
+ EXPECT_FALSE(sync_error.IsSet()); // Just ignore bad items.
+ EXPECT_EQ(0, GetWifiDelegateAddCount());
+}
+
+TEST_F(WifiCredentialSyncableServiceTest,
+ ProcessSyncChangesActionAddSecurityClassNoneSuccess) {
+ syncer::SyncChangeList changes;
+ const int sync_item_id = 1;
+ changes.push_back(
+ MakeActionAdd(
+ FROM_HERE,
+ sync_item_id,
+ kSsidNonUtf8,
+ sync_pb::WifiCredentialSpecifics::SECURITY_CLASS_NONE,
+ nullptr));
+ StartSyncing();
+ syncer::SyncError sync_error = ProcessSyncChanges(FROM_HERE, changes);
+ EXPECT_FALSE(sync_error.IsSet());
+ EXPECT_EQ(1, GetWifiDelegateAddCount());
+}
+
+TEST_F(WifiCredentialSyncableServiceTest,
+ ProcessSyncChangesActionAddSecurityClassWepMissingPassphrase) {
+ syncer::SyncChangeList changes;
+ const int sync_item_id = 1;
+ changes.push_back(
+ MakeActionAdd(
+ FROM_HERE,
+ sync_item_id,
+ kSsidNonUtf8,
+ sync_pb::WifiCredentialSpecifics::SECURITY_CLASS_WEP,
+ nullptr));
+ StartSyncing();
+ syncer::SyncError sync_error = ProcessSyncChanges(FROM_HERE, changes);
+ EXPECT_FALSE(sync_error.IsSet()); // Just ignore bad items.
+ EXPECT_EQ(0, GetWifiDelegateAddCount());
+}
+
+TEST_F(WifiCredentialSyncableServiceTest,
+ ProcessSyncChangesActionAddSecurityClassWepSuccess) {
+ syncer::SyncChangeList changes;
+ const int sync_item_id = 1;
+ const std::string passphrase("abcde");
+ changes.push_back(
+ MakeActionAdd(
+ FROM_HERE,
+ sync_item_id,
+ kSsidNonUtf8,
+ sync_pb::WifiCredentialSpecifics::SECURITY_CLASS_WEP,
+ &passphrase));
+ StartSyncing();
+ syncer::SyncError sync_error = ProcessSyncChanges(FROM_HERE, changes);
+ EXPECT_FALSE(sync_error.IsSet());
+ EXPECT_EQ(1, GetWifiDelegateAddCount());
+}
+
+TEST_F(WifiCredentialSyncableServiceTest,
+ ProcessSyncChangesActionAddSecurityClassPskMissingPassphrase) {
+ syncer::SyncChangeList changes;
+ const int sync_item_id = 1;
+ changes.push_back(
+ MakeActionAdd(
+ FROM_HERE,
+ sync_item_id,
+ kSsidNonUtf8,
+ sync_pb::WifiCredentialSpecifics::SECURITY_CLASS_PSK,
+ nullptr));
+ StartSyncing();
+ syncer::SyncError sync_error = ProcessSyncChanges(FROM_HERE, changes);
+ EXPECT_FALSE(sync_error.IsSet()); // Just ignore bad items.
+ EXPECT_EQ(0, GetWifiDelegateAddCount());
+}
+
+TEST_F(WifiCredentialSyncableServiceTest,
+ ProcessSyncChangesActionAddSecurityClassPskSuccess) {
+ syncer::SyncChangeList changes;
+ const int sync_item_id = 1;
+ const std::string passphrase("psk-passphrase");
+ changes.push_back(
+ MakeActionAdd(
+ FROM_HERE,
+ sync_item_id,
+ kSsidNonUtf8,
+ sync_pb::WifiCredentialSpecifics::SECURITY_CLASS_PSK,
+ &passphrase));
+ StartSyncing();
+ syncer::SyncError sync_error = ProcessSyncChanges(FROM_HERE, changes);
+ EXPECT_FALSE(sync_error.IsSet());
+ EXPECT_EQ(1, GetWifiDelegateAddCount());
+}
+
+TEST_F(WifiCredentialSyncableServiceTest,
+ ProcessSyncChangesContinuesAfterSecurityClassInvalid) {
+ syncer::SyncChangeList changes;
+ changes.push_back(
+ MakeActionAdd(
+ FROM_HERE,
+ 1 /* sync item id */,
+ kSsidNonUtf8,
+ sync_pb::WifiCredentialSpecifics::SECURITY_CLASS_INVALID,
+ nullptr));
+ changes.push_back(
+ MakeActionAdd(
+ FROM_HERE,
+ 2 /* sync item id */,
+ kSsidNonUtf8,
+ sync_pb::WifiCredentialSpecifics::SECURITY_CLASS_NONE,
+ nullptr));
+ StartSyncing();
+ syncer::SyncError sync_error = ProcessSyncChanges(FROM_HERE, changes);
+ EXPECT_FALSE(sync_error.IsSet()); // Just ignore bad items.
+ EXPECT_EQ(1, GetWifiDelegateAddCount());
+}
+
+TEST_F(WifiCredentialSyncableServiceTest,
+ ProcessSyncChangesContinuesAfterMissingPassphrase) {
+ syncer::SyncChangeList changes;
+ changes.push_back(
+ MakeActionAdd(
+ FROM_HERE,
+ 1 /* sync item id */,
+ kSsidNonUtf8,
+ sync_pb::WifiCredentialSpecifics::SECURITY_CLASS_WEP,
+ nullptr));
+ changes.push_back(
+ MakeActionAdd(
+ FROM_HERE,
+ 2 /* sync item id */,
+ kSsidNonUtf8,
+ sync_pb::WifiCredentialSpecifics::SECURITY_CLASS_NONE,
+ nullptr));
+ StartSyncing();
+ syncer::SyncError sync_error = ProcessSyncChanges(FROM_HERE, changes);
+ EXPECT_FALSE(sync_error.IsSet()); // Just ignore bad items.
+ EXPECT_EQ(1, GetWifiDelegateAddCount());
+}
+
+TEST_F(WifiCredentialSyncableServiceTest, AddToSyncedNetworksNotStarted) {
+ EXPECT_FALSE(
+ AddToSyncedNetworks(
+ "fake-item-id",
+ MakeCredential(kSsidNonUtf8, SECURITY_CLASS_NONE, "")));
+}
+
+TEST_F(WifiCredentialSyncableServiceTest, AddToSyncedNetworksSuccess) {
+ StartSyncing();
+ EXPECT_TRUE(
+ AddToSyncedNetworks(
+ "fake-item-id",
+ MakeCredential(kSsidNonUtf8, SECURITY_CLASS_NONE, "")));
+ EXPECT_EQ(1, GetChangeProcessorChangeCount());
+}
+
+} // namespace wifi_sync

Powered by Google App Engine
This is Rietveld 408576698