[Media Router] Add integration tests and e2e tests for media router and presentation...
[chromium-blink-merge.git] / chrome / browser / process_singleton_browsertest.cc
blobc1537dbd22defb0bf4d7abe11bef1f0392ee0d0b
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 // This test validates that the ProcessSingleton class properly makes sure
6 // that there is only one main browser process.
7 //
8 // It is currently compiled and run on Windows and Posix(non-Mac) platforms.
9 // Mac uses system services and ProcessSingletonMac is a noop. (Maybe it still
10 // makes sense to test that the system services are giving the behavior we
11 // want?)
13 #include "base/bind.h"
14 #include "base/command_line.h"
15 #include "base/files/file_path.h"
16 #include "base/files/scoped_temp_dir.h"
17 #include "base/location.h"
18 #include "base/memory/ref_counted.h"
19 #include "base/path_service.h"
20 #include "base/process/launch.h"
21 #include "base/process/process.h"
22 #include "base/process/process_iterator.h"
23 #include "base/single_thread_task_runner.h"
24 #include "base/synchronization/waitable_event.h"
25 #include "base/test/test_timeouts.h"
26 #include "base/threading/thread.h"
27 #include "chrome/common/chrome_constants.h"
28 #include "chrome/common/chrome_paths.h"
29 #include "chrome/common/chrome_switches.h"
30 #include "chrome/test/base/in_process_browser_test.h"
31 #include "chrome/test/base/test_launcher_utils.h"
33 namespace {
35 // This is for the code that is to be ran in multiple threads at once,
36 // to stress a race condition on first process start.
37 // We use the thread safe ref counted base class so that we can use the
38 // base::Bind to run the StartChrome methods in many threads.
39 class ChromeStarter : public base::RefCountedThreadSafe<ChromeStarter> {
40 public:
41 ChromeStarter(base::TimeDelta timeout, const base::FilePath& user_data_dir)
42 : ready_event_(false /* manual */, false /* signaled */),
43 done_event_(false /* manual */, false /* signaled */),
44 process_terminated_(false),
45 timeout_(timeout),
46 user_data_dir_(user_data_dir) {
49 // We must reset some data members since we reuse the same ChromeStarter
50 // object and start/stop it a few times. We must start fresh! :-)
51 void Reset() {
52 ready_event_.Reset();
53 done_event_.Reset();
54 if (process_.IsValid())
55 process_.Close();
56 process_terminated_ = false;
59 void StartChrome(base::WaitableEvent* start_event, bool first_run) {
60 // TODO(mattm): maybe stuff should be refactored to use
61 // UITest::LaunchBrowserHelper somehow?
62 base::FilePath program;
63 ASSERT_TRUE(PathService::Get(base::FILE_EXE, &program));
64 base::CommandLine command_line(program);
65 command_line.AppendSwitchPath(switches::kUserDataDir, user_data_dir_);
67 if (first_run)
68 command_line.AppendSwitch(switches::kForceFirstRun);
69 else
70 command_line.AppendSwitch(switches::kNoFirstRun);
72 // Add the normal test-mode switches, except for the ones we're adding
73 // ourselves.
74 base::CommandLine standard_switches(base::CommandLine::NO_PROGRAM);
75 test_launcher_utils::PrepareBrowserCommandLineForTests(&standard_switches);
76 const base::CommandLine::SwitchMap& switch_map =
77 standard_switches.GetSwitches();
78 for (base::CommandLine::SwitchMap::const_iterator i = switch_map.begin();
79 i != switch_map.end(); ++i) {
80 const std::string& switch_name = i->first;
81 if (switch_name == switches::kUserDataDir ||
82 switch_name == switches::kForceFirstRun ||
83 switch_name == switches::kNoFirstRun)
84 continue;
86 command_line.AppendSwitchNative(switch_name, i->second);
89 // Try to get all threads to launch the app at the same time.
90 // So let the test know we are ready.
91 ready_event_.Signal();
92 // And then wait for the test to tell us to GO!
93 ASSERT_NE(static_cast<base::WaitableEvent*>(NULL), start_event);
94 start_event->Wait();
96 // Here we don't wait for the app to be terminated because one of the
97 // process will stay alive while the others will be restarted. If we would
98 // wait here, we would never get a handle to the main process...
99 process_ = base::LaunchProcess(command_line, base::LaunchOptions());
100 ASSERT_TRUE(process_.IsValid());
102 // We can wait on the handle here, we should get stuck on one and only
103 // one process. The test below will take care of killing that process
104 // to unstuck us once it confirms there is only one.
105 int exit_code;
106 process_terminated_ = process_.WaitForExitWithTimeout(timeout_, &exit_code);
107 // Let the test know we are done.
108 done_event_.Signal();
111 // Public access to simplify the test code using them.
112 base::WaitableEvent ready_event_;
113 base::WaitableEvent done_event_;
114 base::Process process_;
115 bool process_terminated_;
117 private:
118 friend class base::RefCountedThreadSafe<ChromeStarter>;
120 ~ChromeStarter() {}
122 base::TimeDelta timeout_;
123 base::FilePath user_data_dir_;
125 DISALLOW_COPY_AND_ASSIGN(ChromeStarter);
128 } // namespace
130 // Our test fixture that initializes and holds onto a few global vars.
131 class ProcessSingletonTest : public InProcessBrowserTest {
132 public:
133 ProcessSingletonTest()
134 // We use a manual reset so that all threads wake up at once when signaled
135 // and thus we must manually reset it for each attempt.
136 : threads_waker_(true /* manual */, false /* signaled */) {
137 EXPECT_TRUE(temp_profile_dir_.CreateUniqueTempDir());
140 void SetUp() override {
141 // Start the threads and create the starters.
142 for (size_t i = 0; i < kNbThreads; ++i) {
143 chrome_starter_threads_[i].reset(new base::Thread("ChromeStarter"));
144 ASSERT_TRUE(chrome_starter_threads_[i]->Start());
145 chrome_starters_[i] = new ChromeStarter(
146 TestTimeouts::action_max_timeout(), temp_profile_dir_.path());
150 void TearDown() override {
151 // Stop the threads.
152 for (size_t i = 0; i < kNbThreads; ++i)
153 chrome_starter_threads_[i]->Stop();
156 // This method is used to make sure we kill the main browser process after
157 // all of its child processes have successfully attached to it. This was added
158 // when we realized that if we just kill the parent process right away, we
159 // sometimes end up with dangling child processes. If we Sleep for a certain
160 // amount of time, we are OK... So we introduced this method to avoid a
161 // flaky wait. Instead, we kill all descendants of the main process after we
162 // killed it, relying on the fact that we can still get the parent id of a
163 // child process, even when the parent dies.
164 void KillProcessTree(const base::Process& process) {
165 class ProcessTreeFilter : public base::ProcessFilter {
166 public:
167 explicit ProcessTreeFilter(base::ProcessId parent_pid) {
168 ancestor_pids_.insert(parent_pid);
170 bool Includes(const base::ProcessEntry& entry) const override {
171 if (ancestor_pids_.find(entry.parent_pid()) != ancestor_pids_.end()) {
172 ancestor_pids_.insert(entry.pid());
173 return true;
174 } else {
175 return false;
178 private:
179 mutable std::set<base::ProcessId> ancestor_pids_;
180 } process_tree_filter(process.Pid());
182 // Start by explicitly killing the main process we know about...
183 static const int kExitCode = 42;
184 EXPECT_TRUE(process.Terminate(kExitCode, true /* wait */));
186 // Then loop until we can't find any of its descendant.
187 // But don't try more than kNbTries times...
188 static const int kNbTries = 10;
189 int num_tries = 0;
190 base::FilePath program;
191 ASSERT_TRUE(PathService::Get(base::FILE_EXE, &program));
192 base::FilePath::StringType exe_name = program.BaseName().value();
193 while (base::GetProcessCount(exe_name, &process_tree_filter) > 0 &&
194 num_tries++ < kNbTries) {
195 base::KillProcesses(exe_name, kExitCode, &process_tree_filter);
197 DLOG_IF(ERROR, num_tries >= kNbTries) << "Failed to kill all processes!";
200 // Since this is a hard to reproduce problem, we make a few attempts.
201 // We stop the attempts at the first error, and when there are no errors,
202 // we don't time-out of any wait, so it executes quite fast anyway.
203 static const size_t kNbAttempts = 5;
205 // The idea is to start chrome from multiple threads all at once.
206 static const size_t kNbThreads = 5;
207 scoped_refptr<ChromeStarter> chrome_starters_[kNbThreads];
208 scoped_ptr<base::Thread> chrome_starter_threads_[kNbThreads];
210 // The event that will get all threads to wake up simultaneously and try
211 // to start a chrome process at the same time.
212 base::WaitableEvent threads_waker_;
214 // We don't want to use the default profile, but can't use UITest's since we
215 // don't use UITest::LaunchBrowser.
216 base::ScopedTempDir temp_profile_dir_;
219 #if defined(OS_LINUX) && defined(TOOLKIT_VIEWS)
220 // http://crbug.com/58219
221 #define MAYBE_StartupRaceCondition DISABLED_StartupRaceCondition
222 #else
223 #define MAYBE_StartupRaceCondition StartupRaceCondition
224 #endif
225 IN_PROC_BROWSER_TEST_F(ProcessSingletonTest, MAYBE_StartupRaceCondition) {
226 // We use this to stop the attempts loop on the first failure.
227 bool failed = false;
228 for (size_t attempt = 0; attempt < kNbAttempts && !failed; ++attempt) {
229 SCOPED_TRACE(testing::Message() << "Attempt: " << attempt << ".");
230 // We use a single event to get all threads to do the AppLaunch at the same
231 // time...
232 threads_waker_.Reset();
234 // Test both with and without the first-run dialog, since they exercise
235 // different paths.
236 #if defined(OS_POSIX)
237 // TODO(mattm): test first run dialog singleton handling on linux too.
238 // On posix if we test the first run dialog, GracefulShutdownHandler gets
239 // the TERM signal, but since the message loop isn't running during the gtk
240 // first run dialog, the ShutdownDetector never handles it, and KillProcess
241 // has to time out (60 sec!) and SIGKILL.
242 bool first_run = false;
243 #else
244 // Test for races in both regular start up and first run start up cases.
245 bool first_run = attempt % 2;
246 #endif
248 // Here we prime all the threads with a ChromeStarter that will wait for
249 // our signal to launch its chrome process.
250 for (size_t i = 0; i < kNbThreads; ++i) {
251 ASSERT_NE(static_cast<ChromeStarter*>(NULL), chrome_starters_[i].get());
252 chrome_starters_[i]->Reset();
254 ASSERT_TRUE(chrome_starter_threads_[i]->IsRunning());
255 ASSERT_NE(static_cast<base::MessageLoop*>(NULL),
256 chrome_starter_threads_[i]->message_loop());
258 chrome_starter_threads_[i]->task_runner()->PostTask(
259 FROM_HERE,
260 base::Bind(&ChromeStarter::StartChrome, chrome_starters_[i].get(),
261 &threads_waker_, first_run));
264 // Wait for all the starters to be ready.
265 // We could replace this loop if we ever implement a WaitAll().
266 for (size_t i = 0; i < kNbThreads; ++i) {
267 SCOPED_TRACE(testing::Message() << "Waiting on thread: " << i << ".");
268 chrome_starters_[i]->ready_event_.Wait();
270 // GO!
271 threads_waker_.Signal();
273 // As we wait for all threads to signal that they are done, we remove their
274 // index from this vector so that we get left with only the index of
275 // the thread that started the main process.
276 std::vector<size_t> pending_starters(kNbThreads);
277 for (size_t i = 0; i < kNbThreads; ++i)
278 pending_starters[i] = i;
280 // We use a local array of starter's done events we must wait on...
281 // These are collected from the starters that we have not yet been removed
282 // from the pending_starters vector.
283 base::WaitableEvent* starters_done_events[kNbThreads];
284 // At the end, "There can be only one" main browser process alive.
285 while (pending_starters.size() > 1) {
286 SCOPED_TRACE(testing::Message() << pending_starters.size() <<
287 " starters left.");
288 for (size_t i = 0; i < pending_starters.size(); ++i) {
289 starters_done_events[i] =
290 &chrome_starters_[pending_starters[i]]->done_event_;
292 size_t done_index = base::WaitableEvent::WaitMany(
293 starters_done_events, pending_starters.size());
294 size_t starter_index = pending_starters[done_index];
295 // If the starter is done but has not marked itself as terminated,
296 // it is because it timed out of its WaitForExitCodeWithTimeout(). Only
297 // the last one standing should be left waiting... So we failed...
298 EXPECT_TRUE(chrome_starters_[starter_index]->process_terminated_ ||
299 failed) << "There is more than one main process.";
300 if (!chrome_starters_[starter_index]->process_terminated_) {
301 // This will stop the "for kNbAttempts" loop.
302 failed = true;
303 // But we let the last loop turn finish so that we can properly
304 // kill all remaining processes. Starting with this one...
305 if (chrome_starters_[starter_index]->process_.IsValid()) {
306 KillProcessTree(chrome_starters_[starter_index]->process_);
309 pending_starters.erase(pending_starters.begin() + done_index);
312 // "There can be only one!" :-)
313 ASSERT_EQ(static_cast<size_t>(1), pending_starters.size());
314 size_t last_index = pending_starters.front();
315 pending_starters.clear();
316 if (chrome_starters_[last_index]->process_.IsValid()) {
317 KillProcessTree(chrome_starters_[last_index]->process_);
318 chrome_starters_[last_index]->done_event_.Wait();