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

Side by Side Diff: base/test/multiprocess_test.h

Issue 189373002: Add multiprocess test helper functions. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: restore old MakeCmdLine behavior Created 6 years, 9 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | base/test/multiprocess_test.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef BASE_TEST_MULTIPROCESS_TEST_H_ 5 #ifndef BASE_TEST_MULTIPROCESS_TEST_H_
6 #define BASE_TEST_MULTIPROCESS_TEST_H_ 6 #define BASE_TEST_MULTIPROCESS_TEST_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
11 #include "base/process/launch.h" 11 #include "base/process/launch.h"
12 #include "base/process/process_handle.h" 12 #include "base/process/process_handle.h"
13 #include "build/build_config.h" 13 #include "build/build_config.h"
14 #include "testing/platform_test.h" 14 #include "testing/platform_test.h"
15 15
16 class CommandLine; 16 class CommandLine;
17 17
18 namespace base { 18 namespace base {
19 19
20 // Helpers to spawn a child for a multiprocess test and execute a designated
21 // function. Use these when you already have another base class for your test
22 // fixture, but you want (some) of your tests to be multiprocess (otherwise you
23 // may just want to derive your fixture from |MultiProcessTest|, below).
24 //
25 // Use these helpers as follows:
26 //
27 // TEST_F(MyTest, ATest) {
28 // CommandLine command_line(
29 // base::GetMultiProcessTestChildBaseCommandLine());
30 // // Maybe add our own switches to |command_line|....
31 //
32 // LaunchOptions options;
33 // // Maybe set some options (e.g., |start_hidden| on Windows)....
34 //
35 // // Start a child process and run |a_test_func|.
36 // base::ProcessHandle test_child_handle =
37 // base::SpawnMultiProcessTestChild("a_test_func", command_line,
38 // options, false);
39 //
40 // // Do stuff involving |test_child_handle| and the child process....
41 //
42 // int rv = -1;
43 // ASSERT_TRUE(base::WaitForExitCodeWithTimeout(
44 // test_child_handle, &rv, TestTimeouts::action_timeout()));
45 // base::CloseProcessHandle(test_child_handle);
46 // EXPECT_EQ(0, rv);
47 // }
48 //
49 // // Note: |MULTIPROCESS_TEST_MAIN()| is defined in
50 // // testing/multi_process_function_list.h.
51 // MULTIPROCESS_TEST_MAIN(a_test_func) {
52 // // Code here runs in a child process....
53 // return 0;
54 // }
55
56 // Spawns a child process and executes the function |procname| declared using
57 // |MULTIPROCESS_TEST_MAIN()| or |MULTIPROCESS_TEST_MAIN_WITH_SETUP()|.
58 // |command_line| should be as provided by
59 // |GetMultiProcessTestChildBaseCommandLine()| (below), possibly with arguments
60 // added. Note: On Windows, you probably want to set |options.start_hidden|.
61 ProcessHandle SpawnMultiProcessTestChild(
62 const std::string& procname,
63 const CommandLine& command_line,
64 const LaunchOptions& options,
65 bool debug_on_start);
66
67 // Gets the base command line for |SpawnMultiProcessTestChild()|. To this, you
68 // may add any flags needed for your child process.
69 CommandLine GetMultiProcessTestChildBaseCommandLine();
70
71 // MultiProcessTest ------------------------------------------------------------
72
20 // A MultiProcessTest is a test class which makes it easier to 73 // A MultiProcessTest is a test class which makes it easier to
21 // write a test which requires code running out of process. 74 // write a test which requires code running out of process.
22 // 75 //
23 // To create a multiprocess test simply follow these steps: 76 // To create a multiprocess test simply follow these steps:
24 // 77 //
25 // 1) Derive your test from MultiProcessTest. Example: 78 // 1) Derive your test from MultiProcessTest. Example:
26 // 79 //
27 // class MyTest : public MultiProcessTest { 80 // class MyTest : public MultiProcessTest {
28 // }; 81 // };
29 // 82 //
(...skipping 27 matching lines...) Expand all
57 ProcessHandle SpawnChild(const std::string& procname, bool debug_on_start); 110 ProcessHandle SpawnChild(const std::string& procname, bool debug_on_start);
58 111
59 // Run a child process using the given launch options. 112 // Run a child process using the given launch options.
60 // 113 //
61 // Note: On Windows, you probably want to set |options.start_hidden|. 114 // Note: On Windows, you probably want to set |options.start_hidden|.
62 ProcessHandle SpawnChildWithOptions(const std::string& procname, 115 ProcessHandle SpawnChildWithOptions(const std::string& procname,
63 const LaunchOptions& options, 116 const LaunchOptions& options,
64 bool debug_on_start); 117 bool debug_on_start);
65 118
66 // Set up the command line used to spawn the child process. 119 // Set up the command line used to spawn the child process.
120 // Override this to add things to the command line (calling this first in the
121 // override).
122 // Note that currently some tests rely on this providing a full command line,
123 // which they then use directly with |LaunchProcess()|.
124 // TODO(viettrungluu): Remove this and add a virtual
125 // |ModifyChildCommandLine()|; make the two divergent uses more sane.
67 virtual CommandLine MakeCmdLine(const std::string& procname, 126 virtual CommandLine MakeCmdLine(const std::string& procname,
68 bool debug_on_start); 127 bool debug_on_start);
69 128
70 private: 129 private:
71 DISALLOW_COPY_AND_ASSIGN(MultiProcessTest); 130 DISALLOW_COPY_AND_ASSIGN(MultiProcessTest);
72 }; 131 };
73 132
74 } // namespace base 133 } // namespace base
75 134
76 #endif // BASE_TEST_MULTIPROCESS_TEST_H_ 135 #endif // BASE_TEST_MULTIPROCESS_TEST_H_
OLDNEW
« no previous file with comments | « no previous file | base/test/multiprocess_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698