1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/browser_process.h"
#include "chrome/browser/extensions/api/notifications/notifications_api.h"
#include "chrome/browser/extensions/extension_apitest.h"
#include "chrome/browser/extensions/extension_function_test_utils.h"
#include "chrome/common/chrome_notification_types.h"
#include "chrome/common/chrome_switches.h"
#include "chrome/common/extensions/features/feature.h"
#include "content/public/browser/notification_service.h"
#include "content/public/test/test_utils.h"
#include "ui/message_center/message_center.h"
#include "ui/message_center/message_center_util.h"
// TODO(kbr): remove: http://crbug.com/222296
#if defined(OS_MACOSX)
#import "base/mac/mac_util.h"
#endif
using extensions::Extension;
namespace utils = extension_function_test_utils;
namespace {
class NotificationsApiTest : public ExtensionApiTest {
public:
virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
ExtensionApiTest::SetUpCommandLine(command_line);
command_line->AppendSwitch(switches::kEnableExperimentalExtensionApis);
}
const extensions::Extension* LoadExtensionAndWait(
const std::string& test_name) {
base::FilePath extdir = test_data_dir_.AppendASCII(test_name);
content::WindowedNotificationObserver page_created(
chrome::NOTIFICATION_EXTENSION_BACKGROUND_PAGE_READY,
content::NotificationService::AllSources());
const extensions::Extension* extension = LoadExtension(extdir);
if (extension) {
page_created.Wait();
}
return extension;
}
};
} // namespace
IN_PROC_BROWSER_TEST_F(NotificationsApiTest, TestIdUsage) {
#if defined(OS_MACOSX)
// TODO(kbr): re-enable: http://crbug.com/222296
if (base::mac::IsOSMountainLionOrLater())
return;
#endif
// Create a new notification. A lingering output of this block is the
// notifications ID, which we'll use in later parts of this test.
std::string notification_id;
scoped_refptr<Extension> empty_extension(utils::CreateEmptyExtension());
{
scoped_refptr<extensions::NotificationsCreateFunction>
notification_function(
new extensions::NotificationsCreateFunction());
notification_function->set_extension(empty_extension.get());
notification_function->set_has_callback(true);
scoped_ptr<base::Value> result(utils::RunFunctionAndReturnSingleResult(
notification_function,
"[\"\", " // Empty string: ask API to generate ID
"{"
"\"type\": \"basic\","
"\"iconUrl\": \"an/image/that/does/not/exist.png\","
"\"title\": \"Attention!\","
"\"message\": \"Check out Cirque du Soleil\""
"}]",
browser(), utils::NONE));
ASSERT_EQ(base::Value::TYPE_STRING, result->GetType());
ASSERT_TRUE(result->GetAsString(¬ification_id));
ASSERT_TRUE(notification_id.length() > 0);
}
// Update the existing notification.
{
scoped_refptr<extensions::NotificationsUpdateFunction>
notification_function(
new extensions::NotificationsUpdateFunction());
notification_function->set_extension(empty_extension.get());
notification_function->set_has_callback(true);
scoped_ptr<base::Value> result(utils::RunFunctionAndReturnSingleResult(
notification_function,
"[\"" + notification_id + "\", "
"{"
"\"type\": \"basic\","
"\"iconUrl\": \"an/image/that/does/not/exist.png\","
"\"title\": \"Attention!\","
"\"message\": \"Too late! The show ended yesterday\""
"}]",
browser(), utils::NONE));
ASSERT_EQ(base::Value::TYPE_BOOLEAN, result->GetType());
bool copy_bool_value = false;
ASSERT_TRUE(result->GetAsBoolean(©_bool_value));
ASSERT_TRUE(copy_bool_value);
// TODO(miket): add a testing method to query the message from the
// displayed notification, and assert it matches the updated message.
//
// TODO(miket): add a method to count the number of outstanding
// notifications, and confirm it remains at one at this point.
}
// Update a nonexistent notification.
{
scoped_refptr<extensions::NotificationsUpdateFunction>
notification_function(
new extensions::NotificationsUpdateFunction());
notification_function->set_extension(empty_extension.get());
notification_function->set_has_callback(true);
scoped_ptr<base::Value> result(utils::RunFunctionAndReturnSingleResult(
notification_function,
"[\"xxxxxxxxxxxx\", "
"{"
"\"type\": \"basic\","
"\"iconUrl\": \"an/image/that/does/not/exist.png\","
"\"title\": \"!\","
"\"message\": \"!\""
"}]",
browser(), utils::NONE));
ASSERT_EQ(base::Value::TYPE_BOOLEAN, result->GetType());
bool copy_bool_value = false;
ASSERT_TRUE(result->GetAsBoolean(©_bool_value));
ASSERT_FALSE(copy_bool_value);
}
// Clear a nonexistent notification.
{
scoped_refptr<extensions::NotificationsClearFunction>
notification_function(
new extensions::NotificationsClearFunction());
notification_function->set_extension(empty_extension.get());
notification_function->set_has_callback(true);
scoped_ptr<base::Value> result(utils::RunFunctionAndReturnSingleResult(
notification_function,
"[\"xxxxxxxxxxx\"]", browser(), utils::NONE));
ASSERT_EQ(base::Value::TYPE_BOOLEAN, result->GetType());
bool copy_bool_value = false;
ASSERT_TRUE(result->GetAsBoolean(©_bool_value));
ASSERT_FALSE(copy_bool_value);
}
// Clear the notification we created.
{
scoped_refptr<extensions::NotificationsClearFunction>
notification_function(
new extensions::NotificationsClearFunction());
notification_function->set_extension(empty_extension.get());
notification_function->set_has_callback(true);
scoped_ptr<base::Value> result(utils::RunFunctionAndReturnSingleResult(
notification_function,
"[\"" + notification_id + "\"]", browser(), utils::NONE));
ASSERT_EQ(base::Value::TYPE_BOOLEAN, result->GetType());
bool copy_bool_value = false;
ASSERT_TRUE(result->GetAsBoolean(©_bool_value));
ASSERT_TRUE(copy_bool_value);
}
}
IN_PROC_BROWSER_TEST_F(NotificationsApiTest, TestBaseFormatNotification) {
scoped_refptr<extensions::NotificationsCreateFunction>
notification_create_function(
new extensions::NotificationsCreateFunction());
scoped_refptr<Extension> empty_extension(utils::CreateEmptyExtension());
notification_create_function->set_extension(empty_extension.get());
notification_create_function->set_has_callback(true);
scoped_ptr<base::Value> result(utils::RunFunctionAndReturnSingleResult(
notification_create_function,
"[\"\", "
"{"
"\"type\": \"basic\","
"\"iconUrl\": \"an/image/that/does/not/exist.png\","
"\"title\": \"Attention!\","
"\"message\": \"Check out Cirque du Soleil\","
"\"priority\": 1,"
"\"eventTime\": 1234567890.12345678,"
"\"buttons\": ["
" {"
" \"title\": \"Up\","
" \"iconUrl\":\"http://www.google.com/logos/2012/\""
" },"
" {"
" \"title\": \"Down\"" // note: no iconUrl
" }"
"],"
"\"expandedMessage\": \"This is a longer expanded message.\","
"\"imageUrl\": \"http://www.google.com/logos/2012/election12-hp.jpg\""
"}]",
browser(), utils::NONE));
std::string notification_id;
ASSERT_EQ(base::Value::TYPE_STRING, result->GetType());
ASSERT_TRUE(result->GetAsString(¬ification_id));
ASSERT_TRUE(notification_id.length() > 0);
}
IN_PROC_BROWSER_TEST_F(NotificationsApiTest, TestMultipleItemNotification) {
scoped_refptr<extensions::NotificationsCreateFunction>
notification_create_function(
new extensions::NotificationsCreateFunction());
scoped_refptr<Extension> empty_extension(utils::CreateEmptyExtension());
notification_create_function->set_extension(empty_extension.get());
notification_create_function->set_has_callback(true);
scoped_ptr<base::Value> result(utils::RunFunctionAndReturnSingleResult(
notification_create_function,
"[\"\", "
"{"
"\"type\": \"list\","
"\"iconUrl\": \"an/image/that/does/not/exist.png\","
"\"title\": \"Multiple Item Notification Title\","
"\"message\": \"Multiple item notification message.\","
"\"items\": ["
" {\"title\": \"Brett Boe\","
" \"message\": \"This is an important message!\"},"
" {\"title\": \"Carla Coe\","
" \"message\": \"Just took a look at the proposal\"},"
" {\"title\": \"Donna Doe\","
" \"message\": \"I see that you went to the conference\"},"
" {\"title\": \"Frank Foe\","
" \"message\": \"I ate Harry's sandwich!\"},"
" {\"title\": \"Grace Goe\","
" \"message\": \"I saw Frank steal a sandwich :-)\"}"
"],"
"\"priority\": 1,"
"\"eventTime\": 1361488019.9999999"
"}]",
browser(), utils::NONE));
// TODO(dharcourt): [...], items = [{title: foo, message: bar}, ...], [...]
std::string notification_id;
ASSERT_EQ(base::Value::TYPE_STRING, result->GetType());
ASSERT_TRUE(result->GetAsString(¬ification_id));
ASSERT_TRUE(notification_id.length() > 0);
}
IN_PROC_BROWSER_TEST_F(NotificationsApiTest, TestEvents) {
#if defined(OS_MACOSX)
// TODO(kbr): re-enable: http://crbug.com/222296
if (base::mac::IsOSMountainLionOrLater())
return;
#endif
ASSERT_TRUE(RunExtensionTest("notifications/api/events")) << message_;
}
IN_PROC_BROWSER_TEST_F(NotificationsApiTest, TestCSP) {
ASSERT_TRUE(RunExtensionTest("notifications/api/csp")) << message_;
}
// MessaceCenter-specific test.
#if defined(RUN_MESSAGE_CENTER_TESTS)
#define MAYBE_TestByUser TestByUser
#else
#define MAYBE_TestByUser DISABLED_TestByUser
#endif
IN_PROC_BROWSER_TEST_F(NotificationsApiTest, MAYBE_TestByUser) {
ASSERT_TRUE(message_center::IsRichNotificationEnabled());
const extensions::Extension* extension =
LoadExtensionAndWait("notifications/api/by_user");
ASSERT_TRUE(extension) << message_;
{
ResultCatcher catcher;
g_browser_process->message_center()->RemoveNotification(
extension->id() + "-FOO",
false);
EXPECT_TRUE(catcher.GetNextResult()) << catcher.message();
}
{
ResultCatcher catcher;
g_browser_process->message_center()->RemoveNotification(
extension->id() + "-BAR",
true);
EXPECT_TRUE(catcher.GetNextResult()) << catcher.message();
}
}
|