Roll src/third_party/skia d32087a:1052f51
[chromium-blink-merge.git] / ui / message_center / cocoa / popup_controller_unittest.mm
blob10947951575146ee87779a0e0130e463cf220945
1 // Copyright (c) 2013 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.
5 #import "ui/message_center/cocoa/popup_controller.h"
7 #include "base/mac/scoped_nsobject.h"
8 #include "base/memory/scoped_ptr.h"
9 #include "base/strings/sys_string_conversions.h"
10 #include "base/strings/utf_string_conversions.h"
11 #import "ui/gfx/test/ui_cocoa_test_helper.h"
12 #include "ui/message_center/notification.h"
14 using base::ASCIIToUTF16;
16 namespace message_center {
18 class PopupControllerTest : public ui::CocoaTest {
21 TEST_F(PopupControllerTest, Creation) {
22   scoped_ptr<message_center::Notification> notification(
23       new message_center::Notification(
24           message_center::NOTIFICATION_TYPE_SIMPLE, "",
25           ASCIIToUTF16("Added to circles"),
26           ASCIIToUTF16("Jonathan and 5 others"), gfx::Image(), base::string16(),
27           GURL(), message_center::NotifierId(),
28           message_center::RichNotificationData(), NULL));
30   base::scoped_nsobject<MCPopupController> controller(
31       [[MCPopupController alloc] initWithNotification:notification.get()
32                                         messageCenter:nil
33                                       popupCollection:nil]);
34   // Add an extra ref count for scoped_nsobject since MCPopupController will
35   // release itself when it is being closed.
36   [controller retain];
38   EXPECT_TRUE([controller window]);
39   EXPECT_EQ(notification.get(), [controller notification]);
41   [controller showWindow:nil];
42   [controller close];
45 }  // namespace message_center