HELLO·Android
系统源代码
IT资讯
技术文章
我的收藏
注册
登录
-
我收藏的文章
创建代码块
我的代码块
我的账号
Jelly Bean MR2
|
4.3_r1
下载
查看原文件
收藏
根目录
external
chromium
chrome
browser
chromeos
notifications
desktop_notifications_unittest.cc
// Copyright (c) 2011 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/chromeos/notifications/desktop_notifications_unittest.h" #include "base/stringprintf.h" #include "base/utf_string_conversions.h" #include "chrome/browser/prefs/browser_prefs.h" #include "chrome/browser/prefs/pref_service.h" #include "content/common/desktop_notification_messages.h" namespace chromeos { // static std::string DesktopNotificationsTest::log_output_; class MockNotificationUI : public BalloonCollectionImpl::NotificationUI { public: virtual void Add(Balloon* balloon) {} virtual bool Update(Balloon* balloon) { return false; } virtual void Remove(Balloon* balloon) {} virtual void Show(Balloon* balloon) {} virtual void ResizeNotification(Balloon* balloon, const gfx::Size& size) {} virtual void SetActiveView(BalloonViewImpl* view) {} }; MockBalloonCollection::MockBalloonCollection() { set_notification_ui(new MockNotificationUI()); } void MockBalloonCollection::Add(const Notification& notification, Profile* profile) { // Swap in a logging proxy for the purpose of logging calls that // would be made into javascript, then pass this down to the // balloon collection. Notification test_notification( notification.origin_url(), notification.content_url(), notification.display_source(), notification.replace_id(), new LoggingNotificationProxy(notification.notification_id())); BalloonCollectionImpl::Add(test_notification, profile); } Balloon* MockBalloonCollection::MakeBalloon(const Notification& notification, Profile* profile) { // Start with a normal balloon but mock out the view. Balloon* balloon = BalloonCollectionImpl::MakeBalloon(notification, profile); balloon->set_view(new MockBalloonView(balloon)); balloons_.insert(balloon); return balloon; } void MockBalloonCollection::OnBalloonClosed(Balloon* source) { balloons_.erase(source); BalloonCollectionImpl::OnBalloonClosed(source); } int MockBalloonCollection::UppermostVerticalPosition() { int min = 0; std::set
::iterator iter; for (iter = balloons_.begin(); iter != balloons_.end(); ++iter) { int pos = (*iter)->GetPosition().y(); if (iter == balloons_.begin() || pos < min) min = pos; } return min; } DesktopNotificationsTest::DesktopNotificationsTest() : ui_thread_(BrowserThread::UI, &message_loop_) { } DesktopNotificationsTest::~DesktopNotificationsTest() { } void DesktopNotificationsTest::SetUp() { browser::RegisterLocalState(&local_state_); profile_.reset(new TestingProfile()); balloon_collection_ = new MockBalloonCollection(); ui_manager_.reset(new NotificationUIManager(&local_state_)); ui_manager_->Initialize(balloon_collection_); balloon_collection_->set_space_change_listener(ui_manager_.get()); service_.reset(new DesktopNotificationService(profile(), ui_manager_.get())); log_output_.clear(); } void DesktopNotificationsTest::TearDown() { service_.reset(NULL); ui_manager_.reset(NULL); profile_.reset(NULL); } DesktopNotificationHostMsg_Show_Params DesktopNotificationsTest::StandardTestNotification() { DesktopNotificationHostMsg_Show_Params params; params.notification_id = 0; params.origin = GURL("http://www.google.com"); params.is_html = false; params.icon_url = GURL("/icon.png"); params.title = ASCIIToUTF16("Title"); params.body = ASCIIToUTF16("Text"); params.direction = WebKit::WebTextDirectionDefault; return params; } TEST_F(DesktopNotificationsTest, TestShow) { DesktopNotificationHostMsg_Show_Params params = StandardTestNotification(); params.notification_id = 1; EXPECT_TRUE(service_->ShowDesktopNotification( params, 0, 0, DesktopNotificationService::PageNotification)); MessageLoopForUI::current()->RunAllPending(); EXPECT_EQ(1, balloon_collection_->count()); DesktopNotificationHostMsg_Show_Params params2; params2.origin = GURL("http://www.google.com"); params2.is_html = true; params2.contents_url = GURL("http://www.google.com/notification.html"); params2.notification_id = 2; EXPECT_TRUE(service_->ShowDesktopNotification( params2, 0, 0, DesktopNotificationService::PageNotification)); MessageLoopForUI::current()->RunAllPending(); EXPECT_EQ(2, balloon_collection_->count()); EXPECT_EQ("notification displayed\n" "notification displayed\n", log_output_); } TEST_F(DesktopNotificationsTest, TestClose) { DesktopNotificationHostMsg_Show_Params params = StandardTestNotification(); params.notification_id = 1; // Request a notification; should open a balloon. EXPECT_TRUE(service_->ShowDesktopNotification( params, 0, 0, DesktopNotificationService::PageNotification)); MessageLoopForUI::current()->RunAllPending(); EXPECT_EQ(1, balloon_collection_->count()); // Close all the open balloons. std::set
balloons = balloon_collection_->balloons(); std::set
::iterator iter; for (iter = balloons.begin(); iter != balloons.end(); ++iter) { (*iter)->OnClose(true); } // Verify that the balloon collection is now empty. EXPECT_EQ(0, balloon_collection_->count()); EXPECT_EQ("notification displayed\n" "notification closed by user\n", log_output_); } TEST_F(DesktopNotificationsTest, TestCancel) { int process_id = 0; int route_id = 0; int notification_id = 1; DesktopNotificationHostMsg_Show_Params params = StandardTestNotification(); params.notification_id = notification_id; // Request a notification; should open a balloon. EXPECT_TRUE(service_->ShowDesktopNotification( params, process_id, route_id, DesktopNotificationService::PageNotification)); MessageLoopForUI::current()->RunAllPending(); EXPECT_EQ(1, balloon_collection_->count()); // Cancel the same notification service_->CancelDesktopNotification(process_id, route_id, notification_id); MessageLoopForUI::current()->RunAllPending(); // Verify that the balloon collection is now empty. EXPECT_EQ(0, balloon_collection_->count()); EXPECT_EQ("notification displayed\n" "notification closed by script\n", log_output_); } TEST_F(DesktopNotificationsTest, TestManyNotifications) { int process_id = 0; int route_id = 0; // Request lots of identical notifications. const int kLotsOfToasts = 20; for (int id = 1; id <= kLotsOfToasts; ++id) { SCOPED_TRACE(base::StringPrintf("Creation loop: id=%d", id)); DesktopNotificationHostMsg_Show_Params params = StandardTestNotification(); params.notification_id = id; EXPECT_TRUE(service_->ShowDesktopNotification( params, process_id, route_id, DesktopNotificationService::PageNotification)); } MessageLoopForUI::current()->RunAllPending(); // Build up an expected log of what should be happening. std::string expected_log; for (int i = 0; i < kLotsOfToasts; ++i) { expected_log.append("notification displayed\n"); } EXPECT_EQ(kLotsOfToasts, balloon_collection_->count()); EXPECT_EQ(expected_log, log_output_); // Cancel half of the notifications from the start int id; int cancelled = kLotsOfToasts / 2; for (id = 1; id <= cancelled; ++id) { SCOPED_TRACE(base::StringPrintf("Cancel half of notifications: id=%d", id)); service_->CancelDesktopNotification(process_id, route_id, id); MessageLoopForUI::current()->RunAllPending(); expected_log.append("notification closed by script\n"); EXPECT_EQ(kLotsOfToasts - id, balloon_collection_->count()); EXPECT_EQ(expected_log, log_output_); } // Now cancel the rest. It should empty the balloon space. for (; id <= kLotsOfToasts; ++id) { SCOPED_TRACE(base::StringPrintf("Cancel loop: id=%d", id)); service_->CancelDesktopNotification(process_id, route_id, id); expected_log.append("notification closed by script\n"); MessageLoopForUI::current()->RunAllPending(); EXPECT_EQ(expected_log, log_output_); } // Verify that the balloon collection is now empty. EXPECT_EQ(0, balloon_collection_->count()); } TEST_F(DesktopNotificationsTest, TestEarlyDestruction) { // Create some toasts and then prematurely delete the notification service, // just to make sure nothing crashes/leaks. for (int id = 0; id <= 3; ++id) { SCOPED_TRACE(base::StringPrintf("Show Text loop: id=%d", id)); EXPECT_TRUE(service_->ShowDesktopNotification( StandardTestNotification(), 0, 0, DesktopNotificationService::PageNotification)); } service_.reset(NULL); } TEST_F(DesktopNotificationsTest, TestUserInputEscaping) { // Create a test script with some HTML; assert that it doesn't get into the // data:// URL that's produced for the balloon. DesktopNotificationHostMsg_Show_Params params = StandardTestNotification(); params.title = ASCIIToUTF16(""); params.body = ASCIIToUTF16("
this text is in italics
"); params.notification_id = 1; EXPECT_TRUE(service_->ShowDesktopNotification( params, 0, 0, DesktopNotificationService::PageNotification)); MessageLoopForUI::current()->RunAllPending(); EXPECT_EQ(1, balloon_collection_->count()); Balloon* balloon = (*balloon_collection_->balloons().begin()); GURL data_url = balloon->notification().content_url(); EXPECT_EQ(std::string::npos, data_url.spec().find("
登录后可以享受更多权益
您还没有登录,登录后您可以:
收藏Android系统代码
收藏喜欢的文章
多个平台共享账号
去登录
首次使用?从这里
注册