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

Side by Side Diff: chrome/browser/net/proxy_policy_handler_unittest.cc

Issue 185413025: Moved policy unittests into the policy component. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 9 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 | Annotate | Revision Log
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 <string> 5 #include <string>
6 6
7 #include "base/memory/scoped_ptr.h" 7 #include "base/memory/scoped_ptr.h"
8 #include "base/values.h" 8 #include "base/values.h"
9 #include "chrome/browser/net/proxy_policy_handler.h" 9 #include "chrome/browser/net/proxy_policy_handler.h"
10 #include "chrome/browser/policy/configuration_policy_pref_store_test.h"
11 #include "chrome/browser/prefs/proxy_config_dictionary.h" 10 #include "chrome/browser/prefs/proxy_config_dictionary.h"
12 #include "chrome/browser/prefs/proxy_prefs.h" 11 #include "chrome/browser/prefs/proxy_prefs.h"
13 #include "chrome/common/pref_names.h" 12 #include "chrome/common/pref_names.h"
14 #include "components/policy/core/browser/configuration_policy_pref_store.h" 13 #include "components/policy/core/browser/configuration_policy_pref_store.h"
14 #include "components/policy/core/browser/configuration_policy_pref_store_test.h"
15 #include "components/policy/core/common/policy_service_impl.h" 15 #include "components/policy/core/common/policy_service_impl.h"
16 #include "policy/policy_constants.h" 16 #include "policy/policy_constants.h"
17 #include "testing/gtest/include/gtest/gtest.h" 17 #include "testing/gtest/include/gtest/gtest.h"
18 18
19 namespace policy { 19 namespace policy {
20 20
21 // Test cases for the proxy policy settings. 21 // Test cases for the proxy policy settings.
22 class ProxyPolicyHandlerTest 22 class ProxyPolicyHandlerTest
23 : public ConfigurationPolicyPrefStoreTest { 23 : public ConfigurationPolicyPrefStoreTest {
24 public: 24 public:
(...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after
278 for (int i = 0; i < ProxyPolicyHandler::MODE_COUNT; ++i) { 278 for (int i = 0; i < ProxyPolicyHandler::MODE_COUNT; ++i) {
279 policy.Set(key::kProxyServerMode, POLICY_LEVEL_MANDATORY, 279 policy.Set(key::kProxyServerMode, POLICY_LEVEL_MANDATORY,
280 POLICY_SCOPE_USER, base::Value::CreateIntegerValue(i), NULL); 280 POLICY_SCOPE_USER, base::Value::CreateIntegerValue(i), NULL);
281 UpdateProviderPolicy(policy); 281 UpdateProviderPolicy(policy);
282 const base::Value* value = NULL; 282 const base::Value* value = NULL;
283 EXPECT_FALSE(store_->GetValue(prefs::kProxy, &value)); 283 EXPECT_FALSE(store_->GetValue(prefs::kProxy, &value));
284 } 284 }
285 } 285 }
286 286
287 } // namespace policy 287 } // namespace policy
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698