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

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/chrome_constants.h" 21 #include "chrome/common/chrome_constants.h"
22 #include "chrome/common/chrome_switches.h" 22 #include "chrome/common/chrome_switches.h"
23 #include "chrome/common/json_value_serializer.h" 23 #include "chrome/common/json_value_serializer.h"
24 #include "chrome/test/automation/autocomplete_edit_proxy.h" 24 #include "chrome/test/automation/autocomplete_edit_proxy.h"
25 #include "chrome/test/automation/automation_messages.h" 25 #include "chrome/test/automation/automation_messages.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
44 class AutomationProxyTest : public UITest { 53 class AutomationProxyTest : public UITest {
45 protected: 54 protected:
46 AutomationProxyTest() { 55 AutomationProxyTest() {
47 dom_automation_enabled_ = true; 56 dom_automation_enabled_ = true;
48 launch_arguments_.AppendSwitchASCII(switches::kLang, "en-US"); 57 launch_arguments_.AppendSwitchASCII(switches::kLang, "en-US");
49 } 58 }
50 }; 59 };
51 60
52 TEST_F(AutomationProxyTest, GetBrowserWindowCount) { 61 TEST_F(AutomationProxyTest, GetBrowserWindowCount) {
53 int window_count = 0; 62 int window_count = 0;
(...skipping 773 matching lines...) Expand 10 before | Expand all | Expand 10 after
827 CreateFunctor(loop, &TimedMessageLoopRunner::QuitAfter, ms)) 836 CreateFunctor(loop, &TimedMessageLoopRunner::QuitAfter, ms))
828 837
829 template <typename T> T** ReceivePointer(scoped_ptr<T>& p) { // NOLINT 838 template <typename T> T** ReceivePointer(scoped_ptr<T>& p) { // NOLINT
830 return reinterpret_cast<T**>(&p); 839 return reinterpret_cast<T**>(&p);
831 } 840 }
832 841
833 template <typename T> T** ReceivePointer(scoped_refptr<T>& p) { // NOLINT 842 template <typename T> T** ReceivePointer(scoped_refptr<T>& p) { // NOLINT
834 return reinterpret_cast<T**>(&p); 843 return reinterpret_cast<T**>(&p);
835 } 844 }
836 845
837 AutomationProxy* ExternalTabUITest::CreateAutomationProxy(int exec_timeout) { 846 ProxyLauncher* ExternalTabUITest::CreateProxyLauncher() {
838 mock_ = new ExternalTabUITestMockClient(exec_timeout); 847 return new ExternalTabUITestMockLauncher();
839 return mock_;
840 } 848 }
841 849
842 // Create with specifying a url 850 // Create with specifying a url
843 // Flaky, http://crbug.com/32293 851 // Flaky, http://crbug.com/32293
844 TEST_F(ExternalTabUITest, FLAKY_CreateExternalTab1) { 852 TEST_F(ExternalTabUITest, FLAKY_CreateExternalTab1) {
845 scoped_refptr<TabProxy> tab; 853 scoped_refptr<TabProxy> tab;
846 TimedMessageLoopRunner loop(MessageLoop::current()); 854 TimedMessageLoopRunner loop(MessageLoop::current());
847 ASSERT_THAT(mock_, testing::NotNull()); 855 ASSERT_THAT(mock_, testing::NotNull());
848 856
849 EXPECT_CALL(*mock_, OnNavigationStateChanged(_, _, _)) 857 EXPECT_CALL(*mock_, OnNavigationStateChanged(_, _, _))
(...skipping 655 matching lines...) Expand 10 before | Expand all | Expand 10 after
1505 1513
1506 // Allow some time for the popup to show up and close. 1514 // Allow some time for the popup to show up and close.
1507 PlatformThread::Sleep(sleep_timeout_ms()); 1515 PlatformThread::Sleep(sleep_timeout_ms());
1508 1516
1509 std::wstring expected(L"string"); 1517 std::wstring expected(L"string");
1510 std::wstring jscript = CreateJSString(L"\"" + expected + L"\""); 1518 std::wstring jscript = CreateJSString(L"\"" + expected + L"\"");
1511 std::wstring actual; 1519 std::wstring actual;
1512 ASSERT_TRUE(tab->ExecuteAndExtractString(L"", jscript, &actual)); 1520 ASSERT_TRUE(tab->ExecuteAndExtractString(L"", jscript, &actual));
1513 ASSERT_EQ(expected, actual); 1521 ASSERT_EQ(expected, actual);
1514 } 1522 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698