OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "chrome/browser/sync/glue/bridged_sync_notifier.h" | 5 #include "chrome/browser/sync/glue/bridged_sync_notifier.h" |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 | 8 |
9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
10 #include "base/message_loop.h" | 10 #include "base/message_loop.h" |
(...skipping 17 matching lines...) Expand all Loading... |
28 using syncer::HasModelTypes; | 28 using syncer::HasModelTypes; |
29 | 29 |
30 class MockChromeSyncNotificationBridge : public ChromeSyncNotificationBridge { | 30 class MockChromeSyncNotificationBridge : public ChromeSyncNotificationBridge { |
31 public: | 31 public: |
32 MockChromeSyncNotificationBridge( | 32 MockChromeSyncNotificationBridge( |
33 const Profile* profile, | 33 const Profile* profile, |
34 const scoped_refptr<base::SequencedTaskRunner>& sync_task_runner) | 34 const scoped_refptr<base::SequencedTaskRunner>& sync_task_runner) |
35 : ChromeSyncNotificationBridge(profile, sync_task_runner) {} | 35 : ChromeSyncNotificationBridge(profile, sync_task_runner) {} |
36 virtual ~MockChromeSyncNotificationBridge() {} | 36 virtual ~MockChromeSyncNotificationBridge() {} |
37 | 37 |
38 MOCK_METHOD2(UpdateRegisteredIds, void(syncer::SyncNotifierObserver*, | 38 MOCK_METHOD1(AddObserver, void(syncer::SyncNotifierObserver*)); |
39 const syncer::ObjectIdSet&)); | 39 MOCK_METHOD1(RemoveObserver, void(syncer::SyncNotifierObserver*)); |
40 }; | 40 }; |
41 | 41 |
42 class MockSyncNotifier : public syncer::SyncNotifier { | 42 class MockSyncNotifier : public syncer::SyncNotifier { |
43 public: | 43 public: |
44 MockSyncNotifier() {} | 44 MockSyncNotifier() {} |
45 virtual ~MockSyncNotifier() {} | 45 virtual ~MockSyncNotifier() {} |
46 | 46 |
47 MOCK_METHOD2(UpdateRegisteredIds, | 47 MOCK_METHOD1(AddObserver, void(syncer::SyncNotifierObserver*)); |
48 void(syncer::SyncNotifierObserver*, const syncer::ObjectIdSet&)); | 48 MOCK_METHOD1(RemoveObserver, void(syncer::SyncNotifierObserver*)); |
49 MOCK_METHOD1(SetUniqueId, void(const std::string&)); | 49 MOCK_METHOD1(SetUniqueId, void(const std::string&)); |
50 MOCK_METHOD1(SetStateDeprecated, void(const std::string&)); | 50 MOCK_METHOD1(SetStateDeprecated, void(const std::string&)); |
51 MOCK_METHOD2(UpdateCredentials, void(const std::string&, const std::string&)); | 51 MOCK_METHOD2(UpdateCredentials, void(const std::string&, const std::string&)); |
| 52 MOCK_METHOD1(UpdateEnabledTypes, void(syncer::ModelTypeSet)); |
52 MOCK_METHOD1(SendNotification, void(syncer::ModelTypeSet)); | 53 MOCK_METHOD1(SendNotification, void(syncer::ModelTypeSet)); |
53 }; | 54 }; |
54 | 55 |
55 // All tests just verify that each call is passed through to the delegate, with | 56 // All tests just verify that each call is passed through to the delegate, with |
56 // the exception of UpdateRegisteredIds, which also verifies the call is | 57 // the exception of AddObserver/RemoveObserver, which also verify the observer |
57 // forwarded to the bridge. | 58 // is registered with the bridge. |
58 class BridgedSyncNotifierTest : public testing::Test { | 59 class BridgedSyncNotifierTest : public testing::Test { |
59 public: | 60 public: |
60 BridgedSyncNotifierTest() | 61 BridgedSyncNotifierTest() |
61 : ui_thread_(BrowserThread::UI, &ui_loop_), | 62 : ui_thread_(BrowserThread::UI, &ui_loop_), |
62 mock_bridge_(&mock_profile_, ui_loop_.message_loop_proxy()), | 63 mock_bridge_(&mock_profile_, ui_loop_.message_loop_proxy()), |
63 mock_delegate_(new MockSyncNotifier), // Owned by bridged_notifier_. | 64 mock_delegate_(new MockSyncNotifier), // Owned by bridged_notifier_. |
64 bridged_notifier_(&mock_bridge_, mock_delegate_) {} | 65 bridged_notifier_(&mock_bridge_, mock_delegate_) {} |
65 virtual ~BridgedSyncNotifierTest() {} | 66 virtual ~BridgedSyncNotifierTest() {} |
66 | 67 |
67 protected: | 68 protected: |
68 MessageLoop ui_loop_; | 69 MessageLoop ui_loop_; |
69 content::TestBrowserThread ui_thread_; | 70 content::TestBrowserThread ui_thread_; |
70 NiceMock<ProfileMock> mock_profile_; | 71 NiceMock<ProfileMock> mock_profile_; |
71 StrictMock<MockChromeSyncNotificationBridge> mock_bridge_; | 72 StrictMock<MockChromeSyncNotificationBridge> mock_bridge_; |
72 MockSyncNotifier* mock_delegate_; | 73 MockSyncNotifier* mock_delegate_; |
73 BridgedSyncNotifier bridged_notifier_; | 74 BridgedSyncNotifier bridged_notifier_; |
74 }; | 75 }; |
75 | 76 |
76 TEST_F(BridgedSyncNotifierTest, UpdateRegisteredIds) { | 77 TEST_F(BridgedSyncNotifierTest, AddObserver) { |
77 syncer::MockSyncNotifierObserver observer; | 78 syncer::MockSyncNotifierObserver observer; |
78 EXPECT_CALL(mock_bridge_, UpdateRegisteredIds( | 79 EXPECT_CALL(mock_bridge_, AddObserver(&observer)); |
79 &observer, syncer::ObjectIdSet())); | 80 EXPECT_CALL(*mock_delegate_, AddObserver(&observer)); |
80 EXPECT_CALL(*mock_delegate_, UpdateRegisteredIds( | 81 bridged_notifier_.AddObserver(&observer); |
81 &observer, syncer::ObjectIdSet())); | 82 } |
82 bridged_notifier_.UpdateRegisteredIds(&observer, syncer::ObjectIdSet()); | 83 |
| 84 TEST_F(BridgedSyncNotifierTest, RemoveObserver) { |
| 85 syncer::MockSyncNotifierObserver observer; |
| 86 EXPECT_CALL(mock_bridge_, RemoveObserver(&observer)); |
| 87 EXPECT_CALL(*mock_delegate_, RemoveObserver(&observer)); |
| 88 bridged_notifier_.RemoveObserver(&observer); |
83 } | 89 } |
84 | 90 |
85 TEST_F(BridgedSyncNotifierTest, SetUniqueId) { | 91 TEST_F(BridgedSyncNotifierTest, SetUniqueId) { |
86 std::string unique_id = "unique id"; | 92 std::string unique_id = "unique id"; |
87 EXPECT_CALL(*mock_delegate_, SetUniqueId(unique_id)); | 93 EXPECT_CALL(*mock_delegate_, SetUniqueId(unique_id)); |
88 bridged_notifier_.SetUniqueId(unique_id); | 94 bridged_notifier_.SetUniqueId(unique_id); |
89 } | 95 } |
90 | 96 |
91 TEST_F(BridgedSyncNotifierTest, SetStateDeprecated) { | 97 TEST_F(BridgedSyncNotifierTest, SetStateDeprecated) { |
92 std::string state = "state"; | 98 std::string state = "state"; |
93 EXPECT_CALL(*mock_delegate_, SetStateDeprecated(state)); | 99 EXPECT_CALL(*mock_delegate_, SetStateDeprecated(state)); |
94 bridged_notifier_.SetStateDeprecated(state); | 100 bridged_notifier_.SetStateDeprecated(state); |
95 } | 101 } |
96 | 102 |
97 TEST_F(BridgedSyncNotifierTest, UpdateCredentials) { | 103 TEST_F(BridgedSyncNotifierTest, UpdateCredentials) { |
98 std::string email = "email"; | 104 std::string email = "email"; |
99 std::string token = "token"; | 105 std::string token = "token"; |
100 EXPECT_CALL(*mock_delegate_, UpdateCredentials(email, token)); | 106 EXPECT_CALL(*mock_delegate_, UpdateCredentials(email, token)); |
101 bridged_notifier_.UpdateCredentials(email, token); | 107 bridged_notifier_.UpdateCredentials(email, token); |
102 } | 108 } |
103 | 109 |
| 110 TEST_F(BridgedSyncNotifierTest, UpdateEnabledTypes) { |
| 111 syncer::ModelTypeSet enabled_types(syncer::BOOKMARKS, syncer::PREFERENCES); |
| 112 EXPECT_CALL(*mock_delegate_, |
| 113 UpdateEnabledTypes(HasModelTypes(enabled_types))); |
| 114 bridged_notifier_.UpdateEnabledTypes(enabled_types); |
| 115 } |
| 116 |
104 TEST_F(BridgedSyncNotifierTest, SendNotification) { | 117 TEST_F(BridgedSyncNotifierTest, SendNotification) { |
105 syncer::ModelTypeSet changed_types(syncer::SESSIONS, syncer::EXTENSIONS); | 118 syncer::ModelTypeSet changed_types(syncer::SESSIONS, syncer::EXTENSIONS); |
106 EXPECT_CALL(*mock_delegate_, SendNotification(HasModelTypes(changed_types))); | 119 EXPECT_CALL(*mock_delegate_, SendNotification(HasModelTypes(changed_types))); |
107 bridged_notifier_.SendNotification(changed_types); | 120 bridged_notifier_.SendNotification(changed_types); |
108 } | 121 } |
109 | 122 |
110 } // namespace | 123 } // namespace |
111 } // namespace browser_sync | 124 } // namespace browser_sync |
OLD | NEW |