[email protected] | 4e94ab3 | 2011-08-05 05:28:27 | [diff] [blame] | 1 | // Copyright (c) 2011 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. |
| 4 | |
| 5 | #include "chrome/browser/prefs/incognito_mode_prefs.h" |
| 6 | |
| 7 | #include "chrome/common/pref_names.h" |
| 8 | #include "chrome/test/base/testing_pref_service.h" |
| 9 | #include "testing/gtest/include/gtest/gtest.h" |
| 10 | |
| 11 | class IncognitoModePrefsTest : public testing::Test { |
| 12 | protected: |
| 13 | virtual void SetUp() { |
| 14 | IncognitoModePrefs::RegisterUserPrefs(&prefs_); |
| 15 | } |
| 16 | |
| 17 | TestingPrefService prefs_; |
| 18 | }; |
| 19 | |
| 20 | TEST_F(IncognitoModePrefsTest, IntToAvailability) { |
| 21 | ASSERT_EQ(0, IncognitoModePrefs::ENABLED); |
| 22 | ASSERT_EQ(1, IncognitoModePrefs::DISABLED); |
| 23 | ASSERT_EQ(2, IncognitoModePrefs::FORCED); |
| 24 | |
| 25 | IncognitoModePrefs::Availability incognito; |
| 26 | EXPECT_TRUE(IncognitoModePrefs::IntToAvailability(0, &incognito)); |
| 27 | EXPECT_EQ(IncognitoModePrefs::ENABLED, incognito); |
| 28 | EXPECT_TRUE(IncognitoModePrefs::IntToAvailability(1, &incognito)); |
| 29 | EXPECT_EQ(IncognitoModePrefs::DISABLED, incognito); |
| 30 | EXPECT_TRUE(IncognitoModePrefs::IntToAvailability(2, &incognito)); |
| 31 | EXPECT_EQ(IncognitoModePrefs::FORCED, incognito); |
| 32 | |
| 33 | EXPECT_FALSE(IncognitoModePrefs::IntToAvailability(10, &incognito)); |
| 34 | EXPECT_EQ(IncognitoModePrefs::ENABLED, incognito); |
| 35 | EXPECT_FALSE(IncognitoModePrefs::IntToAvailability(-1, &incognito)); |
| 36 | EXPECT_EQ(IncognitoModePrefs::ENABLED, incognito); |
| 37 | } |
| 38 | |
| 39 | TEST_F(IncognitoModePrefsTest, GetAvailability) { |
| 40 | prefs_.SetUserPref(prefs::kIncognitoModeAvailability, |
| 41 | Value::CreateIntegerValue(IncognitoModePrefs::ENABLED)); |
| 42 | EXPECT_EQ(IncognitoModePrefs::ENABLED, |
| 43 | IncognitoModePrefs::GetAvailability(&prefs_)); |
| 44 | |
| 45 | prefs_.SetUserPref(prefs::kIncognitoModeAvailability, |
| 46 | Value::CreateIntegerValue(IncognitoModePrefs::DISABLED)); |
| 47 | EXPECT_EQ(IncognitoModePrefs::DISABLED, |
| 48 | IncognitoModePrefs::GetAvailability(&prefs_)); |
| 49 | |
| 50 | prefs_.SetUserPref(prefs::kIncognitoModeAvailability, |
| 51 | Value::CreateIntegerValue(IncognitoModePrefs::FORCED)); |
| 52 | EXPECT_EQ(IncognitoModePrefs::FORCED, |
| 53 | IncognitoModePrefs::GetAvailability(&prefs_)); |
| 54 | } |
| 55 | |
| 56 | typedef IncognitoModePrefsTest IncognitoModePrefsDeathTest; |
| 57 | |
| 58 | TEST_F(IncognitoModePrefsDeathTest, GetAvailabilityBadValue) { |
| 59 | prefs_.SetUserPref(prefs::kIncognitoModeAvailability, |
| 60 | Value::CreateIntegerValue(-1)); |
[email protected] | 20960e07 | 2011-09-20 20:59:01 | [diff] [blame^] | 61 | #if defined(NDEBUG) && defined(DCHECK_ALWAYS_ON) |
| 62 | EXPECT_DEATH({ |
| 63 | IncognitoModePrefs::Availability availability = |
| 64 | IncognitoModePrefs::GetAvailability(&prefs_); |
| 65 | EXPECT_EQ(IncognitoModePrefs::ENABLED, availability); |
| 66 | }, ""); |
| 67 | #else |
[email protected] | 4e94ab3 | 2011-08-05 05:28:27 | [diff] [blame] | 68 | EXPECT_DEBUG_DEATH({ |
| 69 | IncognitoModePrefs::Availability availability = |
| 70 | IncognitoModePrefs::GetAvailability(&prefs_); |
| 71 | EXPECT_EQ(IncognitoModePrefs::ENABLED, availability); |
| 72 | }, ""); |
[email protected] | 20960e07 | 2011-09-20 20:59:01 | [diff] [blame^] | 73 | #endif |
[email protected] | 4e94ab3 | 2011-08-05 05:28:27 | [diff] [blame] | 74 | } |