#include "chromeos/components/chromeos_components_test_suite.h"
#include "base/base_paths.h"
#include "base/files/file_path.h"
#include "base/i18n/rtl.h"
#include "base/path_service.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "ui/base/resource/resource_bundle.h"
#include "ui/base/ui_base_paths.h"
namespace {
void InitI18n() {
base::i18n::SetICUDefaultLocale("en_US");
ui::RegisterPathProvider();
base::FilePath ui_test_pak_path;
ASSERT_TRUE(base::PathService::Get(ui::UI_TEST_PAK, &ui_test_pak_path));
ui::ResourceBundle::InitSharedInstanceWithPakPath(ui_test_pak_path);
base::FilePath dir_assets_path;
ASSERT_TRUE(base::PathService::Get(base::DIR_ASSETS, &dir_assets_path));
base::FilePath chromeos_test_strings_path =
dir_assets_path.Append(FILE_PATH_LITERAL("chromeos_test_strings.pak"));
ui::ResourceBundle::GetSharedInstance().AddDataPackFromPath(
chromeos_test_strings_path, ui::kScaleFactorNone);
}
}
ChromeosComponentsTestSuite::ChromeosComponentsTestSuite(int argc, char** argv)
: TestSuite(argc, argv) {}
ChromeosComponentsTestSuite::~ChromeosComponentsTestSuite() = default;
void ChromeosComponentsTestSuite::Initialize() {
base::TestSuite::Initialize();
InitI18n();
}
void ChromeosComponentsTestSuite::Shutdown() {
ui::ResourceBundle::CleanupSharedInstance();
base::TestSuite::Shutdown();
}