| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/chromeos/settings/device_settings_cache.h" | 5 #include "chrome/browser/chromeos/settings/device_settings_cache.h" |
| 6 | 6 |
| 7 #include "base/prefs/testing_pref_service.h" | |
| 8 #include "chrome/browser/chromeos/chromeos/policy/chrome_device_policy.pb.h" | 7 #include "chrome/browser/chromeos/chromeos/policy/chrome_device_policy.pb.h" |
| 9 #include "chrome/common/pref_names.h" | 8 #include "chrome/common/pref_names.h" |
| 9 #include "components/prefs/testing_pref_service.h" |
| 10 #include "policy/proto/device_management_backend.pb.h" | 10 #include "policy/proto/device_management_backend.pb.h" |
| 11 #include "testing/gtest/include/gtest/gtest.h" | 11 #include "testing/gtest/include/gtest/gtest.h" |
| 12 | 12 |
| 13 namespace em = enterprise_management; | 13 namespace em = enterprise_management; |
| 14 | 14 |
| 15 namespace chromeos { | 15 namespace chromeos { |
| 16 | 16 |
| 17 class DeviceSettingsCacheTest : public testing::Test { | 17 class DeviceSettingsCacheTest : public testing::Test { |
| 18 protected: | 18 protected: |
| 19 virtual void SetUp() { | 19 virtual void SetUp() { |
| (...skipping 28 matching lines...) Expand all Loading... |
| 48 TEST_F(DeviceSettingsCacheTest, CorruptData) { | 48 TEST_F(DeviceSettingsCacheTest, CorruptData) { |
| 49 EXPECT_TRUE(device_settings_cache::Store(policy_, &local_state_)); | 49 EXPECT_TRUE(device_settings_cache::Store(policy_, &local_state_)); |
| 50 | 50 |
| 51 local_state_.SetString(prefs::kDeviceSettingsCache, "blaaa"); | 51 local_state_.SetString(prefs::kDeviceSettingsCache, "blaaa"); |
| 52 | 52 |
| 53 em::PolicyData policy_out; | 53 em::PolicyData policy_out; |
| 54 EXPECT_FALSE(device_settings_cache::Retrieve(&policy_out, &local_state_)); | 54 EXPECT_FALSE(device_settings_cache::Retrieve(&policy_out, &local_state_)); |
| 55 } | 55 } |
| 56 | 56 |
| 57 } // namespace chromeos | 57 } // namespace chromeos |
| OLD | NEW |