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 "sync/notifier/sync_notifier_factory.h" | 5 #include "sync/notifier/sync_notifier_factory.h" |
6 | 6 |
7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
9 #include "base/memory/ref_counted.h" | 9 #include "base/memory/ref_counted.h" |
10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 SyncNotifierFactory factory( | 54 SyncNotifierFactory factory( |
55 notifier_options_, | 55 notifier_options_, |
56 "test client info", | 56 "test client info", |
57 base::WeakPtr<InvalidationStateTracker>()); | 57 base::WeakPtr<InvalidationStateTracker>()); |
58 scoped_ptr<SyncNotifier> notifier(factory.CreateSyncNotifier()); | 58 scoped_ptr<SyncNotifier> notifier(factory.CreateSyncNotifier()); |
59 #if defined(OS_ANDROID) | 59 #if defined(OS_ANDROID) |
60 ASSERT_FALSE(notifier.get()); | 60 ASSERT_FALSE(notifier.get()); |
61 #else | 61 #else |
62 ASSERT_TRUE(notifier.get()); | 62 ASSERT_TRUE(notifier.get()); |
63 ObjectIdSet ids = ModelTypeSetToObjectIdSet(ModelTypeSet(syncer::BOOKMARKS)); | 63 ObjectIdSet ids = ModelTypeSetToObjectIdSet(ModelTypeSet(syncer::BOOKMARKS)); |
64 notifier->RegisterHandler(&mock_observer_); | |
65 notifier->UpdateRegisteredIds(&mock_observer_, ids); | 64 notifier->UpdateRegisteredIds(&mock_observer_, ids); |
66 notifier->UnregisterHandler(&mock_observer_); | 65 notifier->UpdateRegisteredIds(&mock_observer_, ObjectIdSet()); |
67 #endif | 66 #endif |
68 } | 67 } |
69 | 68 |
70 // Test basic creation of a P2PNotifier. | 69 // Test basic creation of a P2PNotifier. |
71 TEST_F(SyncNotifierFactoryTest, Basic_P2P) { | 70 TEST_F(SyncNotifierFactoryTest, Basic_P2P) { |
72 notifier_options_.notification_method = notifier::NOTIFICATION_P2P; | 71 notifier_options_.notification_method = notifier::NOTIFICATION_P2P; |
73 SyncNotifierFactory factory( | 72 SyncNotifierFactory factory( |
74 notifier_options_, | 73 notifier_options_, |
75 "test client info", | 74 "test client info", |
76 base::WeakPtr<InvalidationStateTracker>()); | 75 base::WeakPtr<InvalidationStateTracker>()); |
77 scoped_ptr<SyncNotifier> notifier(factory.CreateSyncNotifier()); | 76 scoped_ptr<SyncNotifier> notifier(factory.CreateSyncNotifier()); |
78 #if defined(OS_ANDROID) | 77 #if defined(OS_ANDROID) |
79 ASSERT_FALSE(notifier.get()); | 78 ASSERT_FALSE(notifier.get()); |
80 #else | 79 #else |
81 ASSERT_TRUE(notifier.get()); | 80 ASSERT_TRUE(notifier.get()); |
82 ObjectIdSet ids = ModelTypeSetToObjectIdSet(ModelTypeSet(syncer::BOOKMARKS)); | 81 ObjectIdSet ids = ModelTypeSetToObjectIdSet(ModelTypeSet(syncer::BOOKMARKS)); |
83 notifier->RegisterHandler(&mock_observer_); | |
84 notifier->UpdateRegisteredIds(&mock_observer_, ids); | 82 notifier->UpdateRegisteredIds(&mock_observer_, ids); |
85 notifier->UnregisterHandler(&mock_observer_); | 83 notifier->UpdateRegisteredIds(&mock_observer_, ObjectIdSet()); |
86 #endif | 84 #endif |
87 } | 85 } |
88 | 86 |
89 } // namespace | 87 } // namespace |
90 } // namespace syncer | 88 } // namespace syncer |
OLD | NEW |