Skip to content

Commit 9a0c462

Browse files
Fix expected http status codes for different auth methods in token command (#412)
1 parent 1291873 commit 9a0c462

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

cmd/kubectl_token.go

+5-5
Original file line numberDiff line numberDiff line change
@@ -390,18 +390,18 @@ func basicAuth(client *http.Client, input *LoginInput) (managementClient.Token,
390390
}
391391

392392
resp, respBody, err := doRequest(client, req)
393-
if err == nil && resp.StatusCode != http.StatusOK {
393+
if err == nil && resp.StatusCode != http.StatusCreated {
394394
err = fmt.Errorf("unexpected http status code %d", resp.StatusCode)
395395

396396
apiError := map[string]interface{}{}
397397
if rerr := json.Unmarshal(respBody, &apiError); rerr == nil {
398398
if responseType := apiError["type"]; responseType == "error" {
399-
err = fmt.Errorf("error logging in: code: [%v] message:[%v]", apiError["code"], apiError["message"])
399+
err = fmt.Errorf("error logging user in: code: [%v] message:[%v]", apiError["code"], apiError["message"])
400400
}
401401
}
402402
}
403403
if err != nil {
404-
return token, err
404+
return token, fmt.Errorf("error logging user in: %w", err)
405405
}
406406

407407
err = json.Unmarshal(respBody, &token)
@@ -495,7 +495,7 @@ loop:
495495

496496
// Delete the auth token.
497497
resp, _, err := doRequest(client, deleteReq)
498-
if err == nil && resp.StatusCode != http.StatusOK && resp.StatusCode != http.StatusNotFound {
498+
if err == nil && resp.StatusCode != http.StatusNoContent && resp.StatusCode != http.StatusNotFound {
499499
err = fmt.Errorf("unexpected http status code %d", resp.StatusCode)
500500
}
501501
if err != nil {
@@ -534,7 +534,7 @@ func getAuthProviders(client *http.Client, server string) ([]TypedProvider, erro
534534
err = fmt.Errorf("unexpected http status code %d", resp.StatusCode)
535535
}
536536
if err != nil {
537-
return nil, err
537+
return nil, fmt.Errorf("error listing auth providers: %w", err)
538538
}
539539

540540
if !gjson.ValidBytes(respBody) {

cmd/kubectl_token_oauth.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ func rancherLogin(client *http.Client, input *LoginInput, provider TypedProvider
9191
}
9292

9393
resp, respBody, err := doRequest(client, req)
94-
if err == nil && resp.StatusCode != http.StatusOK {
94+
if err == nil && resp.StatusCode != http.StatusCreated {
9595
err = fmt.Errorf("unexpected http status code %d", resp.StatusCode)
9696
}
9797
if err != nil {

0 commit comments

Comments
 (0)