| // Copyright 2013 The Go Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style |
| // license that can be found in the LICENSE file. |
| // BenchmarkHTTPClientServer benchmarks both the HTTP client and the HTTP server, |
| func BenchmarkHTTPClientServer(b *testing.B) { |
| msg := []byte("Hello world.\n") |
| ts := httptest.NewServer(http.HandlerFunc(func(rw http.ResponseWriter, r *http.Request) { |
| defer tr.CloseIdleConnections() |
| for i := 0; i < b.N; i++ { |
| res, err := cl.Get(ts.URL) |
| all, err := ioutil.ReadAll(res.Body) |
| if !bytes.Equal(all, msg) { |
| b.Fatalf("Got body %q; want %q", all, msg) |