client: fix TestPingWithError
This test was added in 27ef09a46f
, which changed
the Ping handling to ignore internal server errors. That case is tested in
TestPingFail, which verifies that we accept the Ping response if a 500
status code was received.
The TestPingWithError test was added to verify behavior if a protocol
(connection) error occurred; however the mock-client returned both a
response, and an error; the error returned would only happen if a connection
error occurred, which means that the server would not provide a reply.
Running the test also shows that returning a response is unexpected, and
ignored:
=== RUN TestPingWithError
2024/02/23 14:16:49 RoundTripper returned a response & error; ignoring response
2024/02/23 14:16:49 RoundTripper returned a response & error; ignoring response
--- PASS: TestPingWithError (0.00s)
PASS
This patch updates the test to remove the response.
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
parent
24fe934a7b
commit
349abc64ed
1 changed files with 2 additions and 8 deletions
|
@ -53,18 +53,12 @@ func TestPingFail(t *testing.T) {
|
||||||
func TestPingWithError(t *testing.T) {
|
func TestPingWithError(t *testing.T) {
|
||||||
client := &Client{
|
client := &Client{
|
||||||
client: newMockClient(func(req *http.Request) (*http.Response, error) {
|
client: newMockClient(func(req *http.Request) (*http.Response, error) {
|
||||||
resp := &http.Response{StatusCode: http.StatusInternalServerError}
|
return nil, errors.New("some connection error")
|
||||||
resp.Header = http.Header{}
|
|
||||||
resp.Header.Set("API-Version", "awesome")
|
|
||||||
resp.Header.Set("Docker-Experimental", "true")
|
|
||||||
resp.Header.Set("Swarm", "active/manager")
|
|
||||||
resp.Body = io.NopCloser(strings.NewReader("some error with the server"))
|
|
||||||
return resp, errors.New("some error")
|
|
||||||
}),
|
}),
|
||||||
}
|
}
|
||||||
|
|
||||||
ping, err := client.Ping(context.Background())
|
ping, err := client.Ping(context.Background())
|
||||||
assert.Check(t, is.ErrorContains(err, "some error"))
|
assert.Check(t, is.ErrorContains(err, "some connection error"))
|
||||||
assert.Check(t, is.Equal(false, ping.Experimental))
|
assert.Check(t, is.Equal(false, ping.Experimental))
|
||||||
assert.Check(t, is.Equal("", ping.APIVersion))
|
assert.Check(t, is.Equal("", ping.APIVersion))
|
||||||
var si *swarm.Status
|
var si *swarm.Status
|
||||||
|
|
Loading…
Reference in a new issue