Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(180)

Delta Between Two Patch Sets: src/pkg/net/http/serve_test.go

Issue 69260044: code review 69260044: net/http: add optional Server.ConnState callback (Closed)
Left Patch Set: diff -r 1424452d7eb5 https://go.googlecode.com/hg/ Created 11 years, 1 month ago
Right Patch Set: diff -r ffcbc9233426 https://go.googlecode.com/hg/ Created 11 years, 1 month ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « no previous file | src/pkg/net/http/server.go » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
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
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) {
2258 c, _, _ := w.(Hijacker).Hijack() 2258 c, _, _ := w.(Hijacker).Hijack()
2259 c.Write([]byte("HTTP/1.0 200 OK\r\nConnection: close\r\n \r\nHello.")) 2259 c.Write([]byte("HTTP/1.0 200 OK\r\nConnection: close\r\n \r\nHello."))
2260 c.Close() 2260 c.Close()
2261 }, 2261 },
2262 } 2262 }
2263 ts := httptest.NewUnstartedServer(HandlerFunc(func(w ResponseWriter, r * Request) { 2263 ts := httptest.NewUnstartedServer(HandlerFunc(func(w ResponseWriter, r * Request) {
2264 handler[r.URL.Path](w, r) 2264 handler[r.URL.Path](w, r)
2265 })) 2265 }))
2266 defer ts.Close() 2266 defer ts.Close()
2267 2267
2268 type connIDAndState struct { 2268 type connIDAndState struct {
2269 connID int 2269 connID int
2270 state ConnState 2270 state ConnState
2271 } 2271 }
2272 var mu sync.Mutex // guard stateLog and connID 2272 var mu sync.Mutex // guard stateLog and connID
2273 var stateLog []connIDAndState 2273 var stateLog []connIDAndState
2274 var connID = map[net.Conn]int{} 2274 var connID = map[net.Conn]int{}
2275 2275
2276 » ts.Config.ClientConnState = func(c net.Conn, state ConnState) { 2276 » ts.Config.ConnState = func(c net.Conn, state ConnState) {
2277 if c == nil { 2277 if c == nil {
2278 t.Error("nil conn seen in state %s", state) 2278 t.Error("nil conn seen in state %s", state)
2279 return 2279 return
2280 } 2280 }
2281 mu.Lock() 2281 mu.Lock()
2282 defer mu.Unlock() 2282 defer mu.Unlock()
2283 id, ok := connID[c] 2283 id, ok := connID[c]
2284 if !ok { 2284 if !ok {
2285 id = len(connID) + 1 2285 id = len(connID) + 1
2286 connID[c] = id 2286 connID[c] = id
2287 } 2287 }
2288 stateLog = append(stateLog, connIDAndState{id, state}) 2288 stateLog = append(stateLog, connIDAndState{id, state})
2289 } 2289 }
2290 ts.Start() 2290 ts.Start()
2291 2291
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
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 }
LEFTRIGHT

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b