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