// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#import "ios/chrome/browser/supervised_user/model/child_account_service_factory.h"
#import "components/supervised_user/core/browser/child_account_service.h"
#import "ios/chrome/browser/shared/model/profile/test/test_profile_ios.h"
#import "ios/web/public/test/web_task_environment.h"
#import "testing/platform_test.h"
// Test fixture for testing ChildAccountServiceFactory class.
class ChildAccountServiceFactoryTest : public PlatformTest {
protected:
ChildAccountServiceFactoryTest()
: browser_state_(TestChromeBrowserState::Builder().Build()) {}
// ChromeBrowserState needs thread.
web::WebTaskEnvironment task_environment_;
std::unique_ptr<TestChromeBrowserState> browser_state_;
};
// Tests that ChildAccountServiceFactory creates
// ChildAccountService.
TEST_F(ChildAccountServiceFactoryTest, CreateService) {
supervised_user::ChildAccountService* service =
ChildAccountServiceFactory::GetForBrowserState(browser_state_.get());
ASSERT_TRUE(service);
}
// Tests that ChildAccountServiceFactory retuns null
// with an off-the-record ChromeBrowserState.
TEST_F(ChildAccountServiceFactoryTest, ReturnsNullOnOffTheRecordBrowserState) {
ChromeBrowserState* otr_browser_state =
browser_state_->CreateOffTheRecordBrowserStateWithTestingFactories();
CHECK(otr_browser_state);
supervised_user::ChildAccountService* service =
ChildAccountServiceFactory::GetForBrowserState(otr_browser_state);
ASSERT_FALSE(service);
}