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

Side by Side Diff: chrome/browser/extensions/api/notification_provider/notification_provider_apitest.cc

Issue 356673003: Notification Provider API (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 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
OLDNEW
(Empty)
1 // Copyright (c) 2014 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/notification_provider/notification_provi der_api.h"
6 #include "chrome/browser/extensions/chrome_extension_function.h"
7 #include "chrome/browser/extensions/extension_apitest.h"
8 #include "chrome/browser/profiles/profile.h"
9 #include "chrome/common/extensions/api/notification_provider.h"
10
11 typedef ExtensionApiTest NotificationProviderApiTest;
12
13 IN_PROC_BROWSER_TEST_F(NotificationProviderApiTest, Events) {
14 std::string sender_id1 = "SenderId1";
15 std::string notification_id1 = "NotificationId1";
16
17 extensions::api::notifications::NotificationOptions options;
18 options.type = extensions::api::notifications::ParseTemplateType("basic");
19 options.icon_url = scoped_ptr<std::string>(new std::string("icon.png"));
20 options.title = scoped_ptr<std::string>(new std::string("Title"));
21 options.message =
22 scoped_ptr<std::string>(new std::string("Here goes the message"));
23
24 ResultCatcher catcher;
25 catcher.RestrictToProfile(browser()->profile());
26
27 // Test notification provider extension
28 const extensions::Extension* extension =
29 LoadExtension(test_data_dir_.AppendASCII("notification_provider/events"));
30 ASSERT_TRUE(extension);
31
32 extensions::NotificationProviderEventRouter* event_router =
33 new extensions::NotificationProviderEventRouter(browser()->profile());
34
35 event_router->CreateNotification(
36 extension->id(), sender_id1, notification_id1, options);
37 event_router->UpdateNotification(
38 extension->id(), sender_id1, notification_id1, options);
39 event_router->ClearNotification(
40 extension->id(), sender_id1, notification_id1);
41
42 EXPECT_TRUE(catcher.GetNextResult()) << catcher.message();
43 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698