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
|
// 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/extensions/api/notification/notification_api.h"
#include "chrome/browser/extensions/extension_apitest.h"
#include "chrome/browser/extensions/extension_function_test_utils.h"
#include "chrome/common/chrome_switches.h"
using extensions::Extension;
namespace utils = extension_function_test_utils;
namespace {
class NotificationApiTest : public ExtensionApiTest {
public:
virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
ExtensionApiTest::SetUpCommandLine(command_line);
command_line->AppendSwitch(switches::kEnableExperimentalExtensionApis);
}
};
} // namespace
IN_PROC_BROWSER_TEST_F(NotificationApiTest, TestIdUsage) {
// Create a new notification. A lingering output of this block is the
// notification 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::NotificationCreateFunction>
notification_function(
new extensions::NotificationCreateFunction());
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
"{"
"\"templateType\": \"simple\","
"\"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::NotificationUpdateFunction>
notification_function(
new extensions::NotificationUpdateFunction());
notification_function->set_extension(empty_extension.get());
notification_function->set_has_callback(true);
scoped_ptr<base::Value> result(utils::RunFunctionAndReturnSingleResult(
notification_function,
"[\"" + notification_id + "\", "
"{"
"\"templateType\": \"simple\","
"\"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::NotificationUpdateFunction>
notification_function(
new extensions::NotificationUpdateFunction());
notification_function->set_extension(empty_extension.get());
notification_function->set_has_callback(true);
scoped_ptr<base::Value> result(utils::RunFunctionAndReturnSingleResult(
notification_function,
"[\"xxxxxxxxxxxx\", "
"{"
"\"templateType\": \"simple\","
"\"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);
}
// Delete a nonexistent notification.
{
scoped_refptr<extensions::NotificationDeleteFunction>
notification_function(
new extensions::NotificationDeleteFunction());
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);
}
// Delete the notification we created.
{
scoped_refptr<extensions::NotificationDeleteFunction>
notification_function(
new extensions::NotificationDeleteFunction());
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(NotificationApiTest, TestBaseFormatNotification) {
scoped_refptr<extensions::NotificationCreateFunction>
notification_create_function(
new extensions::NotificationCreateFunction());
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,
"[\"\", "
"{"
"\"templateType\": \"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(NotificationApiTest, TestMultipleItemNotification) {
scoped_refptr<extensions::NotificationCreateFunction>
notification_create_function(
new extensions::NotificationCreateFunction());
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,
"[\"\", "
"{"
"\"templateType\": \"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(NotificationApiTest, TestEvents) {
ASSERT_TRUE(RunExtensionTest("notification/api/events")) << message_;
}
IN_PROC_BROWSER_TEST_F(NotificationApiTest, TestCSP) {
ASSERT_TRUE(RunExtensionTest("notification/api/csp")) << message_;
}
|