Update path of checkdeps to buildtools checkout
[chromium-blink-merge.git] / ui / message_center / views / message_center_view_unittest.cc
blob99fa804e04d41729291f9826338fec6f2d59934c
1 // Copyright 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 #include <map>
7 #include "base/logging.h"
8 #include "base/memory/scoped_ptr.h"
9 #include "base/strings/utf_string_conversions.h"
10 #include "testing/gtest/include/gtest/gtest.h"
11 #include "ui/message_center/fake_message_center.h"
12 #include "ui/message_center/notification.h"
13 #include "ui/message_center/notification_list.h"
14 #include "ui/message_center/notification_types.h"
15 #include "ui/message_center/views/message_center_controller.h"
16 #include "ui/message_center/views/message_center_view.h"
17 #include "ui/message_center/views/notification_view.h"
19 namespace message_center {
21 /* Types **********************************************************************/
23 enum CallType {
24 GET_PREFERRED_SIZE,
25 GET_HEIGHT_FOR_WIDTH,
26 LAYOUT
29 /* Instrumented/Mock NotificationView subclass ********************************/
31 class MockNotificationView : public NotificationView {
32 public:
33 class Test {
34 public:
35 virtual void RegisterCall(CallType type) = 0;
38 explicit MockNotificationView(MessageCenterController* controller,
39 const Notification& notification,
40 Test* test);
41 virtual ~MockNotificationView();
43 virtual gfx::Size GetPreferredSize() const OVERRIDE;
44 virtual int GetHeightForWidth(int w) const OVERRIDE;
45 virtual void Layout() OVERRIDE;
47 private:
48 Test* test_;
50 DISALLOW_COPY_AND_ASSIGN(MockNotificationView);
53 MockNotificationView::MockNotificationView(MessageCenterController* controller,
54 const Notification& notification,
55 Test* test)
56 : NotificationView(controller, notification),
57 test_(test) {
60 MockNotificationView::~MockNotificationView() {
63 gfx::Size MockNotificationView::GetPreferredSize() const {
64 test_->RegisterCall(GET_PREFERRED_SIZE);
65 DCHECK(child_count() > 0);
66 return NotificationView::GetPreferredSize();
69 int MockNotificationView::GetHeightForWidth(int width) const {
70 test_->RegisterCall(GET_HEIGHT_FOR_WIDTH);
71 DCHECK(child_count() > 0);
72 return NotificationView::GetHeightForWidth(width);
75 void MockNotificationView::Layout() {
76 test_->RegisterCall(LAYOUT);
77 DCHECK(child_count() > 0);
78 NotificationView::Layout();
81 /* Test fixture ***************************************************************/
83 class MessageCenterViewTest : public testing::Test,
84 public MockNotificationView::Test,
85 public MessageCenterController {
86 public:
87 MessageCenterViewTest();
88 virtual ~MessageCenterViewTest();
90 virtual void SetUp() OVERRIDE;
91 virtual void TearDown() OVERRIDE;
93 MessageCenterView* GetMessageCenterView();
94 int GetNotificationCount();
95 int GetCallCount(CallType type);
97 // Overridden from MessageCenterController:
98 virtual void ClickOnNotification(const std::string& notification_id) OVERRIDE;
99 virtual void RemoveNotification(const std::string& notification_id,
100 bool by_user) OVERRIDE;
101 virtual scoped_ptr<ui::MenuModel> CreateMenuModel(
102 const NotifierId& notifier_id,
103 const base::string16& display_source) OVERRIDE;
104 virtual bool HasClickedListener(const std::string& notification_id) OVERRIDE;
105 virtual void ClickOnNotificationButton(const std::string& notification_id,
106 int button_index) OVERRIDE;
108 // Overridden from MockNotificationView::Test
109 virtual void RegisterCall(CallType type) OVERRIDE;
111 void LogBounds(int depth, views::View* view);
113 private:
114 views::View* MakeParent(views::View* child1, views::View* child2);
117 scoped_ptr<MessageCenterView> message_center_view_;
118 FakeMessageCenter message_center_;
119 std::map<CallType,int> callCounts_;
121 DISALLOW_COPY_AND_ASSIGN(MessageCenterViewTest);
124 MessageCenterViewTest::MessageCenterViewTest() {
127 MessageCenterViewTest::~MessageCenterViewTest() {
130 void MessageCenterViewTest::SetUp() {
131 // Create a dummy notification.
132 Notification notification(NOTIFICATION_TYPE_SIMPLE,
133 std::string("notification id"),
134 base::UTF8ToUTF16("title"),
135 base::UTF8ToUTF16("message"),
136 gfx::Image(),
137 base::UTF8ToUTF16("display source"),
138 NotifierId(NotifierId::APPLICATION, "extension_id"),
139 message_center::RichNotificationData(),
140 NULL);
142 // ...and a list for it.
143 NotificationList::Notifications notifications;
144 notifications.insert(&notification);
146 // Then create a new MessageCenterView with that single notification.
147 message_center_view_.reset(new MessageCenterView(
148 &message_center_, NULL, 100, false, /*top_down =*/false));
149 message_center_view_->SetNotifications(notifications);
151 // Remove and delete the NotificationView now owned by the MessageCenterView's
152 // MessageListView and replace it with an instrumented MockNotificationView
153 // that will become owned by the MessageListView.
154 MockNotificationView* mock;
155 mock = new MockNotificationView(this, notification, this);
156 message_center_view_->notification_views_[notification.id()] = mock;
157 message_center_view_->SetNotificationViewForTest(mock);
160 void MessageCenterViewTest::TearDown() {
161 message_center_view_.reset();
164 MessageCenterView* MessageCenterViewTest::GetMessageCenterView() {
165 return message_center_view_.get();
168 int MessageCenterViewTest::GetNotificationCount() {
169 return 1;
172 int MessageCenterViewTest::GetCallCount(CallType type) {
173 return callCounts_[type];
176 void MessageCenterViewTest::ClickOnNotification(
177 const std::string& notification_id) {
178 // For this test, this method should not be invoked.
179 NOTREACHED();
182 void MessageCenterViewTest::RemoveNotification(
183 const std::string& notification_id,
184 bool by_user) {
185 // For this test, this method should not be invoked.
186 NOTREACHED();
189 scoped_ptr<ui::MenuModel> MessageCenterViewTest::CreateMenuModel(
190 const NotifierId& notifier_id,
191 const base::string16& display_source) {
192 // For this test, this method should not be invoked.
193 NOTREACHED();
194 return scoped_ptr<ui::MenuModel>();
197 bool MessageCenterViewTest::HasClickedListener(
198 const std::string& notification_id) {
199 return true;
202 void MessageCenterViewTest::ClickOnNotificationButton(
203 const std::string& notification_id,
204 int button_index) {
205 // For this test, this method should not be invoked.
206 NOTREACHED();
209 void MessageCenterViewTest::RegisterCall(CallType type) {
210 callCounts_[type] += 1;
213 void MessageCenterViewTest::LogBounds(int depth, views::View* view) {
214 base::string16 inset;
215 for (int i = 0; i < depth; ++i)
216 inset.append(base::UTF8ToUTF16(" "));
217 gfx::Rect bounds = view->bounds();
218 DVLOG(0) << inset << bounds.width() << " x " << bounds.height()
219 << " @ " << bounds.x() << ", " << bounds.y();
220 for (int i = 0; i < view->child_count(); ++i)
221 LogBounds(depth + 1, view->child_at(i));
224 /* Unit tests *****************************************************************/
226 TEST_F(MessageCenterViewTest, CallTest) {
227 // Exercise (with size values that just need to be large enough).
228 GetMessageCenterView()->SetBounds(0, 0, 100, 100);
230 // Verify that this didn't generate more than 2 Layout() call per descendant
231 // NotificationView or more than a total of 20 GetPreferredSize() and
232 // GetHeightForWidth() calls per descendant NotificationView. 20 is a very
233 // large number corresponding to the current reality. That number will be
234 // ratcheted down over time as the code improves.
235 EXPECT_LE(GetCallCount(LAYOUT), GetNotificationCount() * 2);
236 EXPECT_LE(GetCallCount(GET_PREFERRED_SIZE) +
237 GetCallCount(GET_HEIGHT_FOR_WIDTH),
238 GetNotificationCount() * 20);
241 } // namespace message_center