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

Side by Side Diff: chrome/browser/extensions/api/enterprise_platform_keys/enterprise_platform_keys_api_unittest.cc

Issue 2382833002: Rename policy::EnterpriseInstallAttributes to chromeos::InstallAttributes. (Closed)
Patch Set: Add missing #includes. Created 4 years, 2 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
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 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/extensions/api/enterprise_platform_keys/enterprise_plat form_keys_api.h" 5 #include "chrome/browser/extensions/api/enterprise_platform_keys/enterprise_plat form_keys_api.h"
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/location.h" 10 #include "base/location.h"
11 #include "base/strings/stringprintf.h" 11 #include "base/strings/stringprintf.h"
12 #include "base/threading/thread_task_runner_handle.h" 12 #include "base/threading/thread_task_runner_handle.h"
13 #include "base/values.h" 13 #include "base/values.h"
14 #include "chrome/browser/chromeos/login/users/fake_chrome_user_manager.h" 14 #include "chrome/browser/chromeos/login/users/fake_chrome_user_manager.h"
15 #include "chrome/browser/chromeos/login/users/scoped_user_manager_enabler.h" 15 #include "chrome/browser/chromeos/login/users/scoped_user_manager_enabler.h"
16 #include "chrome/browser/chromeos/policy/stub_enterprise_install_attributes.h"
17 #include "chrome/browser/chromeos/settings/scoped_cros_settings_test_helper.h" 16 #include "chrome/browser/chromeos/settings/scoped_cros_settings_test_helper.h"
17 #include "chrome/browser/chromeos/settings/stub_install_attributes.h"
18 #include "chrome/browser/extensions/extension_function_test_utils.h" 18 #include "chrome/browser/extensions/extension_function_test_utils.h"
19 #include "chrome/browser/signin/signin_manager_factory.h" 19 #include "chrome/browser/signin/signin_manager_factory.h"
20 #include "chrome/browser/ui/browser.h" 20 #include "chrome/browser/ui/browser.h"
21 #include "chrome/common/pref_names.h" 21 #include "chrome/common/pref_names.h"
22 #include "chrome/test/base/browser_with_test_window_test.h" 22 #include "chrome/test/base/browser_with_test_window_test.h"
23 #include "chrome/test/base/testing_browser_process.h" 23 #include "chrome/test/base/testing_browser_process.h"
24 #include "chrome/test/base/testing_profile_manager.h" 24 #include "chrome/test/base/testing_profile_manager.h"
25 #include "chromeos/attestation/attestation_constants.h" 25 #include "chromeos/attestation/attestation_constants.h"
26 #include "chromeos/attestation/mock_attestation_flow.h" 26 #include "chromeos/attestation/mock_attestation_flow.h"
27 #include "chromeos/cryptohome/async_method_caller.h" 27 #include "chromeos/cryptohome/async_method_caller.h"
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after
233 return single_result->DeepCopy(); 233 return single_result->DeepCopy();
234 } 234 }
235 return NULL; 235 return NULL;
236 } 236 }
237 237
238 NiceMock<chromeos::MockCryptohomeClient> mock_cryptohome_client_; 238 NiceMock<chromeos::MockCryptohomeClient> mock_cryptohome_client_;
239 NiceMock<cryptohome::MockAsyncMethodCaller> mock_async_method_caller_; 239 NiceMock<cryptohome::MockAsyncMethodCaller> mock_async_method_caller_;
240 NiceMock<chromeos::attestation::MockAttestationFlow> mock_attestation_flow_; 240 NiceMock<chromeos::attestation::MockAttestationFlow> mock_attestation_flow_;
241 chromeos::ScopedCrosSettingsTestHelper settings_helper_; 241 chromeos::ScopedCrosSettingsTestHelper settings_helper_;
242 scoped_refptr<extensions::Extension> extension_; 242 scoped_refptr<extensions::Extension> extension_;
243 policy::StubEnterpriseInstallAttributes stub_install_attributes_; 243 chromeos::StubInstallAttributes stub_install_attributes_;
244 TestingProfileManager profile_manager_; 244 TestingProfileManager profile_manager_;
245 // fake_user_manager_ is owned by user_manager_enabler_. 245 // fake_user_manager_ is owned by user_manager_enabler_.
246 chromeos::FakeChromeUserManager* fake_user_manager_; 246 chromeos::FakeChromeUserManager* fake_user_manager_;
247 chromeos::ScopedUserManagerEnabler user_manager_enabler_; 247 chromeos::ScopedUserManagerEnabler user_manager_enabler_;
248 PrefService* prefs_ = nullptr; 248 PrefService* prefs_ = nullptr;
249 }; 249 };
250 250
251 class EPKChallengeMachineKeyTest : public EPKChallengeKeyTestBase { 251 class EPKChallengeMachineKeyTest : public EPKChallengeKeyTestBase {
252 protected: 252 protected:
253 EPKChallengeMachineKeyTest() 253 EPKChallengeMachineKeyTest()
(...skipping 342 matching lines...) Expand 10 before | Expand all | Expand 10 after
596 AccountId::FromUserEmailGaiaId("test@chromium.com", "12345"); 596 AccountId::FromUserEmailGaiaId("test@chromium.com", "12345");
597 }; 597 };
598 598
599 TEST_F(EPKChallengeUserKeyUnmanagedUserTest, UserNotManaged) { 599 TEST_F(EPKChallengeUserKeyUnmanagedUserTest, UserNotManaged) {
600 EXPECT_EQ(EPKPChallengeKeyBase::kUserNotManaged, 600 EXPECT_EQ(EPKPChallengeKeyBase::kUserNotManaged,
601 RunFunctionAndReturnError(func_.get(), CreateArgs(), browser())); 601 RunFunctionAndReturnError(func_.get(), CreateArgs(), browser()));
602 } 602 }
603 603
604 } // namespace 604 } // namespace
605 } // namespace extensions 605 } // namespace extensions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698