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 <vector> | 5 #include <vector> |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
9 #include "base/message_loop.h" | 9 #include "base/message_loop.h" |
10 #include "base/string_util.h" | 10 #include "base/string_util.h" |
11 #include "chrome/browser/policy/cloud_policy_constants.h" | 11 #include "chrome/browser/policy/cloud/cloud_policy_constants.h" |
12 #include "chrome/browser/policy/cloud_policy_validator.h" | 12 #include "chrome/browser/policy/cloud/cloud_policy_validator.h" |
13 #include "chrome/browser/policy/policy_builder.h" | 13 #include "chrome/browser/policy/cloud/policy_builder.h" |
14 #include "content/public/test/test_browser_thread.h" | 14 #include "content/public/test/test_browser_thread.h" |
15 #include "crypto/rsa_private_key.h" | 15 #include "crypto/rsa_private_key.h" |
16 #include "testing/gmock/include/gmock/gmock.h" | 16 #include "testing/gmock/include/gmock/gmock.h" |
17 #include "testing/gtest/include/gtest/gtest.h" | 17 #include "testing/gtest/include/gtest/gtest.h" |
18 | 18 |
19 namespace em = enterprise_management; | 19 namespace em = enterprise_management; |
20 | 20 |
21 using testing::Invoke; | 21 using testing::Invoke; |
22 using testing::Mock; | 22 using testing::Mock; |
23 | 23 |
(...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
250 | 250 |
251 TEST_F(CloudPolicyValidatorTest, NoRotation) { | 251 TEST_F(CloudPolicyValidatorTest, NoRotation) { |
252 allow_key_rotation_ = false; | 252 allow_key_rotation_ = false; |
253 policy_.set_new_signing_key(scoped_ptr<crypto::RSAPrivateKey>()); | 253 policy_.set_new_signing_key(scoped_ptr<crypto::RSAPrivateKey>()); |
254 Validate(CheckStatus(CloudPolicyValidatorBase::VALIDATION_OK)); | 254 Validate(CheckStatus(CloudPolicyValidatorBase::VALIDATION_OK)); |
255 } | 255 } |
256 | 256 |
257 } // namespace | 257 } // namespace |
258 | 258 |
259 } // namespace policy | 259 } // namespace policy |
OLD | NEW |