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

Side by Side Diff: sync/notifier/non_blocking_invalidation_notifier_unittest.cc

Issue 10824161: [Sync] Avoid unregistering object IDs on shutdown (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Work around brittle unit test Created 8 years, 4 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « sync/notifier/non_blocking_invalidation_notifier.cc ('k') | sync/notifier/p2p_notifier.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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"
(...skipping 28 matching lines...) Expand all
39 new TestURLRequestContextGetter(io_thread_.message_loop_proxy()); 39 new TestURLRequestContextGetter(io_thread_.message_loop_proxy());
40 notifier::NotifierOptions notifier_options; 40 notifier::NotifierOptions notifier_options;
41 notifier_options.request_context_getter = request_context_getter_; 41 notifier_options.request_context_getter = request_context_getter_;
42 invalidation_notifier_.reset( 42 invalidation_notifier_.reset(
43 new NonBlockingInvalidationNotifier( 43 new NonBlockingInvalidationNotifier(
44 notifier_options, 44 notifier_options,
45 InvalidationVersionMap(), 45 InvalidationVersionMap(),
46 std::string(), // initial_invalidation_state 46 std::string(), // initial_invalidation_state
47 MakeWeakHandle(base::WeakPtr<InvalidationStateTracker>()), 47 MakeWeakHandle(base::WeakPtr<InvalidationStateTracker>()),
48 "fake_client_info")); 48 "fake_client_info"));
49 invalidation_notifier_->RegisterHandler(&mock_observer_);
49 } 50 }
50 51
51 virtual void TearDown() { 52 virtual void TearDown() {
52 invalidation_notifier_->UpdateRegisteredIds(&mock_observer_, ObjectIdSet()); 53 invalidation_notifier_->UnregisterHandler(&mock_observer_);
53 invalidation_notifier_.reset(); 54 invalidation_notifier_.reset();
54 request_context_getter_ = NULL; 55 request_context_getter_ = NULL;
55 io_thread_.Stop(); 56 io_thread_.Stop();
56 ui_loop_.RunAllPending(); 57 ui_loop_.RunAllPending();
57 } 58 }
58 59
59 MessageLoop ui_loop_; 60 MessageLoop ui_loop_;
60 base::Thread io_thread_; 61 base::Thread io_thread_;
61 scoped_refptr<net::URLRequestContextGetter> request_context_getter_; 62 scoped_refptr<net::URLRequestContextGetter> request_context_getter_;
62 scoped_ptr<NonBlockingInvalidationNotifier> invalidation_notifier_; 63 scoped_ptr<NonBlockingInvalidationNotifier> invalidation_notifier_;
63 StrictMock<MockSyncNotifierObserver> mock_observer_; 64 StrictMock<MockSyncNotifierObserver> mock_observer_;
64 notifier::FakeBaseTask fake_base_task_; 65 notifier::FakeBaseTask fake_base_task_;
65 }; 66 };
66 67
68 // TODO(akalin): Add real unit tests (http://crbug.com/140410).
69
67 TEST_F(NonBlockingInvalidationNotifierTest, Basic) { 70 TEST_F(NonBlockingInvalidationNotifierTest, Basic) {
68 InSequence dummy; 71 InSequence dummy;
69 72
70 ModelTypeSet models(PREFERENCES, BOOKMARKS, AUTOFILL); 73 const ModelTypeSet models(PREFERENCES, BOOKMARKS, AUTOFILL);
71 invalidation_notifier_->UpdateRegisteredIds(
72 &mock_observer_, ModelTypeSetToObjectIdSet(models));
73
74 const ModelTypePayloadMap& type_payloads = 74 const ModelTypePayloadMap& type_payloads =
75 ModelTypePayloadMapFromEnumSet(models, "payload"); 75 ModelTypePayloadMapFromEnumSet(models, "payload");
76 EXPECT_CALL(mock_observer_, OnNotificationsEnabled()); 76 EXPECT_CALL(mock_observer_, OnNotificationsEnabled());
77 EXPECT_CALL(mock_observer_, OnIncomingNotification( 77 EXPECT_CALL(mock_observer_, OnIncomingNotification(
78 ModelTypePayloadMapToObjectIdPayloadMap(type_payloads), 78 ModelTypePayloadMapToObjectIdPayloadMap(type_payloads),
79 REMOTE_NOTIFICATION)); 79 REMOTE_NOTIFICATION));
80 EXPECT_CALL(mock_observer_, 80 EXPECT_CALL(mock_observer_,
81 OnNotificationsDisabled(TRANSIENT_NOTIFICATION_ERROR)); 81 OnNotificationsDisabled(TRANSIENT_NOTIFICATION_ERROR));
82 EXPECT_CALL(mock_observer_, 82 EXPECT_CALL(mock_observer_,
83 OnNotificationsDisabled(NOTIFICATION_CREDENTIALS_REJECTED)); 83 OnNotificationsDisabled(NOTIFICATION_CREDENTIALS_REJECTED));
84 84
85 invalidation_notifier_->UpdateRegisteredIds(
86 &mock_observer_, ModelTypeSetToObjectIdSet(models));
87
85 invalidation_notifier_->SetStateDeprecated("fake_state"); 88 invalidation_notifier_->SetStateDeprecated("fake_state");
86 invalidation_notifier_->SetUniqueId("fake_id"); 89 invalidation_notifier_->SetUniqueId("fake_id");
87 invalidation_notifier_->UpdateCredentials("foo@bar.com", "fake_token"); 90 invalidation_notifier_->UpdateCredentials("foo@bar.com", "fake_token");
88 91
89 invalidation_notifier_->OnNotificationsEnabled(); 92 invalidation_notifier_->OnNotificationsEnabled();
90 invalidation_notifier_->OnIncomingNotification( 93 invalidation_notifier_->OnIncomingNotification(
91 ModelTypePayloadMapToObjectIdPayloadMap(type_payloads), 94 ModelTypePayloadMapToObjectIdPayloadMap(type_payloads),
92 REMOTE_NOTIFICATION); 95 REMOTE_NOTIFICATION);
93 invalidation_notifier_->OnNotificationsDisabled( 96 invalidation_notifier_->OnNotificationsDisabled(
94 TRANSIENT_NOTIFICATION_ERROR); 97 TRANSIENT_NOTIFICATION_ERROR);
95 invalidation_notifier_->OnNotificationsDisabled( 98 invalidation_notifier_->OnNotificationsDisabled(
96 NOTIFICATION_CREDENTIALS_REJECTED); 99 NOTIFICATION_CREDENTIALS_REJECTED);
97 100
98 ui_loop_.RunAllPending(); 101 ui_loop_.RunAllPending();
99 } 102 }
100 103
101 } // namespace 104 } // namespace
102 105
103 } // namespace syncer 106 } // namespace syncer
OLDNEW
« no previous file with comments | « sync/notifier/non_blocking_invalidation_notifier.cc ('k') | sync/notifier/p2p_notifier.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698