Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / inspector / curl-command.html
1 <html>
2 <head>
3 <script src="../http/tests/inspector/inspector-test.js"></script>
4 <script src="../http/tests/inspector/network-test.js"></script>
5 <script type="text/javascript">
6
7 var test = function()
8 {
9     var logView = WebInspector.panels.network._networkLogView;
10
11     function newRequest(headers, data, opt_url)
12     {
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";
15         var headerList = [];
16         if (headers) {
17             for (var i in headers)
18                 headerList.push({name: i, value: headers[i]});
19         }
20         if (data) {
21             headerList.push({name: "Content-Length", value: data.length});
22             request.requestFormData = data;
23         }
24         request.setRequestHeaders(headerList);
25         return request;
26     }
27
28     function dumpRequest(headers, data, opt_url)
29     {
30         InspectorTest.addResult(logView._generateCurlCommand(newRequest(headers, data, opt_url)));
31     }
32
33     dumpRequest({})
34     dumpRequest({}, "123");
35     dumpRequest({"Content-Type": "application/x-www-form-urlencoded"}, "1&b");
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
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");
40     dumpRequest({}, "", "http://labs.ft.com/?querystring=[]{}");  // Character range symbols must be escaped (http://crbug.com/265449).
41     dumpRequest({"Content-Type": "application/binary"}, "%PATH%$PATH");
42     dumpRequest({":host": "h", "version": "v"});
43
44     InspectorTest.completeTest();
45 }
46
47 </script>
48 </head>
49 <body onload="runTest()">
50 <p>Tests curl command generation</p>
51 </body>
52 </html>