gitee.com/zhaochuninhefei/gmgo@v0.0.31-0.20240209061119-069254a02979/gmhttp/httptest/server.go (about) 1 // Copyright 2011 The Go Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style 3 // license that can be found in the LICENSE file. 4 5 // Implementation of Server 6 7 package httptest 8 9 import ( 10 "flag" 11 "fmt" 12 "log" 13 "net" 14 "os" 15 "strings" 16 "sync" 17 "time" 18 19 http "gitee.com/zhaochuninhefei/gmgo/gmhttp" 20 "gitee.com/zhaochuninhefei/gmgo/gmhttp/internal/testcert" 21 tls "gitee.com/zhaochuninhefei/gmgo/gmtls" 22 "gitee.com/zhaochuninhefei/gmgo/x509" 23 ) 24 25 // A Server is an HTTP server listening on a system-chosen port on the 26 // local loopback interface, for use in end-to-end HTTP tests. 27 type Server struct { 28 URL string // base URL of form http://ipaddr:port with no trailing slash 29 Listener net.Listener 30 31 // EnableHTTP2 controls whether HTTP/2 is enabled 32 // on the server. It must be set between calling 33 // NewUnstartedServer and calling Server.StartTLS. 34 EnableHTTP2 bool 35 36 // TLS is the optional TLS configuration, populated with a new config 37 // after TLS is started. If set on an unstarted server before StartTLS 38 // is called, existing fields are copied into the new config. 39 TLS *tls.Config 40 41 // Config may be changed after calling NewUnstartedServer and 42 // before Start or StartTLS. 43 Config *http.Server 44 45 // certificate is a parsed version of the TLS config certificate, if present. 46 certificate *x509.Certificate 47 48 // wg counts the number of outstanding HTTP requests on this server. 49 // Close blocks until all requests are finished. 50 wg sync.WaitGroup 51 52 mu sync.Mutex // guards closed and conns 53 closed bool 54 conns map[net.Conn]http.ConnState // except terminal states 55 56 // client is configured for use with the server. 57 // Its transport is automatically closed when Close is called. 58 client *http.Client 59 } 60 61 func newLocalListener() net.Listener { 62 if serveFlag != "" { 63 l, err := net.Listen("tcp", serveFlag) 64 if err != nil { 65 panic(fmt.Sprintf("httptest: failed to listen on %v: %v", serveFlag, err)) 66 } 67 return l 68 } 69 l, err := net.Listen("tcp", "127.0.0.1:0") 70 if err != nil { 71 if l, err = net.Listen("tcp6", "[::1]:0"); err != nil { 72 panic(fmt.Sprintf("httptest: failed to listen on a port: %v", err)) 73 } 74 } 75 return l 76 } 77 78 // When debugging a particular http server-based test, 79 // this flag lets you run 80 // go test -run=BrokenTest -httptest.serve=127.0.0.1:8000 81 // to start the broken server so you can interact with it manually. 82 // We only register this flag if it looks like the caller knows about it 83 // and is trying to use it as we don't want to pollute flags and this 84 // isn't really part of our API. Don't depend on this. 85 var serveFlag string 86 87 func init() { 88 if strSliceContainsPrefix(os.Args, "-httptest.serve=") || strSliceContainsPrefix(os.Args, "--httptest.serve=") { 89 flag.StringVar(&serveFlag, "httptest.serve", "", "if non-empty, httptest.NewServer serves on this address and blocks.") 90 } 91 } 92 93 func strSliceContainsPrefix(v []string, pre string) bool { 94 for _, s := range v { 95 if strings.HasPrefix(s, pre) { 96 return true 97 } 98 } 99 return false 100 } 101 102 // NewServer starts and returns a new Server. 103 // The caller should call Close when finished, to shut it down. 104 func NewServer(handler http.Handler) *Server { 105 ts := NewUnstartedServer(handler) 106 ts.Start() 107 return ts 108 } 109 110 // NewUnstartedServer returns a new Server but doesn't start it. 111 // 112 // After changing its configuration, the caller should call Start or 113 // StartTLS. 114 // 115 // The caller should call Close when finished, to shut it down. 116 func NewUnstartedServer(handler http.Handler) *Server { 117 return &Server{ 118 Listener: newLocalListener(), 119 Config: &http.Server{Handler: handler}, 120 } 121 } 122 123 // Start starts a server from NewUnstartedServer. 124 func (s *Server) Start() { 125 if s.URL != "" { 126 panic("Server already started") 127 } 128 if s.client == nil { 129 s.client = &http.Client{Transport: &http.Transport{}} 130 } 131 //goland:noinspection HttpUrlsUsage 132 s.URL = "http://" + s.Listener.Addr().String() 133 s.wrap() 134 s.goServe() 135 if serveFlag != "" { 136 _, _ = fmt.Fprintln(os.Stderr, "httptest: serving on", s.URL) 137 select {} 138 } 139 } 140 141 // StartTLS starts TLS on a server from NewUnstartedServer. 142 func (s *Server) StartTLS() { 143 if s.URL != "" { 144 panic("Server already started") 145 } 146 if s.client == nil { 147 s.client = &http.Client{Transport: &http.Transport{}} 148 } 149 cert, err := tls.X509KeyPair(testcert.LocalhostCert, testcert.LocalhostKey) 150 if err != nil { 151 panic(fmt.Sprintf("httptest: NewTLSServer: %v", err)) 152 } 153 154 existingConfig := s.TLS 155 if existingConfig != nil { 156 s.TLS = existingConfig.Clone() 157 } else { 158 s.TLS = new(tls.Config) 159 } 160 if s.TLS.NextProtos == nil { 161 nextProtos := []string{"http/1.1"} 162 if s.EnableHTTP2 { 163 nextProtos = []string{"h2"} 164 } 165 s.TLS.NextProtos = nextProtos 166 } 167 if len(s.TLS.Certificates) == 0 { 168 s.TLS.Certificates = []tls.Certificate{cert} 169 } 170 s.certificate, err = x509.ParseCertificate(s.TLS.Certificates[0].Certificate[0]) 171 if err != nil { 172 panic(fmt.Sprintf("httptest: NewTLSServer: %v", err)) 173 } 174 certpool := x509.NewCertPool() 175 certpool.AddCert(s.certificate) 176 s.client.Transport = &http.Transport{ 177 TLSClientConfig: &tls.Config{ 178 RootCAs: certpool, 179 }, 180 ForceAttemptHTTP2: s.EnableHTTP2, 181 } 182 s.Listener = tls.NewListener(s.Listener, s.TLS) 183 s.URL = "https://" + s.Listener.Addr().String() 184 s.wrap() 185 s.goServe() 186 } 187 188 // NewTLSServer starts and returns a new Server using TLS. 189 // The caller should call Close when finished, to shut it down. 190 func NewTLSServer(handler http.Handler) *Server { 191 ts := NewUnstartedServer(handler) 192 ts.StartTLS() 193 return ts 194 } 195 196 type closeIdleTransport interface { 197 CloseIdleConnections() 198 } 199 200 // Close shuts down the server and blocks until all outstanding 201 // requests on this server have completed. 202 func (s *Server) Close() { 203 s.mu.Lock() 204 if !s.closed { 205 s.closed = true 206 _ = s.Listener.Close() 207 s.Config.SetKeepAlivesEnabled(false) 208 for c, st := range s.conns { 209 // Force-close any idle connections (those between 210 // requests) and new connections (those which connected 211 // but never sent a request). StateNew connections are 212 // super rare and have only been seen (in 213 // previously-flaky tests) in the case of 214 // socket-late-binding races from the http Client 215 // dialing this server and then getting an idle 216 // connection before the dial completed. There is thus 217 // a connected connection in StateNew with no 218 // associated Request. We only close StateIdle and 219 // StateNew because they're not doing anything. It's 220 // possible StateNew is about to do something in a few 221 // milliseconds, but a previous CL to check again in a 222 // few milliseconds wasn't liked (early versions of 223 // https://golang.org/cl/15151) so now we just 224 // forcefully close StateNew. The docs for Server.Close say 225 // we wait for "outstanding requests", so we don't close things 226 // in StateActive. 227 if st == http.StateIdle || st == http.StateNew { 228 s.closeConn(c) 229 } 230 } 231 // If this server doesn't shut down in 5 seconds, tell the user why. 232 t := time.AfterFunc(5*time.Second, s.logCloseHangDebugInfo) 233 defer t.Stop() 234 } 235 s.mu.Unlock() 236 237 // Not part of httptest.Server's correctness, but assume most 238 // users of httptest.Server will be using the standard 239 // transport, so help them out and close any idle connections for them. 240 if t, ok := http.DefaultTransport.(closeIdleTransport); ok { 241 t.CloseIdleConnections() 242 } 243 244 // Also close the client idle connections. 245 if s.client != nil { 246 if t, ok := s.client.Transport.(closeIdleTransport); ok { 247 t.CloseIdleConnections() 248 } 249 } 250 251 s.wg.Wait() 252 } 253 254 func (s *Server) logCloseHangDebugInfo() { 255 s.mu.Lock() 256 defer s.mu.Unlock() 257 var buf strings.Builder 258 buf.WriteString("httptest.Server blocked in Close after 5 seconds, waiting for connections:\n") 259 for c, st := range s.conns { 260 _, _ = fmt.Fprintf(&buf, " %T %p %v in state %v\n", c, c, c.RemoteAddr(), st) 261 } 262 log.Print(buf.String()) 263 } 264 265 // CloseClientConnections closes any open HTTP connections to the test Server. 266 func (s *Server) CloseClientConnections() { 267 s.mu.Lock() 268 nconn := len(s.conns) 269 ch := make(chan struct{}, nconn) 270 for c := range s.conns { 271 go s.closeConnChan(c, ch) 272 } 273 s.mu.Unlock() 274 275 // Wait for outstanding closes to finish. 276 // 277 // Out of paranoia for making a late change in Go 1.6, we 278 // bound how long this can wait, since golang.org/issue/14291 279 // isn't fully understood yet. At least this should only be used 280 // in tests. 281 timer := time.NewTimer(5 * time.Second) 282 defer timer.Stop() 283 for i := 0; i < nconn; i++ { 284 select { 285 case <-ch: 286 case <-timer.C: 287 // Too slow. Give up. 288 return 289 } 290 } 291 } 292 293 // Certificate returns the certificate used by the server, or nil if 294 // the server doesn't use TLS. 295 func (s *Server) Certificate() *x509.Certificate { 296 return s.certificate 297 } 298 299 // Client returns an HTTP client configured for making requests to the server. 300 // It is configured to trust the server's TLS test certificate and will 301 // close its idle connections on Server.Close. 302 func (s *Server) Client() *http.Client { 303 return s.client 304 } 305 306 func (s *Server) goServe() { 307 s.wg.Add(1) 308 go func() { 309 defer s.wg.Done() 310 _ = s.Config.Serve(s.Listener) 311 }() 312 } 313 314 // wrap installs the connection state-tracking hook to know which 315 // connections are idle. 316 func (s *Server) wrap() { 317 oldHook := s.Config.ConnState 318 s.Config.ConnState = func(c net.Conn, cs http.ConnState) { 319 s.mu.Lock() 320 defer s.mu.Unlock() 321 322 // Keep Close from returning until the user's ConnState hook 323 // (if any) finishes. Without this, the call to forgetConn 324 // below might send the count to 0 before we run the hook. 325 s.wg.Add(1) 326 defer s.wg.Done() 327 328 switch cs { 329 case http.StateNew: 330 s.wg.Add(1) 331 if _, exists := s.conns[c]; exists { 332 panic("invalid state transition") 333 } 334 if s.conns == nil { 335 s.conns = make(map[net.Conn]http.ConnState) 336 } 337 s.conns[c] = cs 338 if s.closed { 339 // Probably just a socket-late-binding dial from 340 // the default transport that lost the race (and 341 // thus this connection is now idle and will 342 // never be used). 343 s.closeConn(c) 344 } 345 case http.StateActive: 346 if oldState, ok := s.conns[c]; ok { 347 if oldState != http.StateNew && oldState != http.StateIdle { 348 panic("invalid state transition") 349 } 350 s.conns[c] = cs 351 } 352 case http.StateIdle: 353 if oldState, ok := s.conns[c]; ok { 354 if oldState != http.StateActive { 355 panic("invalid state transition") 356 } 357 s.conns[c] = cs 358 } 359 if s.closed { 360 s.closeConn(c) 361 } 362 case http.StateHijacked, http.StateClosed: 363 s.forgetConn(c) 364 } 365 if oldHook != nil { 366 oldHook(c, cs) 367 } 368 } 369 } 370 371 // closeConn closes c. 372 // s.mu must be held. 373 func (s *Server) closeConn(c net.Conn) { s.closeConnChan(c, nil) } 374 375 // closeConnChan is like closeConn, but takes an optional channel to receive a value 376 // when the goroutine closing c is done. 377 func (s *Server) closeConnChan(c net.Conn, done chan<- struct{}) { 378 _ = c.Close() 379 if done != nil { 380 done <- struct{}{} 381 } 382 } 383 384 // forgetConn removes c from the set of tracked conns and decrements it from the 385 // waitgroup, unless it was previously removed. 386 // s.mu must be held. 387 func (s *Server) forgetConn(c net.Conn) { 388 if _, ok := s.conns[c]; ok { 389 delete(s.conns, c) 390 s.wg.Done() 391 } 392 }