| OLD | NEW |
| 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 "chrome/browser/chromeos/policy/cloud_external_data_manager_base_test_u
til.h" | 5 #include "chrome/browser/chromeos/policy/cloud_external_data_manager_base_test_u
til.h" |
| 6 | 6 |
| 7 #include <utility> | 7 #include <utility> |
| 8 | 8 |
| 9 #include "base/callback.h" | 9 #include "base/callback.h" |
| 10 #include "base/memory/weak_ptr.h" | 10 #include "base/memory/weak_ptr.h" |
| 11 #include "base/strings/string_number_conversions.h" | 11 #include "base/strings/string_number_conversions.h" |
| 12 #include "base/values.h" | 12 #include "base/values.h" |
| 13 #include "components/policy/core/common/cloud/cloud_external_data_manager.h" | 13 #include "components/policy/core/common/cloud/cloud_external_data_manager.h" |
| 14 #include "components/policy/core/common/cloud/cloud_policy_core.h" | 14 #include "components/policy/core/common/cloud/cloud_policy_core.h" |
| 15 #include "components/policy/core/common/cloud/cloud_policy_store.h" | 15 #include "components/policy/core/common/cloud/cloud_policy_store.h" |
| 16 #include "components/policy/core/common/external_data_fetcher.h" | 16 #include "components/policy/core/common/external_data_fetcher.h" |
| 17 #include "components/policy/core/common/policy_map.h" | 17 #include "components/policy/core/common/policy_map.h" |
| 18 #include "components/policy/core/common/policy_types.h" | 18 #include "components/policy/core/common/policy_types.h" |
| 19 #include "crypto/sha2.h" | 19 #include "crypto/sha2.h" |
| 20 #include "testing/gtest/include/gtest/gtest.h" | 20 #include "testing/gtest/include/gtest/gtest.h" |
| 21 | 21 |
| 22 namespace policy { | 22 namespace policy { |
| 23 namespace test { | 23 namespace test { |
| 24 | 24 |
| 25 void ExternalDataFetchCallback(scoped_ptr<std::string>* destination, | 25 void ExternalDataFetchCallback(std::unique_ptr<std::string>* destination, |
| 26 const base::Closure& done_callback, | 26 const base::Closure& done_callback, |
| 27 scoped_ptr<std::string> data) { | 27 std::unique_ptr<std::string> data) { |
| 28 *destination = std::move(data); | 28 *destination = std::move(data); |
| 29 done_callback.Run(); | 29 done_callback.Run(); |
| 30 } | 30 } |
| 31 | 31 |
| 32 scoped_ptr<base::DictionaryValue> ConstructExternalDataReference( | 32 std::unique_ptr<base::DictionaryValue> ConstructExternalDataReference( |
| 33 const std::string& url, | 33 const std::string& url, |
| 34 const std::string& data) { | 34 const std::string& data) { |
| 35 const std::string hash = crypto::SHA256HashString(data); | 35 const std::string hash = crypto::SHA256HashString(data); |
| 36 scoped_ptr<base::DictionaryValue> metadata(new base::DictionaryValue); | 36 std::unique_ptr<base::DictionaryValue> metadata(new base::DictionaryValue); |
| 37 metadata->SetStringWithoutPathExpansion("url", url); | 37 metadata->SetStringWithoutPathExpansion("url", url); |
| 38 metadata->SetStringWithoutPathExpansion("hash", base::HexEncode(hash.c_str(), | 38 metadata->SetStringWithoutPathExpansion("hash", base::HexEncode(hash.c_str(), |
| 39 hash.size())); | 39 hash.size())); |
| 40 return metadata; | 40 return metadata; |
| 41 } | 41 } |
| 42 | 42 |
| 43 void SetExternalDataReference(CloudPolicyCore* core, | 43 void SetExternalDataReference(CloudPolicyCore* core, |
| 44 const std::string& policy, | 44 const std::string& policy, |
| 45 scoped_ptr<base::DictionaryValue> metadata) { | 45 std::unique_ptr<base::DictionaryValue> metadata) { |
| 46 CloudPolicyStore* store = core->store(); | 46 CloudPolicyStore* store = core->store(); |
| 47 ASSERT_TRUE(store); | 47 ASSERT_TRUE(store); |
| 48 PolicyMap policy_map; | 48 PolicyMap policy_map; |
| 49 policy_map.Set(policy, | 49 policy_map.Set(policy, |
| 50 POLICY_LEVEL_MANDATORY, POLICY_SCOPE_USER, POLICY_SOURCE_CLOUD, | 50 POLICY_LEVEL_MANDATORY, POLICY_SCOPE_USER, POLICY_SOURCE_CLOUD, |
| 51 metadata.release(), | 51 metadata.release(), |
| 52 new ExternalDataFetcher(store->external_data_manager(), | 52 new ExternalDataFetcher(store->external_data_manager(), |
| 53 policy)); | 53 policy)); |
| 54 store->SetPolicyMapForTesting(policy_map); | 54 store->SetPolicyMapForTesting(policy_map); |
| 55 } | 55 } |
| 56 | 56 |
| 57 } // namespace test | 57 } // namespace test |
| 58 } // namespace policy | 58 } // namespace policy |
| OLD | NEW |