LEFT | RIGHT |
(no file at all) | |
1 // Copyright 2009 The Go Authors. All rights reserved. | 1 // Copyright 2009 The Go Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style | 2 // Use of this source code is governed by a BSD-style |
3 // license that can be found in the LICENSE file. | 3 // license that can be found in the LICENSE file. |
4 | 4 |
5 package http | 5 package http |
6 | 6 |
7 import ( | 7 import ( |
8 "bytes" | 8 "bytes" |
9 "reflect" | 9 "reflect" |
10 "regexp" | 10 "regexp" |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
67 req := &Request{Method: "GET"} | 67 req := &Request{Method: "GET"} |
68 req.URL, _ = ParseURL("http://www.google.com/search?q=foo&q=bar") | 68 req.URL, _ = ParseURL("http://www.google.com/search?q=foo&q=bar") |
69 if q := req.FormValue("q"); q != "foo" { | 69 if q := req.FormValue("q"); q != "foo" { |
70 t.Errorf(`req.FormValue("q") = %q, want "foo"`, q) | 70 t.Errorf(`req.FormValue("q") = %q, want "foo"`, q) |
71 } | 71 } |
72 } | 72 } |
73 | 73 |
74 func TestPostQuery(t *testing.T) { | 74 func TestPostQuery(t *testing.T) { |
75 req := &Request{Method: "POST"} | 75 req := &Request{Method: "POST"} |
76 req.URL, _ = ParseURL("http://www.google.com/search?q=foo&q=bar&both=x") | 76 req.URL, _ = ParseURL("http://www.google.com/search?q=foo&q=bar&both=x") |
77 » req.Header = map[string]string{"Content-Type": "application/x-www-form-u
rlencoded; boo!"} | 77 » req.Header = Header{ |
| 78 » » "Content-Type": {"application/x-www-form-urlencoded; boo!"}, |
| 79 » } |
78 req.Body = nopCloser{strings.NewReader("z=post&both=y")} | 80 req.Body = nopCloser{strings.NewReader("z=post&both=y")} |
79 if q := req.FormValue("q"); q != "foo" { | 81 if q := req.FormValue("q"); q != "foo" { |
80 t.Errorf(`req.FormValue("q") = %q, want "foo"`, q) | 82 t.Errorf(`req.FormValue("q") = %q, want "foo"`, q) |
81 } | 83 } |
82 if z := req.FormValue("z"); z != "post" { | 84 if z := req.FormValue("z"); z != "post" { |
83 t.Errorf(`req.FormValue("z") = %q, want "post"`, z) | 85 t.Errorf(`req.FormValue("z") = %q, want "post"`, z) |
84 } | 86 } |
85 if both := req.Form["both"]; !reflect.DeepEqual(both, []string{"x", "y"}
) { | 87 if both := req.Form["both"]; !reflect.DeepEqual(both, []string{"x", "y"}
) { |
86 t.Errorf(`req.FormValue("both") = %q, want ["x", "y"]`, both) | 88 t.Errorf(`req.FormValue("both") = %q, want ["x", "y"]`, both) |
87 } | 89 } |
88 } | 90 } |
89 | 91 |
90 type stringMap map[string]string | 92 type stringMap map[string][]string |
91 type parseContentTypeTest struct { | 93 type parseContentTypeTest struct { |
92 contentType stringMap | 94 contentType stringMap |
93 error bool | 95 error bool |
94 } | 96 } |
95 | 97 |
96 var parseContentTypeTests = []parseContentTypeTest{ | 98 var parseContentTypeTests = []parseContentTypeTest{ |
97 » {contentType: stringMap{"Content-Type": "text/plain"}}, | 99 » {contentType: stringMap{"Content-Type": {"text/plain"}}}, |
98 » {contentType: stringMap{"Content-Type": ""}}, | 100 » {contentType: stringMap{}}, // Non-existent keys are not placed. The val
ue nil is illegal. |
99 » {contentType: stringMap{"Content-Type": "text/plain; boundary="}}, | 101 » {contentType: stringMap{"Content-Type": {"text/plain; boundary="}}}, |
100 { | 102 { |
101 » » contentType: stringMap{"Content-Type": "application/unknown"}, | 103 » » contentType: stringMap{"Content-Type": {"application/unknown"}}, |
102 error: true, | 104 error: true, |
103 }, | 105 }, |
104 } | 106 } |
105 | 107 |
106 func TestPostContentTypeParsing(t *testing.T) { | 108 func TestPostContentTypeParsing(t *testing.T) { |
107 for i, test := range parseContentTypeTests { | 109 for i, test := range parseContentTypeTests { |
108 req := &Request{ | 110 req := &Request{ |
109 Method: "POST", | 111 Method: "POST", |
110 » » » Header: test.contentType, | 112 » » » Header: Header(test.contentType), |
111 Body: nopCloser{bytes.NewBufferString("body")}, | 113 Body: nopCloser{bytes.NewBufferString("body")}, |
112 } | 114 } |
113 err := req.ParseForm() | 115 err := req.ParseForm() |
114 if !test.error && err != nil { | 116 if !test.error && err != nil { |
115 t.Errorf("test %d: Unexpected error: %v", i, err) | 117 t.Errorf("test %d: Unexpected error: %v", i, err) |
116 } | 118 } |
117 if test.error && err == nil { | 119 if test.error && err == nil { |
118 t.Errorf("test %d should have returned error", i) | 120 t.Errorf("test %d should have returned error", i) |
119 } | 121 } |
120 } | 122 } |
121 } | 123 } |
122 | 124 |
123 func TestMultipartReader(t *testing.T) { | 125 func TestMultipartReader(t *testing.T) { |
124 req := &Request{ | 126 req := &Request{ |
125 Method: "POST", | 127 Method: "POST", |
126 » » Header: stringMap{"Content-Type": `multipart/form-data; boundary
="foo123"`}, | 128 » » Header: Header{"Content-Type": {`multipart/form-data; boundary="
foo123"`}}, |
127 Body: nopCloser{new(bytes.Buffer)}, | 129 Body: nopCloser{new(bytes.Buffer)}, |
128 } | 130 } |
129 multipart, err := req.MultipartReader() | 131 multipart, err := req.MultipartReader() |
130 if multipart == nil { | 132 if multipart == nil { |
131 t.Errorf("expected multipart; error: %v", err) | 133 t.Errorf("expected multipart; error: %v", err) |
132 } | 134 } |
133 | 135 |
134 » req.Header = stringMap{"Content-Type": "text/plain"} | 136 » req.Header = Header{"Content-Type": {"text/plain"}} |
135 multipart, err = req.MultipartReader() | 137 multipart, err = req.MultipartReader() |
136 if multipart != nil { | 138 if multipart != nil { |
137 t.Errorf("unexpected multipart for text/plain") | 139 t.Errorf("unexpected multipart for text/plain") |
138 } | 140 } |
139 } | 141 } |
140 | 142 |
141 func TestRedirect(t *testing.T) { | 143 func TestRedirect(t *testing.T) { |
142 const ( | 144 const ( |
143 start = "http://google.com/" | 145 start = "http://google.com/" |
144 endRe = "^http://www\\.google\\.[a-z.]+/$" | 146 endRe = "^http://www\\.google\\.[a-z.]+/$" |
145 ) | 147 ) |
146 var end = regexp.MustCompile(endRe) | 148 var end = regexp.MustCompile(endRe) |
147 r, url, err := Get(start) | 149 r, url, err := Get(start) |
148 if err != nil { | 150 if err != nil { |
149 t.Fatal(err) | 151 t.Fatal(err) |
150 } | 152 } |
151 r.Body.Close() | 153 r.Body.Close() |
152 if r.StatusCode != 200 || !end.MatchString(url) { | 154 if r.StatusCode != 200 || !end.MatchString(url) { |
153 t.Fatalf("Get(%s) got status %d at %q, want 200 matching %q", st
art, r.StatusCode, url, endRe) | 155 t.Fatalf("Get(%s) got status %d at %q, want 200 matching %q", st
art, r.StatusCode, url, endRe) |
154 } | 156 } |
155 } | 157 } |
LEFT | RIGHT |