LEFT | RIGHT |
1 // Copyright 2010 The Go Authors. All rights reserved. | 1 // Copyright 2010 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 // End-to-end serving tests | 5 // End-to-end serving tests |
6 | 6 |
7 package http_test | 7 package http_test |
8 | 8 |
9 import ( | 9 import ( |
10 "bufio" | 10 "bufio" |
(...skipping 2226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2237 res := ExportAppendTime(b[:0], t1) | 2237 res := ExportAppendTime(b[:0], t1) |
2238 t2, err := ParseTime(string(res)) | 2238 t2, err := ParseTime(string(res)) |
2239 if err != nil { | 2239 if err != nil { |
2240 t.Fatalf("Error parsing time: %s", err) | 2240 t.Fatalf("Error parsing time: %s", err) |
2241 } | 2241 } |
2242 if !t1.Equal(t2) { | 2242 if !t1.Equal(t2) { |
2243 t.Fatalf("Times differ; expected: %v, got %v (%s)", t1, t2, stri
ng(res)) | 2243 t.Fatalf("Times differ; expected: %v, got %v (%s)", t1, t2, stri
ng(res)) |
2244 } | 2244 } |
2245 } | 2245 } |
2246 | 2246 |
2247 func TestConnectionState(t *testing.T) { | 2247 func TestServerConnState(t *testing.T) { |
2248 defer afterTest(t) | 2248 defer afterTest(t) |
2249 handler := map[string]func(w ResponseWriter, r *Request){ | 2249 handler := map[string]func(w ResponseWriter, r *Request){ |
2250 "/": func(w ResponseWriter, r *Request) { | 2250 "/": func(w ResponseWriter, r *Request) { |
2251 fmt.Fprintf(w, "Hello.") | 2251 fmt.Fprintf(w, "Hello.") |
2252 }, | 2252 }, |
2253 "/close": func(w ResponseWriter, r *Request) { | 2253 "/close": func(w ResponseWriter, r *Request) { |
2254 w.Header().Set("Connection", "close") | 2254 w.Header().Set("Connection", "close") |
2255 fmt.Fprintf(w, "Hello.") | 2255 fmt.Fprintf(w, "Hello.") |
2256 }, | 2256 }, |
2257 "/hijack": func(w ResponseWriter, r *Request) { | 2257 "/hijack": func(w ResponseWriter, r *Request) { |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2292 mustGet(t, ts.URL+"/") | 2292 mustGet(t, ts.URL+"/") |
2293 mustGet(t, ts.URL+"/close") | 2293 mustGet(t, ts.URL+"/close") |
2294 | 2294 |
2295 mustGet(t, ts.URL+"/") | 2295 mustGet(t, ts.URL+"/") |
2296 mustGet(t, ts.URL+"/", "Connection", "close") | 2296 mustGet(t, ts.URL+"/", "Connection", "close") |
2297 | 2297 |
2298 mustGet(t, ts.URL+"/hijack") | 2298 mustGet(t, ts.URL+"/hijack") |
2299 | 2299 |
2300 want := []connIDAndState{ | 2300 want := []connIDAndState{ |
2301 {1, StateNew}, | 2301 {1, StateNew}, |
2302 » » {1, StateReading}, | 2302 » » {1, StateActive}, |
2303 {1, StateIdle}, | 2303 {1, StateIdle}, |
2304 » » {1, StateReading}, | 2304 » » {1, StateActive}, |
2305 {1, StateClosed}, | 2305 {1, StateClosed}, |
2306 | 2306 |
2307 {2, StateNew}, | 2307 {2, StateNew}, |
2308 » » {2, StateReading}, | 2308 » » {2, StateActive}, |
2309 {2, StateIdle}, | 2309 {2, StateIdle}, |
2310 » » {2, StateReading}, | 2310 » » {2, StateActive}, |
2311 {2, StateClosed}, | 2311 {2, StateClosed}, |
2312 | 2312 |
2313 {3, StateNew}, | 2313 {3, StateNew}, |
2314 » » {3, StateReading}, | 2314 » » {3, StateActive}, |
2315 {3, StateHijacked}, | 2315 {3, StateHijacked}, |
2316 } | 2316 } |
2317 logString := func(l []connIDAndState) string { | 2317 logString := func(l []connIDAndState) string { |
2318 var b bytes.Buffer | 2318 var b bytes.Buffer |
2319 for _, cs := range l { | 2319 for _, cs := range l { |
2320 fmt.Fprintf(&b, "[%d %s] ", cs.connID, cs.state) | 2320 fmt.Fprintf(&b, "[%d %s] ", cs.connID, cs.state) |
2321 } | 2321 } |
2322 return b.String() | 2322 return b.String() |
2323 } | 2323 } |
2324 | 2324 |
(...skipping 342 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2667 closec: make(chan bool, 1), | 2667 closec: make(chan bool, 1), |
2668 } | 2668 } |
2669 ln := &oneConnListener{conn: conn} | 2669 ln := &oneConnListener{conn: conn} |
2670 for i := 0; i < b.N; i++ { | 2670 for i := 0; i < b.N; i++ { |
2671 conn.Reader = bytes.NewReader(req) | 2671 conn.Reader = bytes.NewReader(req) |
2672 ln.conn = conn | 2672 ln.conn = conn |
2673 Serve(ln, h) | 2673 Serve(ln, h) |
2674 <-conn.closec | 2674 <-conn.closec |
2675 } | 2675 } |
2676 } | 2676 } |
LEFT | RIGHT |