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

Side by Side Diff: chrome/test/automation/automation_proxy_uitest.cc

Issue 4202004: Add named testing interface (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 10 years, 1 month 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
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 <string> 5 #include <string>
6 6
7 #include "app/app_switches.h" 7 #include "app/app_switches.h"
8 #include "app/message_box_flags.h" 8 #include "app/message_box_flags.h"
9 #include "base/command_line.h" 9 #include "base/command_line.h"
10 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
11 #include "base/file_path.h" 11 #include "base/file_path.h"
12 #include "base/i18n/rtl.h" 12 #include "base/i18n/rtl.h"
13 #include "base/string_util.h" 13 #include "base/string_util.h"
14 #include "base/stringprintf.h" 14 #include "base/stringprintf.h"
15 #include "base/sys_info.h" 15 #include "base/sys_info.h"
16 #include "base/utf_string_conversions.h" 16 #include "base/utf_string_conversions.h"
17 #include "build/build_config.h" 17 #include "build/build_config.h"
18 #include "chrome/app/chrome_command_ids.h" 18 #include "chrome/app/chrome_command_ids.h"
19 #include "chrome/browser/net/url_request_slow_http_job.h" 19 #include "chrome/browser/net/url_request_slow_http_job.h"
20 #include "chrome/browser/view_ids.h" 20 #include "chrome/browser/view_ids.h"
21 #include "chrome/common/automation_messages.h" 21 #include "chrome/common/automation_messages.h"
22 #include "chrome/common/chrome_constants.h" 22 #include "chrome/common/chrome_constants.h"
23 #include "chrome/common/chrome_switches.h" 23 #include "chrome/common/chrome_switches.h"
24 #include "chrome/common/json_value_serializer.h" 24 #include "chrome/common/json_value_serializer.h"
25 #include "chrome/test/automation/autocomplete_edit_proxy.h" 25 #include "chrome/test/automation/autocomplete_edit_proxy.h"
26 #include "chrome/test/automation/automation_proxy_uitest.h" 26 #include "chrome/test/automation/automation_proxy_uitest.h"
27 #include "chrome/test/automation/browser_proxy.h" 27 #include "chrome/test/automation/browser_proxy.h"
28 #include "chrome/test/automation/proxy_launcher.h"
28 #include "chrome/test/automation/tab_proxy.h" 29 #include "chrome/test/automation/tab_proxy.h"
29 #include "chrome/test/automation/window_proxy.h" 30 #include "chrome/test/automation/window_proxy.h"
30 #include "chrome/test/ui_test_utils.h" 31 #include "chrome/test/ui_test_utils.h"
31 #include "chrome/test/ui/ui_test.h" 32 #include "chrome/test/ui/ui_test.h"
32 #include "gfx/rect.h" 33 #include "gfx/rect.h"
33 #include "net/base/net_util.h" 34 #include "net/base/net_util.h"
34 #include "net/test/test_server.h" 35 #include "net/test/test_server.h"
35 #define GMOCK_MUTANT_INCLUDE_LATE_OBJECT_BINDING 36 #define GMOCK_MUTANT_INCLUDE_LATE_OBJECT_BINDING
36 #include "testing/gmock_mutant.h" 37 #include "testing/gmock_mutant.h"
37 #include "views/event.h" 38 #include "views/event.h"
38 39
39 using ui_test_utils::TimedMessageLoopRunner; 40 using ui_test_utils::TimedMessageLoopRunner;
40 using testing::CreateFunctor; 41 using testing::CreateFunctor;
41 using testing::StrEq; 42 using testing::StrEq;
42 using testing::_; 43 using testing::_;
43 44
45 // Replace the default automation proxy with our mock client.
46 class ExternalTabUITestMockLauncher : public ProxyLauncher {
47 public:
48 AutomationProxy* CreateAutomationProxy(int execution_timeout) const {
49 return new ExternalTabUITestMockClient(execution_timeout);
50 }
51
52 void InitializeConnection(UITestBase* ui_test_base) const {
53 ui_test_base->LaunchBrowserAndServer();
54 }
55
56 std::string PrefixedChannelID() const {
57 return "";
58 }
59 };
60
44 class AutomationProxyTest : public UITest { 61 class AutomationProxyTest : public UITest {
45 protected: 62 protected:
46 AutomationProxyTest() { 63 AutomationProxyTest() {
47 dom_automation_enabled_ = true; 64 dom_automation_enabled_ = true;
48 launch_arguments_.AppendSwitchASCII(switches::kLang, "en-US"); 65 launch_arguments_.AppendSwitchASCII(switches::kLang, "en-US");
49 } 66 }
50 }; 67 };
51 68
52 TEST_F(AutomationProxyTest, GetBrowserWindowCount) { 69 TEST_F(AutomationProxyTest, GetBrowserWindowCount) {
53 int window_count = 0; 70 int window_count = 0;
(...skipping 773 matching lines...) Expand 10 before | Expand all | Expand 10 after
827 CreateFunctor(loop, &TimedMessageLoopRunner::QuitAfter, ms)) 844 CreateFunctor(loop, &TimedMessageLoopRunner::QuitAfter, ms))
828 845
829 template <typename T> T** ReceivePointer(scoped_ptr<T>& p) { // NOLINT 846 template <typename T> T** ReceivePointer(scoped_ptr<T>& p) { // NOLINT
830 return reinterpret_cast<T**>(&p); 847 return reinterpret_cast<T**>(&p);
831 } 848 }
832 849
833 template <typename T> T** ReceivePointer(scoped_refptr<T>& p) { // NOLINT 850 template <typename T> T** ReceivePointer(scoped_refptr<T>& p) { // NOLINT
834 return reinterpret_cast<T**>(&p); 851 return reinterpret_cast<T**>(&p);
835 } 852 }
836 853
837 AutomationProxy* ExternalTabUITest::CreateAutomationProxy(int exec_timeout) { 854 ProxyLauncher* ExternalTabUITest::CreateProxyLauncher() {
838 mock_ = new ExternalTabUITestMockClient(exec_timeout); 855 return new ExternalTabUITestMockLauncher();
839 return mock_;
840 } 856 }
841 857
842 // Create with specifying a url 858 // Create with specifying a url
843 // Flaky, http://crbug.com/32293 859 // Flaky, http://crbug.com/32293
844 TEST_F(ExternalTabUITest, FLAKY_CreateExternalTab1) { 860 TEST_F(ExternalTabUITest, FLAKY_CreateExternalTab1) {
845 scoped_refptr<TabProxy> tab; 861 scoped_refptr<TabProxy> tab;
846 TimedMessageLoopRunner loop(MessageLoop::current()); 862 TimedMessageLoopRunner loop(MessageLoop::current());
847 ASSERT_THAT(mock_, testing::NotNull()); 863 ASSERT_THAT(mock_, testing::NotNull());
848 864
849 EXPECT_CALL(*mock_, OnNavigationStateChanged(_, _, _)) 865 EXPECT_CALL(*mock_, OnNavigationStateChanged(_, _, _))
(...skipping 655 matching lines...) Expand 10 before | Expand all | Expand 10 after
1505 1521
1506 // Allow some time for the popup to show up and close. 1522 // Allow some time for the popup to show up and close.
1507 PlatformThread::Sleep(sleep_timeout_ms()); 1523 PlatformThread::Sleep(sleep_timeout_ms());
1508 1524
1509 std::wstring expected(L"string"); 1525 std::wstring expected(L"string");
1510 std::wstring jscript = CreateJSString(L"\"" + expected + L"\""); 1526 std::wstring jscript = CreateJSString(L"\"" + expected + L"\"");
1511 std::wstring actual; 1527 std::wstring actual;
1512 ASSERT_TRUE(tab->ExecuteAndExtractString(L"", jscript, &actual)); 1528 ASSERT_TRUE(tab->ExecuteAndExtractString(L"", jscript, &actual));
1513 ASSERT_EQ(expected, actual); 1529 ASSERT_EQ(expected, actual);
1514 } 1530 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698