| Index: chrome/browser/chromeos/policy/consumer_enrollment_handler_factory_unittest.cc
|
| diff --git a/chrome/browser/chromeos/policy/consumer_enrollment_handler_factory_unittest.cc b/chrome/browser/chromeos/policy/consumer_enrollment_handler_factory_unittest.cc
|
| deleted file mode 100644
|
| index c7824747aa026047b15f089f96c528d1b5c40710..0000000000000000000000000000000000000000
|
| --- a/chrome/browser/chromeos/policy/consumer_enrollment_handler_factory_unittest.cc
|
| +++ /dev/null
|
| @@ -1,90 +0,0 @@
|
| -// Copyright 2014 The Chromium Authors. All rights reserved.
|
| -// Use of this source code is governed by a BSD-style license that can be
|
| -// found in the LICENSE file.
|
| -
|
| -#include "chrome/browser/chromeos/policy/consumer_enrollment_handler_factory.h"
|
| -
|
| -#include "base/memory/ptr_util.h"
|
| -#include "chrome/browser/browser_process.h"
|
| -#include "chrome/browser/browser_process_platform_part.h"
|
| -#include "chrome/browser/chromeos/login/users/fake_chrome_user_manager.h"
|
| -#include "chrome/browser/chromeos/login/users/scoped_user_manager_enabler.h"
|
| -#include "chrome/browser/chromeos/policy/browser_policy_connector_chromeos.h"
|
| -#include "chrome/browser/chromeos/policy/consumer_management_service.h"
|
| -#include "chrome/browser/chromeos/policy/consumer_management_stage.h"
|
| -#include "chrome/browser/chromeos/policy/fake_consumer_management_service.h"
|
| -#include "chrome/test/base/testing_browser_process.h"
|
| -#include "chrome/test/base/testing_profile_manager.h"
|
| -#include "content/public/test/test_browser_thread_bundle.h"
|
| -#include "testing/gtest/include/gtest/gtest.h"
|
| -
|
| -namespace {
|
| -const char* kTestOwner = "test.owner@chromium.org.test";
|
| -const char* kTestUser = "test.user@chromium.org.test";
|
| -}
|
| -
|
| -namespace policy {
|
| -
|
| -class ConsumerEnrollmentHandlerFactoryTest : public testing::Test {
|
| - public:
|
| - ConsumerEnrollmentHandlerFactoryTest()
|
| - : fake_service_(new FakeConsumerManagementService()),
|
| - fake_user_manager_(new chromeos::FakeChromeUserManager()),
|
| - scoped_user_manager_enabler_(fake_user_manager_),
|
| - testing_profile_manager_(
|
| - new TestingProfileManager(TestingBrowserProcess::GetGlobal())) {
|
| - // Set up FakeConsumerManagementService.
|
| - fake_service_->SetStatusAndStage(
|
| - ConsumerManagementService::STATUS_ENROLLING,
|
| - ConsumerManagementStage::EnrollmentOwnerStored());
|
| -
|
| - // Inject fake objects.
|
| - BrowserPolicyConnectorChromeOS* connector =
|
| - g_browser_process->platform_part()->browser_policy_connector_chromeos();
|
| - connector->SetConsumerManagementServiceForTesting(
|
| - base::WrapUnique(fake_service_));
|
| -
|
| - // Set up FakeChromeUserManager.
|
| - fake_user_manager_->AddUser(owner_account_id);
|
| - fake_user_manager_->AddUser(test_account_id);
|
| - fake_user_manager_->set_owner_id(owner_account_id);
|
| - }
|
| -
|
| - void SetUp() override {
|
| - testing::Test::SetUp();
|
| -
|
| - ASSERT_TRUE(testing_profile_manager_->SetUp());
|
| - }
|
| -
|
| - const AccountId owner_account_id = AccountId::FromUserEmail(kTestOwner);
|
| - const AccountId test_account_id = AccountId::FromUserEmail(kTestUser);
|
| -
|
| - content::TestBrowserThreadBundle thread_bundle_;
|
| - FakeConsumerManagementService* fake_service_;
|
| - chromeos::FakeChromeUserManager* fake_user_manager_;
|
| - chromeos::ScopedUserManagerEnabler scoped_user_manager_enabler_;
|
| - std::unique_ptr<TestingProfileManager> testing_profile_manager_;
|
| -};
|
| -
|
| -TEST_F(ConsumerEnrollmentHandlerFactoryTest, ServiceIsCreated) {
|
| - Profile* profile = testing_profile_manager_->CreateTestingProfile(
|
| - owner_account_id.GetUserEmail());
|
| - EXPECT_TRUE(ConsumerEnrollmentHandlerFactory::GetForBrowserContext(profile));
|
| -}
|
| -
|
| -TEST_F(ConsumerEnrollmentHandlerFactoryTest, ServiceIsNotCreatedForNonOwner) {
|
| - Profile* profile = testing_profile_manager_->CreateTestingProfile(kTestUser);
|
| - EXPECT_FALSE(ConsumerEnrollmentHandlerFactory::GetForBrowserContext(profile));
|
| -}
|
| -
|
| -TEST_F(ConsumerEnrollmentHandlerFactoryTest,
|
| - ServiceIsNotCreatedIfItHasNothingToDo) {
|
| - fake_service_->SetStatusAndStage(
|
| - ConsumerManagementService::STATUS_UNENROLLED,
|
| - ConsumerManagementStage::None());
|
| -
|
| - Profile* profile = testing_profile_manager_->CreateTestingProfile(kTestOwner);
|
| - EXPECT_FALSE(ConsumerEnrollmentHandlerFactory::GetForBrowserContext(profile));
|
| -}
|
| -
|
| -} // namespace policy
|
|
|