blob: 7eaedd6aee26f1396046d1c6df3447f9ad904265 [file] [log] [blame]
// Copyright (c) 2011 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 "app/test_suite.h"
#include "app/app_paths.h"
#include "base/path_service.h"
#include "base/mac/scoped_nsautorelease_pool.h"
#include "build/build_config.h"
#include "ui/base/resource/resource_bundle.h"
#include "ui/base/ui_base_paths.h"
#if defined(OS_MACOSX)
#include "base/mac/mac_util.h"
#endif
AppTestSuite::AppTestSuite(int argc, char** argv) : TestSuite(argc, argv) {}
AppTestSuite::~AppTestSuite() {}
void AppTestSuite::Initialize() {
base::mac::ScopedNSAutoreleasePool autorelease_pool;
base::TestSuite::Initialize();
app::RegisterPathProvider();
ui::RegisterPathProvider();
#if defined(OS_MACOSX)
// Look in the framework bundle for resources.
// TODO(port): make a resource bundle for non-app exes. What's done here
// isn't really right because this code needs to depend on chrome_dll
// being built. This is inappropriate in app.
FilePath path;
PathService::Get(base::DIR_EXE, &path);
#if defined(GOOGLE_CHROME_BUILD)
path = path.AppendASCII("Google Chrome Framework.framework");
#elif defined(CHROMIUM_BUILD)
path = path.AppendASCII("Chromium Framework.framework");
#else
#error Unknown branding
#endif
base::mac::SetOverrideAppBundlePath(path);
#elif defined(OS_POSIX)
FilePath pak_dir;
PathService::Get(base::DIR_MODULE, &pak_dir);
pak_dir = pak_dir.AppendASCII("app_unittests_strings");
PathService::Override(ui::DIR_LOCALES, pak_dir);
PathService::Override(ui::FILE_RESOURCES_PAK,
pak_dir.AppendASCII("app_resources.pak"));
#endif
// Force unittests to run using en-US so if we test against string
// output, it'll pass regardless of the system language.
ResourceBundle::InitSharedInstance("en-US");
}
void AppTestSuite::Shutdown() {
ResourceBundle::CleanupSharedInstance();
#if defined(OS_MACOSX)
base::mac::SetOverrideAppBundle(NULL);
#endif
TestSuite::Shutdown();
}