-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add error logical.ErrUpstreamRateLimited and return 502 from RespondC…
…ommonError
- Loading branch information
Showing
3 changed files
with
89 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
package logical | ||
|
||
import ( | ||
"strings" | ||
"testing" | ||
) | ||
|
||
func TestResponseUtil_RespondErrorCommon_basic(t *testing.T) { | ||
testCases := []struct { | ||
title string | ||
req *Request | ||
resp *Response | ||
respErr error | ||
expectedStatus int | ||
expectedErr error | ||
}{ | ||
{ | ||
title: "Throttled, no error", | ||
respErr: ErrUpstreamRateLimited, | ||
resp: &Response{}, | ||
expectedStatus: 502, | ||
}, | ||
{ | ||
title: "Throttled, with error", | ||
respErr: ErrUpstreamRateLimited, | ||
resp: &Response{ | ||
Data: map[string]interface{}{ | ||
"error": "rate limited", | ||
}, | ||
}, | ||
expectedStatus: 502, | ||
}, | ||
{ | ||
title: "Read not found", | ||
req: &Request{ | ||
Operation: ReadOperation, | ||
}, | ||
respErr: nil, | ||
expectedStatus: 404, | ||
}, | ||
{ | ||
title: "List with response and no keys", | ||
req: &Request{ | ||
Operation: ListOperation, | ||
}, | ||
resp: &Response{}, | ||
respErr: nil, | ||
expectedStatus: 404, | ||
}, | ||
{ | ||
title: "List with response and keys", | ||
req: &Request{ | ||
Operation: ListOperation, | ||
}, | ||
resp: &Response{ | ||
Data: map[string]interface{}{ | ||
"keys": []string{"some", "things", "here"}, | ||
}, | ||
}, | ||
respErr: nil, | ||
expectedStatus: 0, | ||
}, | ||
} | ||
|
||
for _, tc := range testCases { | ||
t.Run(tc.title, func(t *testing.T) { | ||
var status int | ||
var err, respErr error | ||
if tc.respErr != nil { | ||
respErr = tc.respErr | ||
} | ||
status, err = RespondErrorCommon(tc.req, tc.resp, respErr) | ||
if status != tc.expectedStatus { | ||
t.Fatalf("Expected (%d) status code, got (%d)", tc.expectedStatus, status) | ||
} | ||
if tc.expectedErr != nil { | ||
if !strings.Contains(tc.expectedErr.Error(), err.Error()) { | ||
t.Fatalf("Expected error to contain:\n%s\n\ngot:\n%s\n", tc.expectedErr, err) | ||
} | ||
} | ||
}) | ||
} | ||
} |