Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(654)

Side by Side Diff: chrome/browser/ui/website_settings/permission_menu_model_unittest.cc

Issue 903683005: Always prompt for permission on fullscreen and mouse lock on file:// URLs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: style fixes and remove unused includes Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/browser/ui/website_settings/permission_menu_model.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "base/strings/utf_string_conversions.h"
msw 2015/02/12 21:09:48 nit: is this actually needed?
estark 2015/02/12 21:39:15 Oops, no -- removed.
5 #include "chrome/browser/ui/website_settings/permission_menu_model.h" 6 #include "chrome/browser/ui/website_settings/permission_menu_model.h"
6 #include "components/content_settings/core/common/content_settings.h" 7 #include "chrome/grit/generated_resources.h"
7 #include "components/content_settings/core/common/content_settings_types.h"
8 #include "testing/gtest/include/gtest/gtest.h" 8 #include "testing/gtest/include/gtest/gtest.h"
9 #include "url/gurl.h" 9 #include "ui/base/l10n/l10n_util.h"
10 10
11 namespace { 11 namespace {
12 12
13 class TestCallback { 13 class TestCallback {
14 public: 14 public:
15 TestCallback() : current_(-1) {} 15 TestCallback() : current_(-1) {}
16 16
17 PermissionMenuModel::ChangeCallback callback() { 17 PermissionMenuModel::ChangeCallback callback() {
18 return base::Bind(&TestCallback::PermissionChanged, base::Unretained(this)); 18 return base::Bind(&TestCallback::PermissionChanged, base::Unretained(this));
19 } 19 }
(...skipping 28 matching lines...) Expand all
48 EXPECT_EQ(2, model.GetItemCount()); 48 EXPECT_EQ(2, model.GetItemCount());
49 } 49 }
50 50
51 TEST(PermissionMenuModelTest, TestAllowBlock) { 51 TEST(PermissionMenuModelTest, TestAllowBlock) {
52 TestCallback callback; 52 TestCallback callback;
53 PermissionMenuModel model(GURL("http://www.google.com"), 53 PermissionMenuModel model(GURL("http://www.google.com"),
54 CONTENT_SETTING_ALLOW, 54 CONTENT_SETTING_ALLOW,
55 callback.callback()); 55 callback.callback());
56 EXPECT_EQ(2, model.GetItemCount()); 56 EXPECT_EQ(2, model.GetItemCount());
57 } 57 }
58
59 TEST(PermissionMenuModelTest, TestFullscreenMouseLockFileUrl) {
60 TestCallback callback;
61 WebsiteSettingsUI::PermissionInfo permission;
62 permission.type = CONTENT_SETTINGS_TYPE_FULLSCREEN;
63 permission.setting = CONTENT_SETTING_ASK;
64 permission.default_setting = CONTENT_SETTING_ASK;
65 PermissionMenuModel fullscreen_model(GURL("file:///test.html"), permission,
66 callback.callback());
67 EXPECT_EQ(1, fullscreen_model.GetItemCount());
68 EXPECT_TRUE(
69 l10n_util::GetStringUTF16(IDS_WEBSITE_SETTINGS_MENU_ITEM_DEFAULT_ASK)
70 .compare(fullscreen_model.GetLabelAt(0)) == 0);
msw 2015/02/12 21:09:48 nit: you should be able to use EXPECT_EQ with thes
estark 2015/02/12 21:39:15 Done.
71
72 permission.type = CONTENT_SETTINGS_TYPE_MOUSELOCK;
73 PermissionMenuModel mouselock_model(GURL("file:///test.html"), permission,
74 callback.callback());
75 EXPECT_EQ(1, mouselock_model.GetItemCount());
76 EXPECT_TRUE(
77 l10n_util::GetStringUTF16(IDS_WEBSITE_SETTINGS_MENU_ITEM_DEFAULT_ASK)
78 .compare(fullscreen_model.GetLabelAt(0)) == 0);
79 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/website_settings/permission_menu_model.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698