OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 "chrome/browser/ui/toolbar/encoding_menu_controller.h" | 5 #include "chrome/browser/ui/toolbar/encoding_menu_controller.h" |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 | 8 |
9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
10 #include "chrome/app/chrome_command_ids.h" | 10 #include "chrome/app/chrome_command_ids.h" |
11 #include "chrome/browser/prefs/pref_service.h" | 11 #include "chrome/browser/prefs/pref_service.h" |
12 #include "chrome/browser/profiles/profile.h" | 12 #include "chrome/browser/profiles/profile.h" |
13 #include "chrome/common/pref_names.h" | 13 #include "chrome/common/pref_names.h" |
14 #include "chrome/test/base/testing_browser_process_test.h" | |
15 #include "chrome/test/base/testing_profile.h" | 14 #include "chrome/test/base/testing_profile.h" |
16 #include "testing/gtest/include/gtest/gtest.h" | 15 #include "testing/gtest/include/gtest/gtest.h" |
17 | 16 |
18 class EncodingMenuControllerTest : public TestingBrowserProcessTest { | 17 class EncodingMenuControllerTest : public testing::Test { |
19 }; | 18 }; |
20 | 19 |
21 TEST_F(EncodingMenuControllerTest, EncodingIDsBelongTest) { | 20 TEST_F(EncodingMenuControllerTest, EncodingIDsBelongTest) { |
22 EncodingMenuController controller; | 21 EncodingMenuController controller; |
23 | 22 |
24 // Check some bogus ids to make sure they're never valid. | 23 // Check some bogus ids to make sure they're never valid. |
25 ASSERT_FALSE(controller.DoesCommandBelongToEncodingMenu(0)); | 24 ASSERT_FALSE(controller.DoesCommandBelongToEncodingMenu(0)); |
26 ASSERT_FALSE(controller.DoesCommandBelongToEncodingMenu(-1)); | 25 ASSERT_FALSE(controller.DoesCommandBelongToEncodingMenu(-1)); |
27 | 26 |
28 int num_valid_encoding_ids = controller.NumValidGUIEncodingIDs(); | 27 int num_valid_encoding_ids = controller.NumValidGUIEncodingIDs(); |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
84 encoding, | 83 encoding, |
85 valid_encodings[i]); | 84 valid_encodings[i]); |
86 // Only one item in the encoding menu can be selected at a time. | 85 // Only one item in the encoding menu can be selected at a time. |
87 ASSERT_FALSE(on && encoding_is_enabled); | 86 ASSERT_FALSE(on && encoding_is_enabled); |
88 encoding_is_enabled |= on; | 87 encoding_is_enabled |= on; |
89 } | 88 } |
90 | 89 |
91 // Make sure at least one encoding is enabled. | 90 // Make sure at least one encoding is enabled. |
92 ASSERT_TRUE(encoding_is_enabled); | 91 ASSERT_TRUE(encoding_is_enabled); |
93 } | 92 } |
OLD | NEW |