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

Side by Side Diff: LayoutTests/inspector/curl-command.html

Issue 1217863002: DevTools: Speculative fix the curl-command for CL 1136843010 (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 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 <html> 1 <html>
2 <head> 2 <head>
3 <script src="../http/tests/inspector/inspector-test.js"></script> 3 <script src="../http/tests/inspector/inspector-test.js"></script>
4 <script src="../http/tests/inspector/network-test.js"></script> 4 <script src="../http/tests/inspector/network-test.js"></script>
5 <script type="text/javascript"> 5 <script type="text/javascript">
6 6
7 var test = function() 7 var test = function()
8 { 8 {
9 var logView = WebInspector.panels.network._networkLogView; 9 var logView = WebInspector.panels.network._networkLogView;
10 10
11 function newRequest(headers, data, opt_url) 11 function newRequest(headers, data, opt_url)
12 { 12 {
13 var request = new WebInspector.NetworkRequest(WebInspector.targetManager .mainTarget(), 0, opt_url || 'http://example.org/path', 0, 0, 0); 13 var request = new WebInspector.NetworkRequest(WebInspector.targetManager .mainTarget(), 0, opt_url || 'http://example.org/path', 0, 0, 0);
14 request.requestMethod = data ? "POST" : "GET"; 14 request.requestMethod = data ? "POST" : "GET";
15 var headerList = []; 15 var headerList = [];
16 if (headers) { 16 if (headers) {
17 for (var i in headers) 17 for (var i in headers)
18 headerList.push({name: i, value: headers[i]}); 18 headerList.push({name: i, value: headers[i]});
19 } 19 }
20 if (data) { 20 if (data) {
21 headerList.push({name: "Content-Length", value: data.length}); 21 headerList.push({name: "Content-Length", value: data.length});
22 request.requestFormData = data; 22 request.requestFormData = data;
23 } 23 }
24 request.setRequestHeaders(headerList); 24 request.setRequestHeaders(headerList);
25 return request; 25 return request;
26 } 26 }
27 27
28 function dumpRequest(headers, data, opt_url) 28 function dumpRequest(headers, data, opt_url)
29 { 29 {
30 InspectorTest.addResult(logView._generateCurlCommand(newRequest(headers, data, opt_url))); 30 InspectorTest.addResult(logView._generateCurlCommand(newRequest(headers, data, opt_url), WebInspector.isWin() ? "win" : "unix"));
31 } 31 }
32 32
33 dumpRequest({}) 33 dumpRequest({})
34 dumpRequest({}, "123"); 34 dumpRequest({}, "123");
35 dumpRequest({"Content-Type": "application/x-www-form-urlencoded"}, "1&b"); 35 dumpRequest({"Content-Type": "application/x-www-form-urlencoded"}, "1&b");
36 dumpRequest({"Content-Type": "application/json"}, "{\"a\":1}"); 36 dumpRequest({"Content-Type": "application/json"}, "{\"a\":1}");
37 dumpRequest({"Content-Type": "application/binary"}, "1234\r\n\x30\x30\2\3\4\ 5\'\"!"); // expected content length: 15 37 dumpRequest({"Content-Type": "application/binary"}, "1234\r\n\x30\x30\2\3\4\ 5\'\"!"); // expected content length: 15
38 dumpRequest({"Content-Type": "application/binary"}, "1234\r\n\1\x30\x30\2\3\ 4\5\'\"!"); // expected content length: 16 38 dumpRequest({"Content-Type": "application/binary"}, "1234\r\n\1\x30\x30\2\3\ 4\5\'\"!"); // expected content length: 16
39 dumpRequest({"Content-Type": "application/binary"}, "\x7F\x80\x90\xFF\u0009\ u0700"); 39 dumpRequest({"Content-Type": "application/binary"}, "\x7F\x80\x90\xFF\u0009\ u0700");
40 dumpRequest({}, "", "http://labs.ft.com/?querystring=[]{}"); // Character r ange symbols must be escaped (http://crbug.com/265449). 40 dumpRequest({}, "", "http://labs.ft.com/?querystring=[]{}"); // Character r ange symbols must be escaped (http://crbug.com/265449).
41 dumpRequest({"Content-Type": "application/binary"}, "%PATH%$PATH"); 41 dumpRequest({"Content-Type": "application/binary"}, "%PATH%$PATH");
42 dumpRequest({":host": "h", "version": "v"}); 42 dumpRequest({":host": "h", "version": "v"});
43 43
44 InspectorTest.completeTest(); 44 InspectorTest.completeTest();
45 } 45 }
46 46
47 </script> 47 </script>
48 </head> 48 </head>
49 <body onload="runTest()"> 49 <body onload="runTest()">
50 <p>Tests curl command generation</p> 50 <p>Tests curl command generation</p>
51 </body> 51 </body>
52 </html> 52 </html>
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