Browse Source

client: httpClient -> simpleHTTPClient

Brian Waldon 11 years ago
parent
commit
3f5e827e3c
2 changed files with 13 additions and 13 deletions
  1. 3 3
      client/http.go
  2. 10 10
      client/http_test.go

+ 3 - 3
client/http.go

@@ -39,7 +39,7 @@ var (
 func defaultHTTPClientFactory(tr CancelableTransport, ep url.URL) HTTPClient {
 func defaultHTTPClientFactory(tr CancelableTransport, ep url.URL) HTTPClient {
 	return &redirectFollowingHTTPClient{
 	return &redirectFollowingHTTPClient{
 		max: DefaultMaxRedirects,
 		max: DefaultMaxRedirects,
-		client: &httpClient{
+		client: &simpleHTTPClient{
 			transport: tr,
 			transport: tr,
 			endpoint:  ep,
 			endpoint:  ep,
 		},
 		},
@@ -181,12 +181,12 @@ type roundTripResponse struct {
 	err  error
 	err  error
 }
 }
 
 
-type httpClient struct {
+type simpleHTTPClient struct {
 	transport CancelableTransport
 	transport CancelableTransport
 	endpoint  url.URL
 	endpoint  url.URL
 }
 }
 
 
-func (c *httpClient) Do(ctx context.Context, act HTTPAction) (*http.Response, []byte, error) {
+func (c *simpleHTTPClient) Do(ctx context.Context, act HTTPAction) (*http.Response, []byte, error) {
 	req := act.HTTPRequest(c.endpoint)
 	req := act.HTTPRequest(c.endpoint)
 
 
 	rtchan := make(chan roundTripResponse, 1)
 	rtchan := make(chan roundTripResponse, 1)

+ 10 - 10
client/http_test.go

@@ -109,9 +109,9 @@ func (a *fakeAction) HTTPRequest(url.URL) *http.Request {
 	return &http.Request{}
 	return &http.Request{}
 }
 }
 
 
-func TestHTTPClientDoSuccess(t *testing.T) {
+func TestSimpleHTTPClientDoSuccess(t *testing.T) {
 	tr := newFakeTransport()
 	tr := newFakeTransport()
-	c := &httpClient{transport: tr}
+	c := &simpleHTTPClient{transport: tr}
 
 
 	tr.respchan <- &http.Response{
 	tr.respchan <- &http.Response{
 		StatusCode: http.StatusTeapot,
 		StatusCode: http.StatusTeapot,
@@ -134,9 +134,9 @@ func TestHTTPClientDoSuccess(t *testing.T) {
 	}
 	}
 }
 }
 
 
-func TestHTTPClientDoError(t *testing.T) {
+func TestSimpleHTTPClientDoError(t *testing.T) {
 	tr := newFakeTransport()
 	tr := newFakeTransport()
-	c := &httpClient{transport: tr}
+	c := &simpleHTTPClient{transport: tr}
 
 
 	tr.errchan <- errors.New("fixture")
 	tr.errchan <- errors.New("fixture")
 
 
@@ -146,9 +146,9 @@ func TestHTTPClientDoError(t *testing.T) {
 	}
 	}
 }
 }
 
 
-func TestHTTPClientDoCancelContext(t *testing.T) {
+func TestSimpleHTTPClientDoCancelContext(t *testing.T) {
 	tr := newFakeTransport()
 	tr := newFakeTransport()
-	c := &httpClient{transport: tr}
+	c := &simpleHTTPClient{transport: tr}
 
 
 	tr.startCancel <- struct{}{}
 	tr.startCancel <- struct{}{}
 	tr.finishCancel <- struct{}{}
 	tr.finishCancel <- struct{}{}
@@ -159,9 +159,9 @@ func TestHTTPClientDoCancelContext(t *testing.T) {
 	}
 	}
 }
 }
 
 
-func TestHTTPClientDoCancelContextWaitForRoundTrip(t *testing.T) {
+func TestSimpleHTTPClientDoCancelContextWaitForRoundTrip(t *testing.T) {
 	tr := newFakeTransport()
 	tr := newFakeTransport()
-	c := &httpClient{transport: tr}
+	c := &simpleHTTPClient{transport: tr}
 
 
 	donechan := make(chan struct{})
 	donechan := make(chan struct{})
 	ctx, cancel := context.WithCancel(context.Background())
 	ctx, cancel := context.WithCancel(context.Background())
@@ -175,7 +175,7 @@ func TestHTTPClientDoCancelContextWaitForRoundTrip(t *testing.T) {
 
 
 	select {
 	select {
 	case <-donechan:
 	case <-donechan:
-		t.Fatalf("httpClient.do should not have exited yet")
+		t.Fatalf("simpleHTTPClient.Do should not have exited yet")
 	default:
 	default:
 	}
 	}
 
 
@@ -186,7 +186,7 @@ func TestHTTPClientDoCancelContextWaitForRoundTrip(t *testing.T) {
 		//expected behavior
 		//expected behavior
 		return
 		return
 	case <-time.After(time.Second):
 	case <-time.After(time.Second):
-		t.Fatalf("httpClient.do did not exit within 1s")
+		t.Fatalf("simpleHTTPClient.Do did not exit within 1s")
 	}
 	}
 }
 }