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

Side by Side Diff: chrome/test/ui/ui_test.cc

Issue 2206001: Merge 48149 - Relanding 48042.... (Closed) Base URL: svn://svn.chromium.org/chrome/branches/408/src/
Patch Set: Created 10 years, 7 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 | « chrome/test/in_process_browser_test.cc ('k') | no next file » | 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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 #include "chrome/test/ui/ui_test.h" 5 #include "chrome/test/ui/ui_test.h"
6 6
7 #if defined(OS_POSIX) 7 #if defined(OS_POSIX)
8 #include <signal.h> 8 #include <signal.h>
9 #include <sys/types.h> 9 #include <sys/types.h>
10 #endif 10 #endif
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 profile_type_(UITestBase::DEFAULT_THEME), 123 profile_type_(UITestBase::DEFAULT_THEME),
124 shutdown_type_(UITestBase::WINDOW_CLOSE), 124 shutdown_type_(UITestBase::WINDOW_CLOSE),
125 test_start_time_(Time::NowFromSystemTime()), 125 test_start_time_(Time::NowFromSystemTime()),
126 command_execution_timeout_ms_(kCommandExecutionTimeout), 126 command_execution_timeout_ms_(kCommandExecutionTimeout),
127 action_timeout_ms_(kWaitForActionMsec), 127 action_timeout_ms_(kWaitForActionMsec),
128 action_max_timeout_ms_(kWaitForActionMaxMsec), 128 action_max_timeout_ms_(kWaitForActionMaxMsec),
129 sleep_timeout_ms_(kWaitForActionMsec), 129 sleep_timeout_ms_(kWaitForActionMsec),
130 terminate_timeout_ms_(kWaitForTerminateMsec) { 130 terminate_timeout_ms_(kWaitForTerminateMsec) {
131 PathService::Get(chrome::DIR_APP, &browser_directory_); 131 PathService::Get(chrome::DIR_APP, &browser_directory_);
132 PathService::Get(chrome::DIR_TEST_DATA, &test_data_directory_); 132 PathService::Get(chrome::DIR_TEST_DATA, &test_data_directory_);
133 // TODO(jcivelli): http://crbug.com/44089 We disable the app launcher on new
134 // tab behavior for now until it is the default behavior on
135 // all platforms.
136 launch_arguments_.AppendSwitch(switches::kDisableAppsPanel);
137 } 133 }
138 134
139 UITestBase::UITestBase(MessageLoop::Type msg_loop_type) 135 UITestBase::UITestBase(MessageLoop::Type msg_loop_type)
140 : launch_arguments_(CommandLine::ARGUMENTS_ONLY), 136 : launch_arguments_(CommandLine::ARGUMENTS_ONLY),
141 expected_errors_(0), 137 expected_errors_(0),
142 expected_crashes_(0), 138 expected_crashes_(0),
143 homepage_(L"about:blank"), 139 homepage_(L"about:blank"),
144 wait_for_initial_loads_(true), 140 wait_for_initial_loads_(true),
145 dom_automation_enabled_(false), 141 dom_automation_enabled_(false),
146 process_(0), // NULL on Windows, 0 PID on POSIX. 142 process_(0), // NULL on Windows, 0 PID on POSIX.
147 process_id_(-1), 143 process_id_(-1),
148 show_window_(false), 144 show_window_(false),
149 clear_profile_(true), 145 clear_profile_(true),
150 include_testing_id_(true), 146 include_testing_id_(true),
151 use_existing_browser_(default_use_existing_browser_), 147 use_existing_browser_(default_use_existing_browser_),
152 enable_file_cookies_(true), 148 enable_file_cookies_(true),
153 profile_type_(UITestBase::DEFAULT_THEME), 149 profile_type_(UITestBase::DEFAULT_THEME),
154 shutdown_type_(UITestBase::WINDOW_CLOSE), 150 shutdown_type_(UITestBase::WINDOW_CLOSE),
155 test_start_time_(Time::NowFromSystemTime()), 151 test_start_time_(Time::NowFromSystemTime()),
156 command_execution_timeout_ms_(kCommandExecutionTimeout), 152 command_execution_timeout_ms_(kCommandExecutionTimeout),
157 action_timeout_ms_(kWaitForActionMsec), 153 action_timeout_ms_(kWaitForActionMsec),
158 action_max_timeout_ms_(kWaitForActionMaxMsec), 154 action_max_timeout_ms_(kWaitForActionMaxMsec),
159 sleep_timeout_ms_(kWaitForActionMsec), 155 sleep_timeout_ms_(kWaitForActionMsec),
160 terminate_timeout_ms_(kWaitForTerminateMsec) { 156 terminate_timeout_ms_(kWaitForTerminateMsec) {
161 PathService::Get(chrome::DIR_APP, &browser_directory_); 157 PathService::Get(chrome::DIR_APP, &browser_directory_);
162 PathService::Get(chrome::DIR_TEST_DATA, &test_data_directory_); 158 PathService::Get(chrome::DIR_TEST_DATA, &test_data_directory_);
163 // TODO(jcivelli): http://crbug.com/44089 We disable the app launcher on new
164 // tab behavior for now until it is the default behavior on
165 // all platforms.
166 launch_arguments_.AppendSwitch(switches::kDisableAppsPanel);
167 } 159 }
168 160
169 UITestBase::~UITestBase() { 161 UITestBase::~UITestBase() {
170 } 162 }
171 163
172 void UITestBase::SetUp() { 164 void UITestBase::SetUp() {
173 if (!use_existing_browser_) { 165 if (!use_existing_browser_) {
174 AssertAppNotRunning(L"Please close any other instances " 166 AssertAppNotRunning(L"Please close any other instances "
175 L"of the app before testing."); 167 L"of the app before testing.");
176 } 168 }
(...skipping 1367 matching lines...) Expand 10 before | Expand all | Expand 10 after
1544 set_ui_test_name(ASCIIToWide(test_name)); 1536 set_ui_test_name(ASCIIToWide(test_name));
1545 } 1537 }
1546 UITestBase::SetUp(); 1538 UITestBase::SetUp();
1547 PlatformTest::SetUp(); 1539 PlatformTest::SetUp();
1548 } 1540 }
1549 1541
1550 void UITest::TearDown() { 1542 void UITest::TearDown() {
1551 UITestBase::TearDown(); 1543 UITestBase::TearDown();
1552 PlatformTest::TearDown(); 1544 PlatformTest::TearDown();
1553 } 1545 }
OLDNEW
« no previous file with comments | « chrome/test/in_process_browser_test.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698