OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
| 5 #include "base/memory/scoped_ptr.h" |
5 #include "chrome/browser/extensions/api/notification_provider/notification_provi
der_api.h" | 6 #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/chrome_extension_function.h" |
7 #include "chrome/browser/extensions/extension_apitest.h" | 8 #include "chrome/browser/extensions/extension_apitest.h" |
8 #include "chrome/browser/profiles/profile.h" | 9 #include "chrome/browser/profiles/profile.h" |
9 #include "chrome/common/extensions/api/notification_provider.h" | 10 #include "chrome/common/extensions/api/notification_provider.h" |
10 | 11 |
11 typedef ExtensionApiTest NotificationProviderApiTest; | 12 typedef ExtensionApiTest NotificationProviderApiTest; |
12 | 13 |
13 namespace { | |
14 | |
15 void CreateNotificationOptionsForTest( | |
16 extensions::api::notifications::NotificationOptions* options) { | |
17 options->type = extensions::api::notifications::ParseTemplateType("basic"); | |
18 options->icon_url = scoped_ptr<std::string>(new std::string("icon.png")); | |
19 options->title = scoped_ptr<std::string>(new std::string("Title")); | |
20 options->message = | |
21 scoped_ptr<std::string>(new std::string("Here goes the message")); | |
22 return; | |
23 } | |
24 | |
25 } // namespace | |
26 | |
27 IN_PROC_BROWSER_TEST_F(NotificationProviderApiTest, Events) { | 14 IN_PROC_BROWSER_TEST_F(NotificationProviderApiTest, Events) { |
28 std::string sender_id1 = "SenderId1"; | 15 std::string sender_id1 = "SenderId1"; |
29 std::string notification_id1 = "NotificationId1"; | 16 std::string notification_id1 = "NotificationId1"; |
30 | 17 |
31 scoped_ptr<extensions::api::notifications::NotificationOptions> options( | 18 extensions::api::notifications::NotificationOptions options; |
32 new extensions::api::notifications::NotificationOptions()); | 19 options.type = extensions::api::notifications::ParseTemplateType("basic"); |
33 CreateNotificationOptionsForTest(options.get()); | 20 options.icon_url = scoped_ptr<std::string>(new std::string("icon.png")); |
| 21 options.title = scoped_ptr<std::string>(new std::string("Title")); |
| 22 options.message = |
| 23 scoped_ptr<std::string>(new std::string("Here goes the message")); |
34 | 24 |
35 ResultCatcher catcher; | 25 ResultCatcher catcher; |
36 catcher.RestrictToProfile(browser()->profile()); | 26 catcher.RestrictToProfile(browser()->profile()); |
37 | 27 |
38 // Test notification provider extension | 28 // Test notification provider extension |
39 const extensions::Extension* extension = | 29 const extensions::Extension* extension = |
40 LoadExtension(test_data_dir_.AppendASCII("notification_provider/events")); | 30 LoadExtension(test_data_dir_.AppendASCII("notification_provider/events")); |
41 ASSERT_TRUE(extension); | 31 ASSERT_TRUE(extension); |
42 | 32 |
43 scoped_ptr<extensions::NotificationProviderEventRouter> event_router( | 33 scoped_ptr<extensions::NotificationProviderEventRouter> event_router( |
44 new extensions::NotificationProviderEventRouter(browser()->profile())); | 34 new extensions::NotificationProviderEventRouter(browser()->profile())); |
45 | 35 |
46 event_router->CreateNotification( | 36 event_router->CreateNotification( |
47 extension->id(), sender_id1, notification_id1, *options.get()); | 37 extension->id(), sender_id1, notification_id1, options); |
48 event_router->UpdateNotification( | 38 event_router->UpdateNotification( |
49 extension->id(), sender_id1, notification_id1, *options.release()); | 39 extension->id(), sender_id1, notification_id1, options); |
50 event_router->ClearNotification( | 40 event_router->ClearNotification( |
51 extension->id(), sender_id1, notification_id1); | 41 extension->id(), sender_id1, notification_id1); |
52 | 42 |
53 EXPECT_TRUE(catcher.GetNextResult()) << catcher.message(); | 43 EXPECT_TRUE(catcher.GetNextResult()) << catcher.message(); |
54 } | 44 } |
55 | |
56 IN_PROC_BROWSER_TEST_F(NotificationProviderApiTest, TestBasicUsage) { | |
57 // set up content of a notification | |
58 std::string sender_id1 = "SenderId"; | |
59 std::string notification_id1 = "NotificationId"; | |
60 | |
61 scoped_ptr<extensions::api::notifications::NotificationOptions> options( | |
62 new extensions::api::notifications::NotificationOptions()); | |
63 CreateNotificationOptionsForTest(options.get()); | |
64 | |
65 ResultCatcher catcher; | |
66 catcher.RestrictToProfile(browser()->profile()); | |
67 | |
68 // Test notification provider extension | |
69 const extensions::Extension* extension = LoadExtension( | |
70 test_data_dir_.AppendASCII("notification_provider/basic_usage")); | |
71 ASSERT_TRUE(extension); | |
72 | |
73 scoped_ptr<extensions::NotificationProviderEventRouter> event_router( | |
74 new extensions::NotificationProviderEventRouter(browser()->profile())); | |
75 | |
76 event_router->CreateNotification( | |
77 extension->id(), sender_id1, notification_id1, *options.release()); | |
78 | |
79 EXPECT_TRUE(catcher.GetNextResult()) << catcher.message(); | |
80 } | |
OLD | NEW |