OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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/consumer_management_notifier_factory.h" | 5 #include "chrome/browser/chromeos/policy/consumer_management_notifier_factory.h" |
6 | 6 |
7 #include "chrome/browser/browser_process.h" | 7 #include "chrome/browser/browser_process.h" |
8 #include "chrome/browser/browser_process_platform_part.h" | 8 #include "chrome/browser/browser_process_platform_part.h" |
9 #include "chrome/browser/chromeos/login/users/fake_chrome_user_manager.h" | 9 #include "chrome/browser/chromeos/login/users/fake_chrome_user_manager.h" |
10 #include "chrome/browser/chromeos/login/users/scoped_user_manager_enabler.h" | 10 #include "chrome/browser/chromeos/login/users/scoped_user_manager_enabler.h" |
(...skipping 26 matching lines...) Expand all Loading... |
37 ConsumerManagementService::STATUS_UNENROLLED, | 37 ConsumerManagementService::STATUS_UNENROLLED, |
38 ConsumerManagementStage::None()); | 38 ConsumerManagementStage::None()); |
39 | 39 |
40 // Inject fake objects. | 40 // Inject fake objects. |
41 BrowserPolicyConnectorChromeOS* connector = | 41 BrowserPolicyConnectorChromeOS* connector = |
42 g_browser_process->platform_part()->browser_policy_connector_chromeos(); | 42 g_browser_process->platform_part()->browser_policy_connector_chromeos(); |
43 connector->SetConsumerManagementServiceForTesting( | 43 connector->SetConsumerManagementServiceForTesting( |
44 make_scoped_ptr(fake_service_)); | 44 make_scoped_ptr(fake_service_)); |
45 | 45 |
46 // Set up FakeChromeUserManager. | 46 // Set up FakeChromeUserManager. |
47 fake_user_manager_->AddUser(kTestOwner); | 47 fake_user_manager_->AddUser(AccountId::FromUserEmail(kTestOwner)); |
48 fake_user_manager_->AddUser(kTestUser); | 48 fake_user_manager_->AddUser(AccountId::FromUserEmail(kTestUser)); |
49 fake_user_manager_->set_owner_email(kTestOwner); | 49 fake_user_manager_->set_owner_id(AccountId::FromUserEmail(kTestOwner)); |
50 } | 50 } |
51 | 51 |
52 void SetUp() override { | 52 void SetUp() override { |
53 ASSERT_TRUE(testing_profile_manager_->SetUp()); | 53 ASSERT_TRUE(testing_profile_manager_->SetUp()); |
54 } | 54 } |
55 | 55 |
56 content::TestBrowserThreadBundle thread_bundle_; | 56 content::TestBrowserThreadBundle thread_bundle_; |
57 FakeConsumerManagementService* fake_service_; | 57 FakeConsumerManagementService* fake_service_; |
58 chromeos::FakeChromeUserManager* fake_user_manager_; | 58 chromeos::FakeChromeUserManager* fake_user_manager_; |
59 chromeos::ScopedUserManagerEnabler scoped_user_manager_enabler_; | 59 chromeos::ScopedUserManagerEnabler scoped_user_manager_enabler_; |
60 scoped_ptr<TestingProfileManager> testing_profile_manager_; | 60 scoped_ptr<TestingProfileManager> testing_profile_manager_; |
61 }; | 61 }; |
62 | 62 |
63 TEST_F(ConsumerManagementNotifierFactoryTest, ServiceIsCreated) { | 63 TEST_F(ConsumerManagementNotifierFactoryTest, ServiceIsCreated) { |
64 Profile* profile = testing_profile_manager_->CreateTestingProfile(kTestOwner); | 64 Profile* profile = testing_profile_manager_->CreateTestingProfile(kTestOwner); |
65 EXPECT_TRUE( | 65 EXPECT_TRUE( |
66 ConsumerManagementNotifierFactory::GetForBrowserContext(profile)); | 66 ConsumerManagementNotifierFactory::GetForBrowserContext(profile)); |
67 } | 67 } |
68 | 68 |
69 TEST_F(ConsumerManagementNotifierFactoryTest, | 69 TEST_F(ConsumerManagementNotifierFactoryTest, |
70 ServiceIsNotCreatedForNonOwner) { | 70 ServiceIsNotCreatedForNonOwner) { |
71 Profile* profile = testing_profile_manager_->CreateTestingProfile(kTestUser); | 71 Profile* profile = testing_profile_manager_->CreateTestingProfile(kTestUser); |
72 EXPECT_FALSE( | 72 EXPECT_FALSE( |
73 ConsumerManagementNotifierFactory::GetForBrowserContext(profile)); | 73 ConsumerManagementNotifierFactory::GetForBrowserContext(profile)); |
74 } | 74 } |
75 | 75 |
76 } // namespace policy | 76 } // namespace policy |
OLD | NEW |