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
3 // found in the LICENSE file.
5 #include "base/basictypes.h"
6 #include "base/compiler_specific.h"
7 #include "base/memory/scoped_ptr.h"
8 #include "google/cacheinvalidation/types.pb.h"
9 #include "sync/notifier/fake_invalidation_handler.h"
10 #include "sync/notifier/invalidator_registrar.h"
11 #include "sync/notifier/invalidator_test_template.h"
12 #include "testing/gtest/include/gtest/gtest.h"
18 // We test InvalidatorRegistrar by wrapping it in an Invalidator and
19 // running the usual Invalidator tests.
21 // Thin Invalidator wrapper around InvalidatorRegistrar.
22 class RegistrarInvalidator
: public Invalidator
{
24 RegistrarInvalidator() {}
25 virtual ~RegistrarInvalidator() {}
27 InvalidatorRegistrar
* GetRegistrar() {
31 // Invalidator implementation.
32 virtual void RegisterHandler(InvalidationHandler
* handler
) OVERRIDE
{
33 registrar_
.RegisterHandler(handler
);
36 virtual void UpdateRegisteredIds(InvalidationHandler
* handler
,
37 const ObjectIdSet
& ids
) OVERRIDE
{
38 registrar_
.UpdateRegisteredIds(handler
, ids
);
41 virtual void UnregisterHandler(InvalidationHandler
* handler
) OVERRIDE
{
42 registrar_
.UnregisterHandler(handler
);
45 virtual void Acknowledge(const invalidation::ObjectId
& id
,
46 const AckHandle
& ack_handle
) OVERRIDE
{
50 virtual InvalidatorState
GetInvalidatorState() const OVERRIDE
{
51 return registrar_
.GetInvalidatorState();
54 virtual void UpdateCredentials(
55 const std::string
& email
, const std::string
& token
) OVERRIDE
{
60 InvalidatorRegistrar registrar_
;
62 DISALLOW_COPY_AND_ASSIGN(RegistrarInvalidator
);
65 class RegistrarInvalidatorTestDelegate
{
67 RegistrarInvalidatorTestDelegate() {}
69 ~RegistrarInvalidatorTestDelegate() {
73 void CreateInvalidator(
74 const std::string
& invalidator_client_id
,
75 const std::string
& initial_state
,
76 const base::WeakPtr
<InvalidationStateTracker
>&
77 invalidation_state_tracker
) {
78 DCHECK(!invalidator_
.get());
79 invalidator_
.reset(new RegistrarInvalidator());
82 RegistrarInvalidator
* GetInvalidator() {
83 return invalidator_
.get();
86 void DestroyInvalidator() {
90 void WaitForInvalidator() {
94 void TriggerOnInvalidatorStateChange(InvalidatorState state
) {
95 invalidator_
->GetRegistrar()->UpdateInvalidatorState(state
);
98 void TriggerOnIncomingInvalidation(
99 const ObjectIdInvalidationMap
& invalidation_map
) {
100 invalidator_
->GetRegistrar()->DispatchInvalidationsToHandlers(
105 scoped_ptr
<RegistrarInvalidator
> invalidator_
;
108 INSTANTIATE_TYPED_TEST_CASE_P(
109 RegistrarInvalidatorTest
, InvalidatorTest
,
110 RegistrarInvalidatorTestDelegate
);
112 class InvalidatorRegistrarTest
: public testing::Test
{};
114 // Technically the tests below can be part of InvalidatorTest, but we
115 // want to keep the number of death tests down.
117 // When we expect a death via CHECK(), we can't match against the
118 // CHECK() message since they are removed in official builds.
120 #if GTEST_HAS_DEATH_TEST
121 // Having registered handlers on destruction should cause a CHECK.
122 TEST_F(InvalidatorRegistrarTest
, RegisteredHandlerOnDestruction
) {
123 scoped_ptr
<InvalidatorRegistrar
> registrar(new InvalidatorRegistrar());
124 FakeInvalidationHandler handler
;
126 registrar
->RegisterHandler(&handler
);
128 EXPECT_DEATH({ registrar
.reset(); }, "");
130 ASSERT_TRUE(registrar
.get());
131 registrar
->UnregisterHandler(&handler
);
134 // Multiple registrations by different handlers on the same object ID should
136 TEST_F(InvalidatorRegistrarTest
, MultipleRegistration
) {
137 const invalidation::ObjectId
id1(ipc::invalidation::ObjectSource::TEST
, "a");
138 const invalidation::ObjectId
id2(ipc::invalidation::ObjectSource::TEST
, "a");
140 InvalidatorRegistrar registrar
;
142 FakeInvalidationHandler handler1
;
143 registrar
.RegisterHandler(&handler1
);
145 FakeInvalidationHandler handler2
;
146 registrar
.RegisterHandler(&handler2
);
151 registrar
.UpdateRegisteredIds(&handler1
, ids
);
153 registrar
.DetachFromThreadForTest();
154 EXPECT_DEATH({ registrar
.UpdateRegisteredIds(&handler2
, ids
); }, "");
156 registrar
.UnregisterHandler(&handler2
);
157 registrar
.UnregisterHandler(&handler1
);
159 #endif // GTEST_HAS_DEATH_TEST
163 } // namespace syncer