Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(42)

Unified Diff: chrome/test/base/mash_browser_tests_main.cc

Issue 2295433003: Changes around how browser_tests are launched for mash (Closed)
Patch Set: make manifest chromeos specific Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/test/base/browser_tests_main_chromeos.cc ('k') | chrome/test/base/mash_browser_tests_manifest.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/base/mash_browser_tests_main.cc
diff --git a/chrome/test/base/mash_browser_tests_main.cc b/chrome/test/base/mash_browser_tests_main.cc
index 47d736f6cd126e3dde93a005041b3c920e2d6067..e4c6fbe00f6827ced69a34d36416938ea39e414f 100644
--- a/chrome/test/base/mash_browser_tests_main.cc
+++ b/chrome/test/base/mash_browser_tests_main.cc
@@ -7,8 +7,11 @@
#include "base/at_exit.h"
#include "base/command_line.h"
#include "base/debug/debugger.h"
+#include "base/i18n/icu_util.h"
#include "base/memory/ptr_util.h"
+#include "base/message_loop/message_loop.h"
#include "base/process/launch.h"
+#include "base/run_loop.h"
#include "base/sys_info.h"
#include "base/threading/thread_task_runner_handle.h"
#include "chrome/test/base/chrome_test_launcher.h"
@@ -16,11 +19,14 @@
#include "chrome/test/base/mojo_test_connector.h"
#include "content/public/common/mojo_shell_connection.h"
#include "content/public/test/test_launcher.h"
+#include "mash/package/mash_packaged_service.h"
#include "services/shell/public/cpp/connector.h"
#include "services/shell/public/cpp/service.h"
#include "services/shell/public/cpp/service_context.h"
+#include "services/shell/public/cpp/service_runner.h"
#include "services/shell/runner/common/switches.h"
#include "services/shell/runner/host/child_process.h"
+#include "services/shell/runner/host/child_process_base.h"
#include "services/shell/runner/init.h"
namespace {
@@ -80,11 +86,11 @@ class MashTestLauncherDelegate : public ChromeTestLauncherDelegate {
base::CommandLine* command_line,
base::TestLauncher::LaunchOptions* test_launch_options) override {
if (!mojo_test_connector_) {
- mojo_test_connector_.reset(new MojoTestConnector);
- service_.reset(new shell::Service);
- shell_connection_.reset(new shell::ServiceContext(
+ mojo_test_connector_ = base::MakeUnique<MojoTestConnector>();
+ service_ = base::MakeUnique<mash::MashPackagedService>();
+ service_->set_context(base::MakeUnique<shell::ServiceContext>(
service_.get(), mojo_test_connector_->Init()));
- ConnectToDefaultApps(shell_connection_->connector());
+ ConnectToDefaultApps(service_->connector());
}
return mojo_test_connector_->PrepareForTest(command_line,
test_launch_options);
@@ -92,15 +98,13 @@ class MashTestLauncherDelegate : public ChromeTestLauncherDelegate {
void OnDoneRunningTests() override {
// We have to shutdown this state here, while an AtExitManager is still
// valid.
- shell_connection_.reset();
service_.reset();
mojo_test_connector_.reset();
}
std::unique_ptr<MashTestSuite> test_suite_;
std::unique_ptr<MojoTestConnector> mojo_test_connector_;
- std::unique_ptr<shell::Service> service_;
- std::unique_ptr<shell::ServiceContext> shell_connection_;
+ std::unique_ptr<mash::MashPackagedService> service_;
DISALLOW_COPY_AND_ASSIGN(MashTestLauncherDelegate);
};
@@ -116,6 +120,18 @@ std::unique_ptr<content::MojoShellConnection> CreateMojoShellConnection(
return connection;
}
+void StartChildApp(shell::mojom::ServiceRequest service_request) {
+ base::MessageLoop message_loop(base::MessageLoop::TYPE_UI);
+ base::RunLoop run_loop;
+ mash::MashPackagedService service;
+ std::unique_ptr<shell::ServiceContext> context =
+ base::MakeUnique<shell::ServiceContext>(&service,
+ std::move(service_request));
+ context->SetConnectionLostClosure(run_loop.QuitClosure());
+ service.set_context(std::move(context));
+ run_loop.Run();
+}
+
} // namespace
bool RunMashBrowserTests(int argc, char** argv, int* exit_code) {
@@ -125,19 +141,25 @@ bool RunMashBrowserTests(int argc, char** argv, int* exit_code) {
if (!command_line.HasSwitch("run-in-mash"))
return false;
+ if (command_line.HasSwitch(MojoTestConnector::kMashApp)) {
+#if defined(OS_LINUX)
+ base::AtExitManager exit_manager;
+#endif
+ base::i18n::InitializeICU();
+ shell::ChildProcessMainWithCallback(base::Bind(&StartChildApp));
+ *exit_code = 0;
+ return true;
+ }
+
if (command_line.HasSwitch(switches::kChildProcess) &&
!command_line.HasSwitch(MojoTestConnector::kTestSwitch)) {
base::AtExitManager at_exit;
shell::InitializeLogging();
- // TODO(sky): nuke once resolve why test isn't shutting down: 594600.
- LOG(ERROR) << "starting app " << command_line.GetCommandLineString();
shell::WaitForDebuggerIfNecessary();
#if !defined(OFFICIAL_BUILD) && defined(OS_WIN)
base::RouteStdioToConsole(false);
#endif
*exit_code = shell::ChildProcessMain();
- // TODO(sky): nuke once resolve why test isn't shutting down: 594600.
- LOG(ERROR) << "child exit_code=" << *exit_code;
return true;
}
@@ -154,7 +176,5 @@ bool RunMashBrowserTests(int argc, char** argv, int* exit_code) {
content::MojoShellConnection::SetFactoryForTest(&shell_connection_factory);
}
*exit_code = LaunchChromeTests(default_jobs, &delegate, argc, argv);
- // TODO(sky): nuke once resolve why test isn't shutting down: 594600.
- LOG(ERROR) << "RunMashBrowserTests exit_code=" << *exit_code;
return true;
}
« no previous file with comments | « chrome/test/base/browser_tests_main_chromeos.cc ('k') | chrome/test/base/mash_browser_tests_manifest.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698