-
Notifications
You must be signed in to change notification settings - Fork 37
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add awsbase.ErrCodeEquals
, AWS SDK for Go v2 variant of helper in v2/awsv1shim/tfawserr
#524
Merged
Merged
Changes from 2 commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
// Copyright (c) HashiCorp, Inc. | ||
// SPDX-License-Identifier: MPL-2.0 | ||
|
||
package awsbase | ||
|
||
import ( | ||
"fmt" | ||
"testing" | ||
) | ||
|
||
func TestIsCannotAssumeRoleError(t *testing.T) { | ||
testCases := []struct { | ||
Name string | ||
Err error | ||
Expected bool | ||
}{ | ||
{ | ||
Name: "nil error", | ||
}, | ||
{ | ||
Name: "Top-level NoValidCredentialSourcesError", | ||
Err: NoValidCredentialSourcesError{}, | ||
}, | ||
{ | ||
Name: "Top-level CannotAssumeRoleError", | ||
Err: CannotAssumeRoleError{}, | ||
Expected: true, | ||
}, | ||
{ | ||
Name: "Nested CannotAssumeRoleError", | ||
Err: fmt.Errorf("test: %w", CannotAssumeRoleError{}), | ||
Expected: true, | ||
}, | ||
} | ||
|
||
for _, testCase := range testCases { | ||
testCase := testCase | ||
|
||
t.Run(testCase.Name, func(t *testing.T) { | ||
got := IsCannotAssumeRoleError(testCase.Err) | ||
|
||
if got != testCase.Expected { | ||
t.Errorf("got %t, expected %t", got, testCase.Expected) | ||
} | ||
}) | ||
} | ||
} | ||
|
||
func TestIsNoValidCredentialSourcesError(t *testing.T) { | ||
testCases := []struct { | ||
Name string | ||
Err error | ||
Expected bool | ||
}{ | ||
{ | ||
Name: "nil error", | ||
}, | ||
{ | ||
Name: "Top-level CannotAssumeRoleError", | ||
Err: CannotAssumeRoleError{}, | ||
}, | ||
{ | ||
Name: "Top-level NoValidCredentialSourcesError", | ||
Err: NoValidCredentialSourcesError{}, | ||
Expected: true, | ||
}, | ||
{ | ||
Name: "Nested NoValidCredentialSourcesError", | ||
Err: fmt.Errorf("test: %w", NoValidCredentialSourcesError{}), | ||
Expected: true, | ||
}, | ||
} | ||
|
||
for _, testCase := range testCases { | ||
testCase := testCase | ||
|
||
t.Run(testCase.Name, func(t *testing.T) { | ||
got := IsNoValidCredentialSourcesError(testCase.Err) | ||
|
||
if got != testCase.Expected { | ||
t.Errorf("got %t, expected %t", got, testCase.Expected) | ||
} | ||
}) | ||
} | ||
} |
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,21 @@ | ||
// Copyright (c) HashiCorp, Inc. | ||
// SPDX-License-Identifier: MPL-2.0 | ||
|
||
package errs | ||
|
||
import ( | ||
"errors" | ||
) | ||
|
||
// IsA indicates whether an error matches an error type. | ||
func IsA[T error](err error) bool { | ||
_, ok := As[T](err) | ||
return ok | ||
} | ||
|
||
// As is equivalent to errors.As(), but returns the value in-line. | ||
func As[T error](err error) (T, bool) { | ||
var as T | ||
ok := errors.As(err, &as) | ||
return as, ok | ||
} |
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,23 @@ | ||
// Copyright (c) HashiCorp, Inc. | ||
// SPDX-License-Identifier: MPL-2.0 | ||
|
||
package tfawserr | ||
|
||
import ( | ||
smithy "github.com/aws/smithy-go" | ||
"github.com/hashicorp/aws-sdk-go-base/v2/internal/errs" | ||
) | ||
|
||
// ErrCodeEquals returns true if the error matches all these conditions: | ||
// - err is of type smithy.APIError | ||
// - Error.Code() equals one of the passed codes | ||
func ErrCodeEquals(err error, codes ...string) bool { | ||
if apiErr, ok := errs.As[smithy.APIError](err); ok { | ||
for _, code := range codes { | ||
if apiErr.ErrorCode() == code { | ||
return true | ||
} | ||
} | ||
} | ||
return false | ||
} |
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,105 @@ | ||
// Copyright (c) HashiCorp, Inc. | ||
// SPDX-License-Identifier: MPL-2.0 | ||
|
||
package tfawserr | ||
|
||
import ( | ||
"fmt" | ||
"testing" | ||
|
||
"github.com/aws/aws-sdk-go-v2/service/sts/types" | ||
"github.com/aws/aws-sdk-go/aws" | ||
smithy "github.com/aws/smithy-go" | ||
awsbase "github.com/hashicorp/aws-sdk-go-base/v2" | ||
) | ||
|
||
func TestErrCodeEquals(t *testing.T) { | ||
testCases := []struct { | ||
Name string | ||
Err error | ||
Codes []string | ||
Expected bool | ||
}{ | ||
{ | ||
Name: "nil error", | ||
}, | ||
{ | ||
Name: "Top-level CannotAssumeRoleError", | ||
Err: awsbase.CannotAssumeRoleError{}, | ||
}, | ||
{ | ||
Name: "Top-level smithy.GenericAPIError matching first code", | ||
Err: &smithy.GenericAPIError{Code: "TestCode", Message: "TestMessage"}, | ||
Codes: []string{"TestCode"}, | ||
Expected: true, | ||
}, | ||
{ | ||
Name: "Top-level smithy.GenericAPIError matching last code", | ||
Err: &smithy.GenericAPIError{Code: "TestCode", Message: "TestMessage"}, | ||
Codes: []string{"NotMatching", "TestCode"}, | ||
Expected: true, | ||
}, | ||
{ | ||
Name: "Top-level smithy.GenericAPIError no code", | ||
Err: &smithy.GenericAPIError{Code: "TestCode", Message: "TestMessage"}, | ||
}, | ||
{ | ||
Name: "Top-level smithy.GenericAPIError non-matching codes", | ||
Err: &smithy.GenericAPIError{Code: "TestCode", Message: "TestMessage"}, | ||
Codes: []string{"NotMatching", "AlsoNotMatching"}, | ||
}, | ||
{ | ||
Name: "Wrapped smithy.GenericAPIError matching first code", | ||
Err: fmt.Errorf("test: %w", &smithy.GenericAPIError{Code: "TestCode", Message: "TestMessage"}), | ||
Codes: []string{"TestCode"}, | ||
Expected: true, | ||
}, | ||
{ | ||
Name: "Wrapped smithy.GenericAPIError matching last code", | ||
Err: fmt.Errorf("test: %w", &smithy.GenericAPIError{Code: "TestCode", Message: "TestMessage"}), | ||
Codes: []string{"NotMatching", "TestCode"}, | ||
Expected: true, | ||
}, | ||
{ | ||
Name: "Wrapped smithy.GenericAPIError non-matching codes", | ||
Err: fmt.Errorf("test: %w", &smithy.GenericAPIError{Code: "TestCode", Message: "TestMessage"}), | ||
Codes: []string{"NotMatching", "AlsoNotMatching"}, | ||
}, | ||
{ | ||
Name: "Top-level sts ExpiredTokenException matching first code", | ||
Err: &types.ExpiredTokenException{ErrorCodeOverride: aws.String("TestCode"), Message: aws.String("TestMessage")}, | ||
Codes: []string{"TestCode"}, | ||
Expected: true, | ||
}, | ||
{ | ||
Name: "Top-level sts ExpiredTokenException matching last code", | ||
Err: &types.ExpiredTokenException{ErrorCodeOverride: aws.String("TestCode"), Message: aws.String("TestMessage")}, | ||
Codes: []string{"NotMatching", "TestCode"}, | ||
Expected: true, | ||
}, | ||
{ | ||
Name: "Wrapped sts ExpiredTokenException matching first code", | ||
Err: fmt.Errorf("test: %w", &types.ExpiredTokenException{ErrorCodeOverride: aws.String("TestCode"), Message: aws.String("TestMessage")}), | ||
Codes: []string{"TestCode"}, | ||
Expected: true, | ||
}, | ||
{ | ||
Name: "Wrapped sts ExpiredTokenException matching last code", | ||
Err: fmt.Errorf("test: %w", &types.ExpiredTokenException{ErrorCodeOverride: aws.String("TestCode"), Message: aws.String("TestMessage")}), | ||
Codes: []string{"NotMatching", "TestCode"}, | ||
Expected: true, | ||
}, | ||
} | ||
|
||
for _, testCase := range testCases { | ||
testCase := testCase | ||
|
||
t.Run(testCase.Name, func(t *testing.T) { | ||
got := ErrCodeEquals(testCase.Err, testCase.Codes...) | ||
|
||
if got != testCase.Expected { | ||
t.Errorf("got %t, expected %t", got, testCase.Expected) | ||
} | ||
}) | ||
} | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should be
github.com/aws/aws-sdk-go-v2/aws
to prevent thego.mod
diff.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Copy and paste :(