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

Side by Side Diff: chrome/browser/chromeos/policy/user_cloud_policy_store_chromeos_unittest.cc

Issue 108563005: Move the cloud policy protobufs into the component. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixes Created 7 years 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 (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/policy/user_cloud_policy_store_chromeos.h" 5 #include "chrome/browser/chromeos/policy/user_cloud_policy_store_chromeos.h"
6 6
7 #include <vector> 7 #include <vector>
8 8
9 #include "base/basictypes.h" 9 #include "base/basictypes.h"
10 #include "base/bind.h" 10 #include "base/bind.h"
11 #include "base/file_util.h" 11 #include "base/file_util.h"
12 #include "base/files/scoped_temp_dir.h" 12 #include "base/files/scoped_temp_dir.h"
13 #include "base/memory/scoped_ptr.h" 13 #include "base/memory/scoped_ptr.h"
14 #include "base/message_loop/message_loop.h" 14 #include "base/message_loop/message_loop.h"
15 #include "base/threading/sequenced_worker_pool.h" 15 #include "base/threading/sequenced_worker_pool.h"
16 #include "chrome/browser/policy/proto/cloud/device_management_local.pb.h"
17 #include "chromeos/dbus/mock_cryptohome_client.h" 16 #include "chromeos/dbus/mock_cryptohome_client.h"
18 #include "chromeos/dbus/mock_session_manager_client.h" 17 #include "chromeos/dbus/mock_session_manager_client.h"
19 #include "components/policy/core/common/cloud/cloud_policy_constants.h" 18 #include "components/policy/core/common/cloud/cloud_policy_constants.h"
20 #include "components/policy/core/common/cloud/mock_cloud_policy_store.h" 19 #include "components/policy/core/common/cloud/mock_cloud_policy_store.h"
21 #include "components/policy/core/common/cloud/policy_builder.h" 20 #include "components/policy/core/common/cloud/policy_builder.h"
22 #include "policy/policy_constants.h" 21 #include "policy/policy_constants.h"
23 #include "policy/proto/cloud_policy.pb.h" 22 #include "policy/proto/cloud_policy.pb.h"
23 #include "policy/proto/device_management_local.pb.h"
24 #include "testing/gmock/include/gmock/gmock.h" 24 #include "testing/gmock/include/gmock/gmock.h"
25 #include "testing/gtest/include/gtest/gtest.h" 25 #include "testing/gtest/include/gtest/gtest.h"
26 26
27 namespace em = enterprise_management; 27 namespace em = enterprise_management;
28 28
29 using testing::AllOf; 29 using testing::AllOf;
30 using testing::AnyNumber; 30 using testing::AnyNumber;
31 using testing::Eq; 31 using testing::Eq;
32 using testing::Mock; 32 using testing::Mock;
33 using testing::Property; 33 using testing::Property;
(...skipping 575 matching lines...) Expand 10 before | Expand all | Expand 10 after
609 Mock::VerifyAndClearExpectations(&cryptohome_client_); 609 Mock::VerifyAndClearExpectations(&cryptohome_client_);
610 610
611 EXPECT_FALSE(store_->policy()); 611 EXPECT_FALSE(store_->policy());
612 EXPECT_TRUE(store_->policy_map().empty()); 612 EXPECT_TRUE(store_->policy_map().empty());
613 EXPECT_EQ(CloudPolicyStore::STATUS_VALIDATION_ERROR, store_->status()); 613 EXPECT_EQ(CloudPolicyStore::STATUS_VALIDATION_ERROR, store_->status());
614 } 614 }
615 615
616 } // namespace 616 } // namespace
617 617
618 } // namespace policy 618 } // namespace policy
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698