| 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/non_blocking_invalidation_notifier.h" | 5 #include "sync/notifier/non_blocking_invalidation_notifier.h" |
| 6 | 6 |
| 7 #include "base/memory/ref_counted.h" | 7 #include "base/memory/ref_counted.h" |
| 8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
| 9 #include "base/message_loop.h" | 9 #include "base/message_loop.h" |
| 10 #include "base/threading/thread.h" | 10 #include "base/threading/thread.h" |
| 11 #include "jingle/notifier/base/fake_base_task.h" | 11 #include "jingle/notifier/base/fake_base_task.h" |
| 12 #include "net/url_request/url_request_test_util.h" | 12 #include "net/url_request/url_request_test_util.h" |
| 13 #include "sync/internal_api/public/base/model_type.h" | 13 #include "sync/internal_api/public/base/model_type.h" |
| 14 #include "sync/internal_api/public/base/model_type_payload_map.h" | 14 #include "sync/internal_api/public/base/model_type_payload_map.h" |
| 15 #include "sync/internal_api/public/util/weak_handle.h" | 15 #include "sync/internal_api/public/util/weak_handle.h" |
| 16 #include "sync/notifier/invalidation_state_tracker.h" | 16 #include "sync/notifier/invalidation_state_tracker.h" |
| 17 #include "sync/notifier/mock_sync_notifier_observer.h" | 17 #include "sync/notifier/mock_sync_notifier_observer.h" |
| 18 #include "testing/gmock/include/gmock/gmock.h" | 18 #include "testing/gmock/include/gmock/gmock.h" |
| 19 #include "testing/gtest/include/gtest/gtest.h" | 19 #include "testing/gtest/include/gtest/gtest.h" |
| 20 | 20 |
| 21 namespace syncer { | 21 namespace syncer { |
| 22 | 22 |
| 23 namespace { | 23 namespace { |
| 24 | 24 |
| 25 using ::testing::InSequence; | 25 using ::testing::InSequence; |
| 26 using ::testing::Return; |
| 26 using ::testing::StrictMock; | 27 using ::testing::StrictMock; |
| 27 | 28 |
| 28 class NonBlockingInvalidationNotifierTest : public testing::Test { | 29 class NonBlockingInvalidationNotifierTest : public testing::Test { |
| 29 public: | 30 public: |
| 30 NonBlockingInvalidationNotifierTest() : io_thread_("Test IO thread") {} | 31 NonBlockingInvalidationNotifierTest() : io_thread_("Test IO thread") {} |
| 31 | 32 |
| 32 protected: | 33 protected: |
| 33 virtual void SetUp() { | 34 virtual void SetUp() { |
| 34 base::Thread::Options options; | 35 base::Thread::Options options; |
| 35 options.message_loop_type = MessageLoop::TYPE_IO; | 36 options.message_loop_type = MessageLoop::TYPE_IO; |
| 36 io_thread_.StartWithOptions(options); | 37 io_thread_.StartWithOptions(options); |
| 37 request_context_getter_ = | 38 request_context_getter_ = |
| 38 new TestURLRequestContextGetter(io_thread_.message_loop_proxy()); | 39 new TestURLRequestContextGetter(io_thread_.message_loop_proxy()); |
| 39 notifier::NotifierOptions notifier_options; | 40 notifier::NotifierOptions notifier_options; |
| 40 notifier_options.request_context_getter = request_context_getter_; | 41 notifier_options.request_context_getter = request_context_getter_; |
| 41 invalidation_notifier_.reset( | 42 invalidation_notifier_.reset( |
| 42 new NonBlockingInvalidationNotifier( | 43 new NonBlockingInvalidationNotifier( |
| 43 notifier_options, | 44 notifier_options, |
| 44 InvalidationVersionMap(), | 45 InvalidationVersionMap(), |
| 45 std::string(), // initial_invalidation_state | 46 std::string(), // initial_invalidation_state |
| 46 syncer::MakeWeakHandle( | 47 syncer::MakeWeakHandle( |
| 47 base::WeakPtr<syncer::InvalidationStateTracker>()), | 48 base::WeakPtr<syncer::InvalidationStateTracker>()), |
| 48 "fake_client_info")); | 49 "fake_client_info")); |
| 49 invalidation_notifier_->AddObserver(&mock_observer_); | 50 invalidation_notifier_->AddHandler(&mock_observer_); |
| 50 } | 51 } |
| 51 | 52 |
| 52 virtual void TearDown() { | 53 virtual void TearDown() { |
| 53 invalidation_notifier_->RemoveObserver(&mock_observer_); | 54 invalidation_notifier_->RemoveHandler(&mock_observer_); |
| 54 invalidation_notifier_.reset(); | 55 invalidation_notifier_.reset(); |
| 55 request_context_getter_ = NULL; | 56 request_context_getter_ = NULL; |
| 56 io_thread_.Stop(); | 57 io_thread_.Stop(); |
| 57 ui_loop_.RunAllPending(); | 58 ui_loop_.RunAllPending(); |
| 58 } | 59 } |
| 59 | 60 |
| 60 MessageLoop ui_loop_; | 61 MessageLoop ui_loop_; |
| 61 base::Thread io_thread_; | 62 base::Thread io_thread_; |
| 62 scoped_refptr<net::URLRequestContextGetter> request_context_getter_; | 63 scoped_refptr<net::URLRequestContextGetter> request_context_getter_; |
| 63 scoped_ptr<NonBlockingInvalidationNotifier> invalidation_notifier_; | 64 scoped_ptr<NonBlockingInvalidationNotifier> invalidation_notifier_; |
| 64 StrictMock<MockSyncNotifierObserver> mock_observer_; | 65 StrictMock<MockSyncNotifierObserver> mock_observer_; |
| 65 notifier::FakeBaseTask fake_base_task_; | 66 notifier::FakeBaseTask fake_base_task_; |
| 66 }; | 67 }; |
| 67 | 68 |
| 68 TEST_F(NonBlockingInvalidationNotifierTest, Basic) { | 69 TEST_F(NonBlockingInvalidationNotifierTest, Basic) { |
| 69 InSequence dummy; | 70 InSequence dummy; |
| 70 | 71 |
| 71 syncer::ModelTypePayloadMap type_payloads; | 72 ModelTypeSet models(syncer::PREFERENCES, |
| 72 type_payloads[syncer::PREFERENCES] = "payload"; | 73 syncer::BOOKMARKS, |
| 73 type_payloads[syncer::BOOKMARKS] = ""; | 74 syncer::AUTOFILL); |
| 74 type_payloads[syncer::AUTOFILL] = ""; | 75 ModelTypePayloadMap type_payloads = |
| 76 ModelTypePayloadMapFromEnumSet(models, "payload"); |
| 77 |
| 78 EXPECT_CALL(mock_observer_, GetHandledIds()) |
| 79 .WillOnce(Return(ModelTypeSetToObjectIdSet(models))); |
| 80 invalidation_notifier_->ReloadHandlers(); |
| 75 | 81 |
| 76 EXPECT_CALL(mock_observer_, OnNotificationsEnabled()); | 82 EXPECT_CALL(mock_observer_, OnNotificationsEnabled()); |
| 77 EXPECT_CALL(mock_observer_, | 83 EXPECT_CALL(mock_observer_, OnIncomingNotification( |
| 78 OnIncomingNotification(type_payloads, | 84 ModelTypePayloadMapToObjectIdPayloadMap(type_payloads), |
| 79 REMOTE_NOTIFICATION)); | 85 REMOTE_NOTIFICATION)); |
| 80 EXPECT_CALL(mock_observer_, | 86 EXPECT_CALL(mock_observer_, |
| 81 OnNotificationsDisabled(TRANSIENT_NOTIFICATION_ERROR)); | 87 OnNotificationsDisabled(TRANSIENT_NOTIFICATION_ERROR)); |
| 82 EXPECT_CALL(mock_observer_, | 88 EXPECT_CALL(mock_observer_, |
| 83 OnNotificationsDisabled(NOTIFICATION_CREDENTIALS_REJECTED)); | 89 OnNotificationsDisabled(NOTIFICATION_CREDENTIALS_REJECTED)); |
| 84 | 90 |
| 85 invalidation_notifier_->SetStateDeprecated("fake_state"); | 91 invalidation_notifier_->SetStateDeprecated("fake_state"); |
| 86 invalidation_notifier_->SetUniqueId("fake_id"); | 92 invalidation_notifier_->SetUniqueId("fake_id"); |
| 87 invalidation_notifier_->UpdateCredentials("foo@bar.com", "fake_token"); | 93 invalidation_notifier_->UpdateCredentials("foo@bar.com", "fake_token"); |
| 88 | 94 |
| 89 invalidation_notifier_->OnNotificationsEnabled(); | 95 invalidation_notifier_->OnNotificationsEnabled(); |
| 90 invalidation_notifier_->OnIncomingNotification(type_payloads, | 96 invalidation_notifier_->OnIncomingNotification( |
| 91 REMOTE_NOTIFICATION); | 97 ModelTypePayloadMapToObjectIdPayloadMap(type_payloads), |
| 98 REMOTE_NOTIFICATION); |
| 92 invalidation_notifier_->OnNotificationsDisabled( | 99 invalidation_notifier_->OnNotificationsDisabled( |
| 93 TRANSIENT_NOTIFICATION_ERROR); | 100 TRANSIENT_NOTIFICATION_ERROR); |
| 94 invalidation_notifier_->OnNotificationsDisabled( | 101 invalidation_notifier_->OnNotificationsDisabled( |
| 95 NOTIFICATION_CREDENTIALS_REJECTED); | 102 NOTIFICATION_CREDENTIALS_REJECTED); |
| 96 | 103 |
| 97 ui_loop_.RunAllPending(); | 104 ui_loop_.RunAllPending(); |
| 98 } | 105 } |
| 99 | 106 |
| 100 } // namespace | 107 } // namespace |
| 101 | 108 |
| 102 } // namespace syncer | 109 } // namespace syncer |
| OLD | NEW |