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

Side by Side Diff: chrome/browser/extensions/api/push_messaging/push_messaging_apitest.cc

Issue 1018643003: Removing chrome.pushMessaging API (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updates to documentation per kalman's comments Created 5 years, 9 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
OLDNEW
(Empty)
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.
4
5 #include "chrome/browser/extensions/api/push_messaging/push_messaging_api.h"
6
7 #include "apps/launcher.h"
8 #include "base/strings/stringprintf.h"
9 #include "chrome/browser/extensions/api/push_messaging/push_messaging_invalidati on_handler.h"
10 #include "chrome/browser/extensions/api/push_messaging/push_messaging_invalidati on_mapper.h"
11 #include "chrome/browser/extensions/extension_apitest.h"
12 #include "chrome/browser/invalidation/fake_invalidation_service.h"
13 #include "chrome/browser/invalidation/profile_invalidation_provider_factory.h"
14 #include "chrome/browser/profiles/profile.h"
15 #include "chrome/browser/ui/browser.h"
16 #include "chrome/common/chrome_switches.h"
17 #include "chrome/test/base/ui_test_utils.h"
18 #include "components/invalidation/fake_invalidator.h"
19 #include "components/invalidation/invalidation.h"
20 #include "components/invalidation/invalidation_service.h"
21 #include "components/invalidation/profile_invalidation_provider.h"
22 #include "components/keyed_service/core/keyed_service.h"
23 #include "extensions/test/extension_test_message_listener.h"
24 #include "extensions/test/result_catcher.h"
25 #include "google/cacheinvalidation/types.pb.h"
26 #include "testing/gmock/include/gmock/gmock.h"
27
28 using ::testing::SaveArg;
29 using ::testing::StrictMock;
30 using ::testing::_;
31
32 namespace content {
33 class BrowserContext;
34 }
35
36 namespace extensions {
37
38 namespace {
39
40 invalidation::ObjectId ExtensionAndSubchannelToObjectId(
41 const std::string& extension_id, int subchannel_id) {
42 return invalidation::ObjectId(
43 ipc::invalidation::ObjectSource::CHROME_PUSH_MESSAGING,
44 base::StringPrintf("U/%s/%d", extension_id.c_str(), subchannel_id));
45 }
46
47 KeyedService* BuildFakeProfileInvalidationProvider(
48 content::BrowserContext* context) {
49 return new invalidation::ProfileInvalidationProvider(
50 scoped_ptr<invalidation::InvalidationService>(
51 new invalidation::FakeInvalidationService));
52 }
53
54 class MockInvalidationMapper : public PushMessagingInvalidationMapper {
55 public:
56 MockInvalidationMapper();
57 ~MockInvalidationMapper();
58
59 MOCK_METHOD1(SuppressInitialInvalidationsForExtension,
60 void(const std::string&));
61 MOCK_METHOD1(RegisterExtension, void(const std::string&));
62 MOCK_METHOD1(UnregisterExtension, void(const std::string&));
63 };
64
65 MockInvalidationMapper::MockInvalidationMapper() {}
66 MockInvalidationMapper::~MockInvalidationMapper() {}
67
68 } // namespace
69
70 class PushMessagingApiTest : public ExtensionApiTest {
71 public:
72 PushMessagingApiTest()
73 : fake_invalidation_service_(NULL) {
74 }
75
76 void SetUpCommandLine(base::CommandLine* command_line) override {
77 ExtensionApiTest::SetUpCommandLine(command_line);
78 }
79
80 void SetUp() override {
81 invalidation::ProfileInvalidationProviderFactory::GetInstance()->
82 RegisterTestingFactory(BuildFakeProfileInvalidationProvider);
83 ExtensionApiTest::SetUp();
84 }
85
86 void SetUpOnMainThread() override {
87 ExtensionApiTest::SetUpOnMainThread();
88 fake_invalidation_service_ =
89 static_cast<invalidation::FakeInvalidationService*>(
90 static_cast<invalidation::ProfileInvalidationProvider*>(
91 invalidation::ProfileInvalidationProviderFactory::
92 GetInstance()->GetForProfile(profile()))->
93 GetInvalidationService());
94 }
95
96 void EmitInvalidation(
97 const invalidation::ObjectId& object_id,
98 int64 version,
99 const std::string& payload) {
100 fake_invalidation_service_->EmitInvalidationForTest(
101 syncer::Invalidation::Init(object_id, version, payload));
102 }
103
104 PushMessagingAPI* GetAPI() {
105 return PushMessagingAPI::Get(profile());
106 }
107
108 PushMessagingEventRouter* GetEventRouter() {
109 return PushMessagingAPI::Get(profile())->GetEventRouterForTest();
110 }
111
112 invalidation::FakeInvalidationService* fake_invalidation_service_;
113 };
114
115 IN_PROC_BROWSER_TEST_F(PushMessagingApiTest, EventDispatch) {
116 ResultCatcher catcher;
117 catcher.RestrictToBrowserContext(profile());
118
119 const extensions::Extension* extension =
120 LoadExtension(test_data_dir_.AppendASCII("push_messaging"));
121 ASSERT_TRUE(extension);
122 ui_test_utils::NavigateToURL(
123 browser(), extension->GetResourceURL("event_dispatch.html"));
124
125 GetEventRouter()->TriggerMessageForTest(extension->id(), 1, "payload");
126
127 EXPECT_TRUE(catcher.GetNextResult()) << catcher.message();
128 }
129
130 // Test that a push introduced into the sync code makes it to the extension
131 // that we install.
132 IN_PROC_BROWSER_TEST_F(PushMessagingApiTest, ReceivesPush) {
133 ResultCatcher catcher;
134 catcher.RestrictToBrowserContext(profile());
135
136 const extensions::Extension* extension =
137 LoadExtension(test_data_dir_.AppendASCII("push_messaging"));
138 ASSERT_TRUE(extension);
139 ui_test_utils::NavigateToURL(
140 browser(), extension->GetResourceURL("event_dispatch.html"));
141
142 // PushMessagingInvalidationHandler suppresses the initial invalidation on
143 // each subchannel at install, so trigger the suppressions first.
144 for (int i = 0; i < 3; ++i) {
145 EmitInvalidation(
146 ExtensionAndSubchannelToObjectId(extension->id(), i), i, std::string());
147 }
148
149 EmitInvalidation(
150 ExtensionAndSubchannelToObjectId(extension->id(), 1), 5, "payload");
151 EXPECT_TRUE(catcher.GetNextResult()) << catcher.message();
152 }
153
154 // Checks that an extension with the pushMessaging permission gets automatically
155 // registered for invalidations when it is loaded.
156 IN_PROC_BROWSER_TEST_F(PushMessagingApiTest, AutoRegistration) {
157 scoped_ptr<StrictMock<MockInvalidationMapper> > mapper(
158 new StrictMock<MockInvalidationMapper>);
159 StrictMock<MockInvalidationMapper>* unsafe_mapper = mapper.get();
160 // PushMessagingEventRouter owns the mapper now.
161 GetAPI()->SetMapperForTest(mapper.Pass());
162
163 std::string extension_id1;
164 std::string extension_id2;
165 EXPECT_CALL(*unsafe_mapper, SuppressInitialInvalidationsForExtension(_))
166 .WillOnce(SaveArg<0>(&extension_id1));
167 EXPECT_CALL(*unsafe_mapper, RegisterExtension(_))
168 .WillOnce(SaveArg<0>(&extension_id2));
169 const extensions::Extension* extension =
170 LoadExtension(test_data_dir_.AppendASCII("push_messaging"));
171 ASSERT_TRUE(extension);
172 EXPECT_EQ(extension->id(), extension_id1);
173 EXPECT_EQ(extension->id(), extension_id2);
174 EXPECT_CALL(*unsafe_mapper, UnregisterExtension(extension->id()));
175 UnloadExtension(extension->id());
176 }
177
178 // Tests that we re-register for invalidations on restart for extensions that
179 // are already installed.
180 IN_PROC_BROWSER_TEST_F(PushMessagingApiTest, PRE_Restart) {
181 PushMessagingInvalidationHandler* handler =
182 static_cast<PushMessagingInvalidationHandler*>(
183 GetAPI()->GetMapperForTest());
184 EXPECT_TRUE(handler->GetRegisteredExtensionsForTest().empty());
185 ASSERT_TRUE(InstallExtension(test_data_dir_.AppendASCII("push_messaging"),
186 1 /* new install */));
187 }
188
189 IN_PROC_BROWSER_TEST_F(PushMessagingApiTest, Restart) {
190 PushMessagingInvalidationHandler* handler =
191 static_cast<PushMessagingInvalidationHandler*>(
192 GetAPI()->GetMapperForTest());
193 EXPECT_EQ(1U, handler->GetRegisteredExtensionsForTest().size());
194 }
195
196 // Test that GetChannelId fails if no user is signed in.
197 IN_PROC_BROWSER_TEST_F(PushMessagingApiTest, GetChannelId) {
198 ResultCatcher catcher;
199 catcher.RestrictToBrowserContext(profile());
200
201 const extensions::Extension* extension =
202 LoadExtension(test_data_dir_.AppendASCII("push_messaging"));
203 ASSERT_TRUE(extension);
204 ui_test_utils::NavigateToURL(
205 browser(), extension->GetResourceURL("get_channel_id.html"));
206
207 EXPECT_TRUE(catcher.GetNextResult()) << catcher.message();
208 }
209
210 } // namespace extensions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698