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

Side by Side Diff: chrome/test/url_fetch_test/url_fetch_test.cc

Issue 6249003: Add option for url_fetch_test to wait for a JS expression... (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 9 years, 11 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 | 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) 2011 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 "base/command_line.h" 5 #include "base/command_line.h"
6 #include "base/file_path.h" 6 #include "base/file_path.h"
7 #include "base/file_util.h" 7 #include "base/file_util.h"
8 #include "base/path_service.h" 8 #include "base/path_service.h"
9 #include "base/string_number_conversions.h"
9 #include "base/string_util.h" 10 #include "base/string_util.h"
10 #include "base/utf_string_conversions.h" 11 #include "base/utf_string_conversions.h"
11 #include "chrome/common/chrome_paths.h" 12 #include "chrome/common/chrome_paths.h"
12 #include "chrome/test/automation/tab_proxy.h" 13 #include "chrome/test/automation/tab_proxy.h"
13 #include "chrome/test/ui/ui_test.h" 14 #include "chrome/test/ui/ui_test.h"
14 15
15 namespace { 16 namespace {
16 17
17 // Provides a UI Test that lets us take the browser to a url, and 18 // Provides a UI Test that lets us take the browser to a url, and
18 // wait for a cookie value to be set before closing the page. 19 // wait for a cookie value to be set or a JavaScript expression to evaluate
20 // true before closing the page. It is undefined what happens if you specify
21 // both a cookie and a JS expression.
19 class UrlFetchTest : public UITest { 22 class UrlFetchTest : public UITest {
20 public: 23 public:
21 UrlFetchTest() { 24 UrlFetchTest() {
22 show_window_ = true; 25 show_window_ = true;
23 dom_automation_enabled_ = true; 26 dom_automation_enabled_ = true;
24 } 27 }
25 struct UrlFetchTestResult { 28 struct UrlFetchTestResult {
26 std::string cookie_value; 29 std::string cookie_value;
27 std::string javascript_variable; 30 std::string javascript_variable;
28 }; 31 };
29 32
30 void SetUp() { 33 void SetUp() {
31 const CommandLine* cmd_line = CommandLine::ForCurrentProcess(); 34 const CommandLine* cmd_line = CommandLine::ForCurrentProcess();
32 if (cmd_line->HasSwitch("reference_build")) { 35 if (cmd_line->HasSwitch("reference_build")) {
33 FilePath dir; 36 FilePath dir;
34 PathService::Get(chrome::DIR_TEST_TOOLS, &dir); 37 PathService::Get(chrome::DIR_TEST_TOOLS, &dir);
35 dir = dir.AppendASCII("reference_build"); 38 dir = dir.AppendASCII("reference_build");
36 #if defined(OS_WIN) 39 #if defined(OS_WIN)
37 dir = dir.AppendASCII("chrome"); 40 dir = dir.AppendASCII("chrome");
38 #elif defined(OS_LINUX) 41 #elif defined(OS_LINUX)
39 dir = dir.AppendASCII("chrome_linux"); 42 dir = dir.AppendASCII("chrome_linux");
40 #elif defined(OS_MACOSX) 43 #elif defined(OS_MACOSX)
41 dir = dir.AppendASCII("chrome_mac"); 44 dir = dir.AppendASCII("chrome_mac");
42 #endif 45 #endif
43 browser_directory_ = dir; 46 browser_directory_ = dir;
44 } 47 }
45 UITest::SetUp(); 48 UITest::SetUp();
46 } 49 }
47 50
48 void RunTest(const GURL& url, const char* wait_cookie_name, 51 void RunTest(const GURL& url,
49 const char* wait_cookie_value, const char* var_to_fetch, 52 const char* wait_cookie_name,
53 const char* wait_cookie_value,
54 const char* var_to_fetch,
55 const std::wstring& wait_js_expr,
56 const std::wstring& wait_js_frame_xpath,
57 int wait_js_timeout_ms,
50 UrlFetchTestResult* result) { 58 UrlFetchTestResult* result) {
51 scoped_refptr<TabProxy> tab(GetActiveTab()); 59 scoped_refptr<TabProxy> tab(GetActiveTab());
52 ASSERT_EQ(AUTOMATION_MSG_NAVIGATION_SUCCESS, tab->NavigateToURL(url)); 60 ASSERT_EQ(AUTOMATION_MSG_NAVIGATION_SUCCESS, tab->NavigateToURL(url));
53 61
54 if (wait_cookie_name) { 62 if (wait_cookie_name) {
55 if (wait_cookie_value) { 63 if (wait_cookie_value) {
56 bool completed = WaitUntilCookieValue(tab.get(), url, wait_cookie_name, 64 bool completed = WaitUntilCookieValue(tab.get(), url, wait_cookie_name,
57 UITest::test_timeout_ms(), 65 UITest::test_timeout_ms(),
58 wait_cookie_value); 66 wait_cookie_value);
59 ASSERT_TRUE(completed); 67 ASSERT_TRUE(completed);
60 } else { 68 } else {
61 result->cookie_value = WaitUntilCookieNonEmpty( 69 result->cookie_value = WaitUntilCookieNonEmpty(
62 tab.get(), url, wait_cookie_name, UITest::test_timeout_ms()); 70 tab.get(), url, wait_cookie_name, UITest::test_timeout_ms());
63 ASSERT_TRUE(result->cookie_value.length()); 71 ASSERT_TRUE(result->cookie_value.length());
64 } 72 }
73 } else if (!wait_js_expr.empty()) {
74 bool completed = WaitUntilJavaScriptCondition(tab.get(),
75 wait_js_frame_xpath,
willchan no longer on Chromium 2011/01/14 18:20:29 We're trying to limit the amount of wstring usage
76 wait_js_expr,
77 wait_js_timeout_ms);
78 ASSERT_TRUE(completed);
65 } 79 }
66 if (var_to_fetch) { 80 if (var_to_fetch) {
67 std::string script = StringPrintf( 81 std::string script = StringPrintf(
68 "window.domAutomationController.send(%s);", var_to_fetch); 82 "window.domAutomationController.send(%s);", var_to_fetch);
69 83
70 std::wstring value; 84 std::wstring value;
71 bool success = tab->ExecuteAndExtractString(L"", ASCIIToWide(script), 85 bool success = tab->ExecuteAndExtractString(L"", ASCIIToWide(script),
72 &value); 86 &value);
73 ASSERT_TRUE(success); 87 ASSERT_TRUE(success);
74 result->javascript_variable = WideToUTF8(value); 88 result->javascript_variable = WideToUTF8(value);
(...skipping 17 matching lines...) Expand all
92 // Waits for a cookie named <name> to be set before exiting successfully. 106 // Waits for a cookie named <name> to be set before exiting successfully.
93 // 107 //
94 // --wait_cookie_value=<value> 108 // --wait_cookie_value=<value>
95 // In conjunction with --wait_cookie_name, this waits for a specific value 109 // In conjunction with --wait_cookie_name, this waits for a specific value
96 // to be set. (Incompatible with --wait_cookie_output) 110 // to be set. (Incompatible with --wait_cookie_output)
97 // 111 //
98 // --wait_cookie_output=<filepath> 112 // --wait_cookie_output=<filepath>
99 // In conjunction with --wait_cookie_name, this saves the cookie value to 113 // In conjunction with --wait_cookie_name, this saves the cookie value to
100 // a file at the given path. (Incompatible with --wait_cookie_value) 114 // a file at the given path. (Incompatible with --wait_cookie_value)
101 // 115 //
116 // --wait_js_expr=<jscript_expr>
117 // Waits for a javascript expression to evaluate true before exiting
118 // successfully.
119 //
120 // --wait_js_timeout=<timeout_ms>
121 // In conjunction with --wait_js_condition, this sets the timeout in ms
122 // that we are prepared to wait. If this timeout is exceeded, we will exit
123 // with failure. Note that a timeout greater than the gtest timeout will not
124 // be honored.
125 //
126 // --wait_js_frame_xpath=<xpath>
127 // In conjuction with --wait_js_condition, the JavaScript expression is
128 // executed in the context of the frame that matches the provided xpath.
129 // If this is not specified (or empty string), then the main frame is used.
130
102 // --jsvar=<name> 131 // --jsvar=<name>
103 // At the end of the test, fetch the named javascript variable from the page. 132 // At the end of the test, fetch the named javascript variable from the page.
104 // 133 //
105 // --jsvar_output=<filepath> 134 // --jsvar_output=<filepath>
106 // Write the value of the variable named by '--jsvar' to a file at the given 135 // Write the value of the variable named by '--jsvar' to a file at the given
107 // path. 136 // path.
108 // 137 //
109 // --reference_build 138 // --reference_build
110 // Use the reference build of chrome for the test. 139 // Use the reference build of chrome for the test.
111 TEST_F(UrlFetchTest, UrlFetch) { 140 TEST_F(UrlFetchTest, UrlFetch) {
112 const CommandLine* cmd_line = CommandLine::ForCurrentProcess(); 141 const CommandLine* cmd_line = CommandLine::ForCurrentProcess();
113 142
114 if (!cmd_line->HasSwitch("url")) 143 if (!cmd_line->HasSwitch("url"))
115 return; 144 return;
116 145
117 std::string cookie_name = 146 std::string cookie_name =
118 cmd_line->GetSwitchValueASCII("wait_cookie_name"); 147 cmd_line->GetSwitchValueASCII("wait_cookie_name");
119 std::string cookie_value = 148 std::string cookie_value =
120 cmd_line->GetSwitchValueASCII("wait_cookie_value"); 149 cmd_line->GetSwitchValueASCII("wait_cookie_value");
150 std::wstring js_expr =
151 UTF8ToWide(cmd_line->GetSwitchValueASCII("wait_js_expr"));
152 std::wstring js_frame_xpath =
153 UTF8ToWide(cmd_line->GetSwitchValueASCII("wait_js_frame_xpath"));
154 std::string js_timeout_ms_str =
155 cmd_line->GetSwitchValueASCII("wait_js_timeout");
121 156
122 std::string jsvar = cmd_line->GetSwitchValueASCII("jsvar"); 157 std::string jsvar = cmd_line->GetSwitchValueASCII("jsvar");
158 int js_timeout_ms = -1; // no timeout, wait forever
159
160 if (!js_timeout_ms_str.empty())
161 base::StringToInt(js_timeout_ms_str, &js_timeout_ms);
123 162
124 UrlFetchTestResult result; 163 UrlFetchTestResult result;
125 RunTest(GURL(cmd_line->GetSwitchValueASCII("url")), 164 RunTest(GURL(cmd_line->GetSwitchValueASCII("url")),
126 cookie_name.length() > 0 ? cookie_name.c_str() : NULL, 165 cookie_name.length() > 0 ? cookie_name.c_str() : NULL,
127 cookie_value.length() > 0 ? cookie_value.c_str() : NULL, 166 cookie_value.length() > 0 ? cookie_value.c_str() : NULL,
128 jsvar.length() > 0 ? jsvar.c_str() : NULL, 167 jsvar.length() > 0 ? jsvar.c_str() : NULL,
168 js_expr,
169 js_frame_xpath,
170 js_timeout_ms,
129 &result); 171 &result);
130 172
131 // Write out the cookie if requested 173 // Write out the cookie if requested
132 FilePath cookie_output_path = 174 FilePath cookie_output_path =
133 cmd_line->GetSwitchValuePath("wait_cookie_output"); 175 cmd_line->GetSwitchValuePath("wait_cookie_output");
134 if (cookie_output_path.value().size() > 0) { 176 if (cookie_output_path.value().size() > 0) {
135 ASSERT_TRUE(WriteValueToFile(result.cookie_value, cookie_output_path)); 177 ASSERT_TRUE(WriteValueToFile(result.cookie_value, cookie_output_path));
136 } 178 }
137 179
138 // Write out the JS Variable if requested 180 // Write out the JS Variable if requested
139 FilePath jsvar_output_path = cmd_line->GetSwitchValuePath("jsvar_output"); 181 FilePath jsvar_output_path = cmd_line->GetSwitchValuePath("jsvar_output");
140 if (jsvar_output_path.value().size() > 0) { 182 if (jsvar_output_path.value().size() > 0) {
141 ASSERT_TRUE(WriteValueToFile(result.javascript_variable, 183 ASSERT_TRUE(WriteValueToFile(result.javascript_variable,
142 jsvar_output_path)); 184 jsvar_output_path));
143 } 185 }
144 } 186 }
145 187
146 } // namespace 188 } // namespace
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698