| // Copyright 2020 The Chromium Authors |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #include "chrome/browser/ash/scanning/scan_service_factory.h" |
| |
| #include <memory> |
| #include <string> |
| |
| #include "base/files/file_path.h" |
| #include "base/functional/bind.h" |
| #include "chrome/browser/ash/scanning/fake_lorgnette_scanner_manager.h" |
| #include "chrome/browser/ash/scanning/lorgnette_scanner_manager_factory.h" |
| #include "chrome/browser/ash/scanning/scan_service.h" |
| #include "chrome/browser/profiles/profile.h" |
| #include "chrome/test/base/testing_profile.h" |
| #include "chromeos/ash/components/browser_context_helper/browser_context_types.h" |
| #include "components/keyed_service/core/keyed_service.h" |
| #include "content/public/browser/browser_context.h" |
| #include "content/public/test/browser_task_environment.h" |
| #include "testing/gtest/include/gtest/gtest.h" |
| |
| namespace ash { |
| |
| namespace { |
| |
| // Creates a new LorgnetteScannerManager for the given `context`. |
| std::unique_ptr<KeyedService> BuildLorgnetteScannerManager( |
| content::BrowserContext* context) { |
| return std::make_unique<FakeLorgnetteScannerManager>(); |
| } |
| |
| // Creates a new ScanService for the given `context`. |
| std::unique_ptr<KeyedService> BuildScanService( |
| content::BrowserContext* context) { |
| return ScanServiceFactory::BuildInstanceFor(context); |
| } |
| |
| // Creates a Profile based on the provided `file_path` and sets the required |
| // testing factories for that Profile. |
| std::unique_ptr<Profile> CreateProfile(const std::string& file_path) { |
| TestingProfile::Builder builder; |
| if (!file_path.empty()) |
| builder.SetPath(base::FilePath(file_path)); |
| |
| std::unique_ptr<Profile> profile = builder.Build(); |
| |
| LorgnetteScannerManagerFactory::GetInstance()->SetTestingFactory( |
| profile.get(), base::BindRepeating(&BuildLorgnetteScannerManager)); |
| ScanServiceFactory::GetInstance()->SetTestingFactory( |
| profile.get(), base::BindRepeating(&BuildScanService)); |
| |
| return profile; |
| } |
| |
| } // namespace |
| |
| // Test that the ScanService can be created with the original profile. |
| TEST(ScanServiceFactoryTest, OriginalProfileHasService) { |
| content::BrowserTaskEnvironment task_environment; |
| std::unique_ptr<Profile> profile = CreateProfile(""); |
| EXPECT_NE(nullptr, ScanServiceFactory::GetForBrowserContext(profile.get())); |
| } |
| |
| // Test that the ScanService can be created with an off-the-record profile. |
| TEST(ScanServiceFactoryTest, OffTheRecordProfileHasService) { |
| content::BrowserTaskEnvironment task_environment; |
| std::unique_ptr<Profile> profile = CreateProfile(""); |
| EXPECT_NE(nullptr, |
| ScanServiceFactory::GetForBrowserContext( |
| profile->GetPrimaryOTRProfile(/*create_if_needed=*/true))); |
| } |
| |
| // Test that the ScanService cannot be created with a signin profile. |
| TEST(ScanServiceFactoryTest, SigninProfileNoService) { |
| content::BrowserTaskEnvironment task_environment; |
| std::unique_ptr<Profile> signin_profile = |
| CreateProfile(ash::kSigninBrowserContextBaseName); |
| EXPECT_EQ(nullptr, |
| ScanServiceFactory::GetForBrowserContext(signin_profile.get())); |
| } |
| |
| } // namespace ash |