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 #include "base/test/test_suite.h"
7 #include "base/at_exit.h"
8 #include "base/base_paths.h"
9 #include "base/base_switches.h"
10 #include "base/bind.h"
11 #include "base/command_line.h"
12 #include "base/debug/debugger.h"
13 #include "base/debug/stack_trace.h"
14 #include "base/file_util.h"
15 #include "base/files/file_path.h"
16 #include "base/i18n/icu_util.h"
17 #include "base/logging.h"
18 #include "base/memory/scoped_ptr.h"
19 #include "base/path_service.h"
20 #include "base/process/memory.h"
21 #include "base/test/gtest_xml_util.h"
22 #include "base/test/launcher/unit_test_launcher.h"
23 #include "base/test/multiprocess_test.h"
24 #include "base/test/test_switches.h"
25 #include "base/test/test_timeouts.h"
26 #include "base/time/time.h"
27 #include "testing/gmock/include/gmock/gmock.h"
28 #include "testing/gtest/include/gtest/gtest.h"
29 #include "testing/multiprocess_func_list.h"
31 #if defined(OS_MACOSX)
32 #include "base/mac/scoped_nsautorelease_pool.h"
34 #include "base/test/test_listener_ios.h"
36 #include "base/test/mock_chrome_application_mac.h"
40 #if defined(OS_ANDROID)
41 #include "base/test/test_support_android.h"
45 #include "base/test/test_support_ios.h"
50 class MaybeTestDisabler
: public testing::EmptyTestEventListener
{
52 virtual void OnTestStart(const testing::TestInfo
& test_info
) OVERRIDE
{
53 ASSERT_FALSE(TestSuite::IsMarkedMaybe(test_info
))
54 << "Probably the OS #ifdefs don't include all of the necessary "
55 "platforms.\nPlease ensure that no tests have the MAYBE_ prefix "
56 "after the code is preprocessed.";
60 class TestClientInitializer
: public testing::EmptyTestEventListener
{
62 TestClientInitializer()
63 : old_command_line_(CommandLine::NO_PROGRAM
) {
66 virtual void OnTestStart(const testing::TestInfo
& test_info
) OVERRIDE
{
67 old_command_line_
= *CommandLine::ForCurrentProcess();
70 virtual void OnTestEnd(const testing::TestInfo
& test_info
) OVERRIDE
{
71 *CommandLine::ForCurrentProcess() = old_command_line_
;
75 CommandLine old_command_line_
;
77 DISALLOW_COPY_AND_ASSIGN(TestClientInitializer
);
84 int RunUnitTestsUsingBaseTestSuite(int argc
, char **argv
) {
85 TestSuite
test_suite(argc
, argv
);
86 return base::LaunchUnitTests(
87 argc
, argv
, Bind(&TestSuite::Run
, Unretained(&test_suite
)));
92 TestSuite::TestSuite(int argc
, char** argv
) : initialized_command_line_(false) {
93 PreInitialize(argc
, argv
, true);
96 TestSuite::TestSuite(int argc
, char** argv
, bool create_at_exit_manager
)
97 : initialized_command_line_(false) {
98 PreInitialize(argc
, argv
, create_at_exit_manager
);
101 TestSuite::~TestSuite() {
102 if (initialized_command_line_
)
103 CommandLine::Reset();
106 void TestSuite::PreInitialize(int argc
, char** argv
,
107 bool create_at_exit_manager
) {
109 testing::GTEST_FLAG(catch_exceptions
) = false;
110 base::TimeTicks::SetNowIsHighResNowIfSupported();
112 base::EnableTerminationOnHeapCorruption();
113 initialized_command_line_
= CommandLine::Init(argc
, argv
);
114 testing::InitGoogleTest(&argc
, argv
);
115 testing::InitGoogleMock(&argc
, argv
);
116 #if defined(OS_LINUX) && defined(USE_AURA)
117 // When calling native char conversion functions (e.g wrctomb) we need to
118 // have the locale set. In the absence of such a call the "C" locale is the
119 // default. In the gtk code (below) gtk_init() implicitly sets a locale.
120 setlocale(LC_ALL
, "");
121 #endif // defined(OS_LINUX) && defined(USE_AURA)
123 // On Android, AtExitManager is created in
124 // testing/android/native_test_wrapper.cc before main() is called.
125 #if !defined(OS_ANDROID)
126 if (create_at_exit_manager
)
127 at_exit_manager_
.reset(new base::AtExitManager
);
131 InitIOSRunHook(this, argc
, argv
);
134 // Don't add additional code to this function. Instead add it to
135 // Initialize(). See bug 6436.
140 bool TestSuite::IsMarkedMaybe(const testing::TestInfo
& test
) {
141 return strncmp(test
.name(), "MAYBE_", 6) == 0;
144 void TestSuite::CatchMaybeTests() {
145 testing::TestEventListeners
& listeners
=
146 testing::UnitTest::GetInstance()->listeners();
147 listeners
.Append(new MaybeTestDisabler
);
150 void TestSuite::ResetCommandLine() {
151 testing::TestEventListeners
& listeners
=
152 testing::UnitTest::GetInstance()->listeners();
153 listeners
.Append(new TestClientInitializer
);
157 void TestSuite::AddTestLauncherResultPrinter() {
158 // Only add the custom printer if requested.
159 if (!CommandLine::ForCurrentProcess()->HasSwitch(
160 switches::kTestLauncherOutput
)) {
164 FilePath
output_path(CommandLine::ForCurrentProcess()->GetSwitchValuePath(
165 switches::kTestLauncherOutput
));
167 // Do not add the result printer if output path already exists. It's an
168 // indicator there is a process printing to that file, and we're likely
169 // its child. Do not clobber the results in that case.
170 if (PathExists(output_path
)) {
171 LOG(WARNING
) << "Test launcher output path " << output_path
.AsUTF8Unsafe()
172 << " exists. Not adding test launcher result printer.";
176 XmlUnitTestResultPrinter
* printer
= new XmlUnitTestResultPrinter
;
177 CHECK(printer
->Initialize(output_path
));
178 testing::TestEventListeners
& listeners
=
179 testing::UnitTest::GetInstance()->listeners();
180 listeners
.Append(printer
);
182 #endif // !defined(OS_IOS)
184 // Don't add additional code to this method. Instead add it to
185 // Initialize(). See bug 6436.
186 int TestSuite::Run() {
188 RunTestsFromIOSApp();
191 #if defined(OS_MACOSX)
192 base::mac::ScopedNSAutoreleasePool scoped_pool
;
196 std::string client_func
=
197 CommandLine::ForCurrentProcess()->GetSwitchValueASCII(
198 switches::kTestChildProcess
);
200 // Check to see if we are being run as a client process.
201 if (!client_func
.empty())
202 return multi_process_function_list::InvokeChildProcessTest(client_func
);
204 base::test_listener_ios::RegisterTestEndListener();
206 int result
= RUN_ALL_TESTS();
208 #if defined(OS_MACOSX)
209 // This MUST happen before Shutdown() since Shutdown() tears down
210 // objects (such as NotificationService::current()) that Cocoa
211 // objects use to remove themselves as observers.
212 scoped_pool
.Recycle();
221 void TestSuite::UnitTestAssertHandler(const std::string
& str
) {
222 #if defined(OS_ANDROID)
223 // Correlating test stdio with logcat can be difficult, so we emit this
224 // helpful little hint about what was running. Only do this for Android
225 // because other platforms don't separate out the relevant logs in the same
227 const ::testing::TestInfo
* const test_info
=
228 ::testing::UnitTest::GetInstance()->current_test_info();
230 LOG(ERROR
) << "Currently running: " << test_info
->test_case_name() << "."
231 << test_info
->name();
234 #endif // defined(OS_ANDROID)
236 // The logging system actually prints the message before calling the assert
237 // handler. Just exit now to avoid printing too many stack traces.
241 void TestSuite::SuppressErrorDialogs() {
243 UINT new_flags
= SEM_FAILCRITICALERRORS
|
244 SEM_NOGPFAULTERRORBOX
|
245 SEM_NOOPENFILEERRORBOX
;
247 // Preserve existing error mode, as discussed at
248 // http://blogs.msdn.com/oldnewthing/archive/2004/07/27/198410.aspx
249 UINT existing_flags
= SetErrorMode(new_flags
);
250 SetErrorMode(existing_flags
| new_flags
);
252 #if defined(_DEBUG) && defined(_HAS_EXCEPTIONS) && (_HAS_EXCEPTIONS == 1)
253 // Suppress the "Debug Assertion Failed" dialog.
254 // TODO(hbono): remove this code when gtest has it.
255 // http://groups.google.com/d/topic/googletestframework/OjuwNlXy5ac/discussion
256 _CrtSetReportMode(_CRT_ASSERT
, _CRTDBG_MODE_FILE
| _CRTDBG_MODE_DEBUG
);
257 _CrtSetReportFile(_CRT_ASSERT
, _CRTDBG_FILE_STDERR
);
258 #endif // defined(_DEBUG) && defined(_HAS_EXCEPTIONS) && (_HAS_EXCEPTIONS == 1)
259 #endif // defined(OS_WIN)
262 void TestSuite::Initialize() {
263 #if defined(OS_MACOSX) && !defined(OS_IOS)
264 // Some of the app unit tests spin runloops.
265 mock_cr_app::RegisterMockCrApp();
269 InitIOSTestMessageLoop();
272 #if defined(OS_ANDROID)
275 // Initialize logging.
277 PathService::Get(base::FILE_EXE
, &exe
);
278 base::FilePath log_filename
= exe
.ReplaceExtension(FILE_PATH_LITERAL("log"));
279 logging::LoggingSettings settings
;
280 settings
.logging_dest
= logging::LOG_TO_ALL
;
281 settings
.log_file
= log_filename
.value().c_str();
282 settings
.delete_old
= logging::DELETE_OLD_LOG_FILE
;
283 logging::InitLogging(settings
);
284 // We want process and thread IDs because we may have multiple processes.
285 // Note: temporarily enabled timestamps in an effort to catch bug 6361.
286 logging::SetLogItems(true, true, true, true);
287 #endif // else defined(OS_ANDROID)
289 CHECK(base::debug::EnableInProcessStackDumping());
291 // Make sure we run with high resolution timer to minimize differences
292 // between production code and test code.
293 base::Time::EnableHighResolutionTimer(true);
294 #endif // defined(OS_WIN)
296 // In some cases, we do not want to see standard error dialogs.
297 if (!base::debug::BeingDebugged() &&
298 !CommandLine::ForCurrentProcess()->HasSwitch("show-error-dialogs")) {
299 SuppressErrorDialogs();
300 base::debug::SetSuppressDebugUI(true);
301 logging::SetLogAssertHandler(UnitTestAssertHandler
);
304 base::i18n::InitializeICU();
309 AddTestLauncherResultPrinter();
310 #endif // !defined(OS_IOS)
312 TestTimeouts::Initialize();
315 void TestSuite::Shutdown() {