blob: f63363e21da64b86d1dc14b97e3922b72c6dca4a (
plain)
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
|
// Copyright (c) 2009 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/page_menu_model.h"
#include "base/logging.h"
#include "chrome/test/browser_with_test_window_test.h"
#include "chrome/test/menu_model_test.h"
#include "grit/generated_resources.h"
#include "testing/gtest/include/gtest/gtest.h"
class PageMenuModelTest : public BrowserWithTestWindowTest,
public MenuModelTest {
};
TEST_F(PageMenuModelTest, Basics) {
PageMenuModel model(&delegate_, browser());
int itemCount = model.GetItemCount();
// Verify it has items. The number varies by platform, so we don't check
// the exact number.
EXPECT_GT(itemCount, 10);
// Execute a couple of the items and make sure it gets back to our delegate.
// We can't use CountEnabledExecutable() here because the encoding menu's
// delegate is internal, it doesn't use the one we pass in.
model.ActivatedAt(0);
EXPECT_TRUE(model.IsEnabledAt(0));
model.ActivatedAt(itemCount - 1);
EXPECT_TRUE(model.IsEnabledAt(itemCount - 1));
EXPECT_EQ(delegate_.execute_count_, 2);
EXPECT_EQ(delegate_.enable_count_, 2);
delegate_.execute_count_ = 0;
delegate_.enable_count_ = 0;
// Choose something from the zoom submenu and make sure it makes it back to
// the delegate as well. Use the first submenu as the zoom one.
int zoomModelIndex = -1;
for (int i = 0; i < itemCount; ++i) {
if (model.GetTypeAt(i) == menus::MenuModel::TYPE_SUBMENU) {
zoomModelIndex = i;
break;
}
}
EXPECT_GT(zoomModelIndex, -1);
menus::MenuModel* zoomModel = model.GetSubmenuModelAt(zoomModelIndex);
EXPECT_TRUE(zoomModel);
EXPECT_GT(zoomModel->GetItemCount(), 1);
zoomModel->ActivatedAt(1);
EXPECT_TRUE(zoomModel->IsEnabledAt(1));
EXPECT_EQ(delegate_.execute_count_, 1);
EXPECT_EQ(delegate_.enable_count_, 1);
}
|