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 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405
|
// Copyright (c) 2013 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.
#import "ui/message_center/cocoa/popup_collection.h"
#include "base/mac/scoped_nsobject.h"
#include "base/memory/scoped_ptr.h"
#include "base/message_loop/message_loop.h"
#include "base/run_loop.h"
#include "base/strings/sys_string_conversions.h"
#include "base/strings/utf_string_conversions.h"
#import "ui/gfx/test/ui_cocoa_test_helper.h"
#import "ui/message_center/cocoa/notification_controller.h"
#import "ui/message_center/cocoa/popup_controller.h"
#include "ui/message_center/message_center.h"
#include "ui/message_center/message_center_style.h"
#include "ui/message_center/notification.h"
using base::ASCIIToUTF16;
namespace message_center {
class PopupCollectionTest : public ui::CocoaTest {
public:
PopupCollectionTest() {
message_center::MessageCenter::Initialize();
center_ = message_center::MessageCenter::Get();
collection_.reset(
[[MCPopupCollection alloc] initWithMessageCenter:center_]);
[collection_ setAnimationDuration:0.001];
[collection_ setAnimationEndedCallback:^{
if (nested_run_loop_.get())
nested_run_loop_->Quit();
}];
}
void TearDown() override {
collection_.reset(); // Close all popups.
ui::CocoaTest::TearDown();
}
~PopupCollectionTest() override { message_center::MessageCenter::Shutdown(); }
message_center::NotifierId DummyNotifierId() {
return message_center::NotifierId();
}
void AddThreeNotifications() {
scoped_ptr<message_center::Notification> notification;
notification.reset(new message_center::Notification(
message_center::NOTIFICATION_TYPE_SIMPLE,
"1",
ASCIIToUTF16("One"),
ASCIIToUTF16("This is the first notification to"
" be displayed"),
gfx::Image(),
base::string16(),
DummyNotifierId(),
message_center::RichNotificationData(),
NULL));
center_->AddNotification(notification.Pass());
notification.reset(new message_center::Notification(
message_center::NOTIFICATION_TYPE_SIMPLE,
"2",
ASCIIToUTF16("Two"),
ASCIIToUTF16("This is the second notification."),
gfx::Image(),
base::string16(),
DummyNotifierId(),
message_center::RichNotificationData(),
NULL));
center_->AddNotification(notification.Pass());
notification.reset(new message_center::Notification(
message_center::NOTIFICATION_TYPE_SIMPLE,
"3",
ASCIIToUTF16("Three"),
ASCIIToUTF16("This is the third notification "
"that has a much longer body "
"than the other notifications. It "
"may not fit on the screen if we "
"set the screen size too small or "
"if the notification is way too big"),
gfx::Image(),
base::string16(),
DummyNotifierId(),
message_center::RichNotificationData(),
NULL));
center_->AddNotification(notification.Pass());
WaitForAnimationEnded();
}
bool CheckSpacingBetween(MCPopupController* upper, MCPopupController* lower) {
CGFloat minY = NSMinY([[upper window] frame]);
CGFloat maxY = NSMaxY([[lower window] frame]);
CGFloat delta = minY - maxY;
EXPECT_EQ(message_center::kMarginBetweenItems, delta);
return delta == message_center::kMarginBetweenItems;
}
void WaitForAnimationEnded() {
if (![collection_ isAnimating])
return;
nested_run_loop_.reset(new base::RunLoop());
nested_run_loop_->Run();
nested_run_loop_.reset();
}
base::MessageLoopForUI message_loop_;
scoped_ptr<base::RunLoop> nested_run_loop_;
message_center::MessageCenter* center_;
base::scoped_nsobject<MCPopupCollection> collection_;
};
TEST_F(PopupCollectionTest, AddThreeCloseOne) {
EXPECT_EQ(0u, [[collection_ popups] count]);
AddThreeNotifications();
EXPECT_EQ(3u, [[collection_ popups] count]);
center_->RemoveNotification("2", true);
WaitForAnimationEnded();
EXPECT_EQ(2u, [[collection_ popups] count]);
}
TEST_F(PopupCollectionTest, AttemptFourOneOffscreen) {
[collection_ setScreenFrame:NSMakeRect(0, 0, 800, 300)];
EXPECT_EQ(0u, [[collection_ popups] count]);
AddThreeNotifications();
EXPECT_EQ(2u, [[collection_ popups] count]); // "3" does not fit on screen.
scoped_ptr<message_center::Notification> notification;
notification.reset(new message_center::Notification(
message_center::NOTIFICATION_TYPE_SIMPLE,
"4",
ASCIIToUTF16("Four"),
ASCIIToUTF16("This is the fourth notification."),
gfx::Image(),
base::string16(),
DummyNotifierId(),
message_center::RichNotificationData(),
NULL));
center_->AddNotification(notification.Pass());
WaitForAnimationEnded();
// Remove "1" and "3" should fit on screen.
center_->RemoveNotification("1", true);
WaitForAnimationEnded();
ASSERT_EQ(2u, [[collection_ popups] count]);
EXPECT_EQ("2", [[[collection_ popups] objectAtIndex:0] notificationID]);
EXPECT_EQ("3", [[[collection_ popups] objectAtIndex:1] notificationID]);
// Remove "2" and "4" should fit on screen.
center_->RemoveNotification("2", true);
WaitForAnimationEnded();
ASSERT_EQ(2u, [[collection_ popups] count]);
EXPECT_EQ("3", [[[collection_ popups] objectAtIndex:0] notificationID]);
EXPECT_EQ("4", [[[collection_ popups] objectAtIndex:1] notificationID]);
}
TEST_F(PopupCollectionTest, LayoutSpacing) {
const CGFloat kScreenSize = 500;
[collection_ setScreenFrame:NSMakeRect(0, 0, kScreenSize, kScreenSize)];
AddThreeNotifications();
NSArray* popups = [collection_ popups];
EXPECT_EQ(message_center::kMarginBetweenItems,
kScreenSize - NSMaxY([[[popups objectAtIndex:0] window] frame]));
EXPECT_TRUE(CheckSpacingBetween([popups objectAtIndex:0],
[popups objectAtIndex:1]));
EXPECT_TRUE(CheckSpacingBetween([popups objectAtIndex:1],
[popups objectAtIndex:2]));
// Set priority so that kMaxVisiblePopupNotifications does not hide it.
message_center::RichNotificationData optional;
optional.priority = message_center::HIGH_PRIORITY;
scoped_ptr<message_center::Notification> notification;
notification.reset(new message_center::Notification(
message_center::NOTIFICATION_TYPE_SIMPLE,
"4",
ASCIIToUTF16("Four"),
ASCIIToUTF16("This is the fourth notification."),
gfx::Image(),
base::string16(),
DummyNotifierId(),
optional,
NULL));
center_->AddNotification(notification.Pass());
WaitForAnimationEnded();
EXPECT_TRUE(CheckSpacingBetween([popups objectAtIndex:2],
[popups objectAtIndex:3]));
// Remove "2".
center_->RemoveNotification("2", true);
WaitForAnimationEnded();
EXPECT_TRUE(CheckSpacingBetween([popups objectAtIndex:0],
[popups objectAtIndex:1]));
EXPECT_TRUE(CheckSpacingBetween([popups objectAtIndex:1],
[popups objectAtIndex:2]));
// Remove "1".
center_->RemoveNotification("2", true);
WaitForAnimationEnded();
EXPECT_EQ(message_center::kMarginBetweenItems,
kScreenSize - NSMaxY([[[popups objectAtIndex:0] window] frame]));
EXPECT_TRUE(CheckSpacingBetween([popups objectAtIndex:0],
[popups objectAtIndex:1]));
}
TEST_F(PopupCollectionTest, TinyScreen) {
[collection_ setScreenFrame:NSMakeRect(0, 0, 800, 100)];
EXPECT_EQ(0u, [[collection_ popups] count]);
scoped_ptr<message_center::Notification> notification;
notification.reset(new message_center::Notification(
message_center::NOTIFICATION_TYPE_SIMPLE,
"1",
ASCIIToUTF16("One"),
ASCIIToUTF16("This is the first notification to"
" be displayed"),
gfx::Image(),
base::string16(),
DummyNotifierId(),
message_center::RichNotificationData(),
NULL));
center_->AddNotification(notification.Pass());
WaitForAnimationEnded();
EXPECT_EQ(1u, [[collection_ popups] count]);
// Now give the notification a longer message so that it no longer fits.
notification.reset(new message_center::Notification(
message_center::NOTIFICATION_TYPE_SIMPLE,
"1",
ASCIIToUTF16("One"),
ASCIIToUTF16("This is now a very very very very "
"very very very very very very very "
"very very very very very very very "
"very very very very very very very "
"very very very very very very very "
"very very very very very very very "
"very very very very very very very "
"long notification."),
gfx::Image(),
base::string16(),
DummyNotifierId(),
message_center::RichNotificationData(),
NULL));
center_->UpdateNotification("1", notification.Pass());
WaitForAnimationEnded();
EXPECT_EQ(0u, [[collection_ popups] count]);
}
TEST_F(PopupCollectionTest, UpdateIconAndBody) {
AddThreeNotifications();
NSArray* popups = [collection_ popups];
EXPECT_EQ(3u, [popups count]);
// Update "2" icon.
MCNotificationController* controller =
[[popups objectAtIndex:1] notificationController];
EXPECT_FALSE([[controller iconView] image]);
center_->SetNotificationIcon("2",
gfx::Image([[NSImage imageNamed:NSImageNameUser] retain]));
WaitForAnimationEnded();
EXPECT_TRUE([[controller iconView] image]);
EXPECT_EQ(3u, [popups count]);
EXPECT_TRUE(CheckSpacingBetween([popups objectAtIndex:0],
[popups objectAtIndex:1]));
EXPECT_TRUE(CheckSpacingBetween([popups objectAtIndex:1],
[popups objectAtIndex:2]));
// Replace "1".
controller = [[popups objectAtIndex:0] notificationController];
NSRect old_frame = [[controller view] frame];
scoped_ptr<message_center::Notification> notification;
notification.reset(new message_center::Notification(
message_center::NOTIFICATION_TYPE_SIMPLE,
"1",
ASCIIToUTF16("One is going to get a much longer "
"title than it previously had."),
ASCIIToUTF16("This is the first notification to "
"be displayed, but it will also be "
"updated to have a significantly "
"longer body"),
gfx::Image(),
base::string16(),
DummyNotifierId(),
message_center::RichNotificationData(),
NULL));
center_->AddNotification(notification.Pass());
WaitForAnimationEnded();
EXPECT_GT(NSHeight([[controller view] frame]), NSHeight(old_frame));
// Test updated spacing.
EXPECT_EQ(3u, [popups count]);
EXPECT_TRUE(CheckSpacingBetween([popups objectAtIndex:0],
[popups objectAtIndex:1]));
EXPECT_TRUE(CheckSpacingBetween([popups objectAtIndex:1],
[popups objectAtIndex:2]));
EXPECT_EQ("1", [[popups objectAtIndex:0] notificationID]);
EXPECT_EQ("2", [[popups objectAtIndex:1] notificationID]);
EXPECT_EQ("3", [[popups objectAtIndex:2] notificationID]);
}
TEST_F(PopupCollectionTest, UpdatePriority) {
scoped_ptr<message_center::Notification> notification;
notification.reset(new message_center::Notification(
message_center::NOTIFICATION_TYPE_SIMPLE,
"1",
ASCIIToUTF16("One"),
ASCIIToUTF16("This notification should not yet toast."),
gfx::Image(),
base::string16(),
DummyNotifierId(),
message_center::RichNotificationData(),
NULL));
notification->set_priority(-1);
center_->AddNotification(notification.Pass());
WaitForAnimationEnded();
NSArray* popups = [collection_ popups];
EXPECT_EQ(0u, [popups count]);
// Raise priority -1 to 1. Notification should display.
notification.reset(new message_center::Notification(
message_center::NOTIFICATION_TYPE_SIMPLE,
"1",
ASCIIToUTF16("One"),
ASCIIToUTF16("This notification should now toast"),
gfx::Image(),
base::string16(),
DummyNotifierId(),
message_center::RichNotificationData(),
NULL));
notification->set_priority(1);
center_->UpdateNotification("1", notification.Pass());
WaitForAnimationEnded();
EXPECT_EQ(1u, [popups count]);
}
TEST_F(PopupCollectionTest, CloseCollectionBeforeNewPopupAnimationEnds) {
// Add a notification and don't wait for the animation to finish.
scoped_ptr<message_center::Notification> notification;
notification.reset(new message_center::Notification(
message_center::NOTIFICATION_TYPE_SIMPLE,
"1",
ASCIIToUTF16("One"),
ASCIIToUTF16("This is the first notification to"
" be displayed"),
gfx::Image(),
base::string16(),
DummyNotifierId(),
message_center::RichNotificationData(),
NULL));
center_->AddNotification(notification.Pass());
// Release the popup collection before the animation ends. No crash should
// be expected.
collection_.reset();
}
TEST_F(PopupCollectionTest, CloseCollectionBeforeClosePopupAnimationEnds) {
AddThreeNotifications();
// Remove a notification and don't wait for the animation to finish.
center_->RemoveNotification("1", true);
// Release the popup collection before the animation ends. No crash should
// be expected.
collection_.reset();
}
TEST_F(PopupCollectionTest, CloseCollectionBeforeUpdatePopupAnimationEnds) {
AddThreeNotifications();
// Update a notification and don't wait for the animation to finish.
scoped_ptr<message_center::Notification> notification;
notification.reset(new message_center::Notification(
message_center::NOTIFICATION_TYPE_SIMPLE,
"1",
ASCIIToUTF16("One"),
ASCIIToUTF16("New message."),
gfx::Image(),
base::string16(),
DummyNotifierId(),
message_center::RichNotificationData(),
NULL));
center_->UpdateNotification("1", notification.Pass());
// Release the popup collection before the animation ends. No crash should
// be expected.
collection_.reset();
}
} // namespace message_center
|