-
Notifications
You must be signed in to change notification settings - Fork 869
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Web Discovery factory test for OTR profiles
- Loading branch information
Showing
2 changed files
with
41 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
/* Copyright (c) 2024 The Brave Authors. All rights reserved. | ||
* This Source Code Form is subject to the terms of the Mozilla Public | ||
* License, v. 2.0. If a copy of the MPL was not distributed with this file, | ||
* You can obtain one at https://mozilla.org/MPL/2.0/. */ | ||
|
||
#include "brave/browser/web_discovery/wdp_service_factory.h" | ||
|
||
#include "base/test/scoped_feature_list.h" | ||
#include "brave/components/web_discovery/common/features.h" | ||
#include "chrome/test/base/testing_browser_process.h" | ||
#include "chrome/test/base/testing_profile_manager.h" | ||
#include "content/public/test/browser_task_environment.h" | ||
#include "testing/gtest/include/gtest/gtest.h" | ||
|
||
namespace web_discovery { | ||
|
||
TEST(WDPServiceFactoryTest, PrivateNotCreated) { | ||
content::BrowserTaskEnvironment task_environment; | ||
base::test::ScopedFeatureList scoped_features(features::kWebDiscoveryNative); | ||
auto* browser_process = TestingBrowserProcess::GetGlobal(); | ||
TestingProfileManager profile_manager(browser_process); | ||
ASSERT_TRUE(profile_manager.SetUp()); | ||
|
||
auto* profile = profile_manager.CreateTestingProfile("test"); | ||
|
||
EXPECT_TRUE(WDPServiceFactory::GetForBrowserContext(profile)); | ||
EXPECT_FALSE( | ||
WDPServiceFactory::GetForBrowserContext(profile->GetOffTheRecordProfile( | ||
Profile::OTRProfileID::CreateUniqueForTesting(), true))); | ||
} | ||
|
||
} // namespace web_discovery |