Review feedback: limit number of bytes read under error.

This commit is contained in:
Tom Wilkie 2017-06-01 11:21:48 +01:00
parent 46abe8cbf2
commit 24a113bb09
2 changed files with 11 additions and 5 deletions

View File

@ -17,6 +17,7 @@ import (
"bufio" "bufio"
"bytes" "bytes"
"fmt" "fmt"
"io"
"io/ioutil" "io/ioutil"
"net/http" "net/http"
"time" "time"
@ -32,6 +33,8 @@ import (
"github.com/prometheus/prometheus/util/httputil" "github.com/prometheus/prometheus/util/httputil"
) )
const maxErrMsgLen = 256
// Client allows reading and writing from/to a remote HTTP endpoint. // Client allows reading and writing from/to a remote HTTP endpoint.
type Client struct { type Client struct {
index int // Used to differentiate metrics. index int // Used to differentiate metrics.
@ -118,7 +121,7 @@ func (c *Client) Store(samples model.Samples) error {
defer httpResp.Body.Close() defer httpResp.Body.Close()
if httpResp.StatusCode/100 != 2 { if httpResp.StatusCode/100 != 2 {
scanner := bufio.NewScanner(httpResp.Body) scanner := bufio.NewScanner(io.LimitReader(httpResp.Body, maxErrMsgLen))
line := "" line := ""
if scanner.Scan() { if scanner.Scan() {
line = scanner.Text() line = scanner.Text()

View File

@ -19,6 +19,7 @@ import (
"net/http/httptest" "net/http/httptest"
"net/url" "net/url"
"reflect" "reflect"
"strings"
"testing" "testing"
"time" "time"
@ -26,6 +27,8 @@ import (
"github.com/prometheus/prometheus/config" "github.com/prometheus/prometheus/config"
) )
var longErrMessage = strings.Repeat("error message", maxErrMsgLen)
func TestStoreHTTPErrorHandling(t *testing.T) { func TestStoreHTTPErrorHandling(t *testing.T) {
tests := []struct { tests := []struct {
code int code int
@ -37,22 +40,22 @@ func TestStoreHTTPErrorHandling(t *testing.T) {
}, },
{ {
code: 300, code: 300,
err: fmt.Errorf("server returned HTTP status 300 Multiple Choices: test error"), err: fmt.Errorf("server returned HTTP status 300 Multiple Choices: " + longErrMessage[:maxErrMsgLen]),
}, },
{ {
code: 404, code: 404,
err: fmt.Errorf("server returned HTTP status 404 Not Found: test error"), err: fmt.Errorf("server returned HTTP status 404 Not Found: " + longErrMessage[:maxErrMsgLen]),
}, },
{ {
code: 500, code: 500,
err: recoverableError{fmt.Errorf("server returned HTTP status 500 Internal Server Error: test error")}, err: recoverableError{fmt.Errorf("server returned HTTP status 500 Internal Server Error: " + longErrMessage[:maxErrMsgLen])},
}, },
} }
for i, test := range tests { for i, test := range tests {
server := httptest.NewServer( server := httptest.NewServer(
http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
http.Error(w, "test error", test.code) http.Error(w, longErrMessage, test.code)
}), }),
) )