-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
enable direct error handling for bundle plugin by returning downloade…
…r errors for bundles in manual trigger mode Signed-off-by: Torsten Wunderlich <[email protected]>
- Loading branch information
1 parent
d3f5102
commit 9515ff5
Showing
5 changed files
with
292 additions
and
7 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
package bundle | ||
|
||
import ( | ||
"errors" | ||
"fmt" | ||
|
||
"github.com/open-policy-agent/opa/download" | ||
) | ||
|
||
// Errors represents a list of errors that occurred during a bundle load enriched by the bundle name. | ||
type Errors []Error | ||
|
||
func (e Errors) Unwrap() []error { | ||
output := make([]error, len(e)) | ||
for i := range e { | ||
output[i] = e[i] | ||
} | ||
return output | ||
} | ||
func (e Errors) Error() string { | ||
err := errors.Join(e.Unwrap()...) | ||
return err.Error() | ||
} | ||
|
||
type Error struct { | ||
BundleName string | ||
Code string | ||
HTTPCode int | ||
Message string | ||
Err error | ||
} | ||
|
||
func NewBundleError(bundleName string, cause error) Error { | ||
var ( | ||
httpError download.HTTPError | ||
) | ||
switch { | ||
case cause == nil: | ||
return Error{BundleName: bundleName, Code: "", HTTPCode: -1, Message: "", Err: nil} | ||
case errors.As(cause, &httpError): | ||
return Error{BundleName: bundleName, Code: errCode, HTTPCode: httpError.StatusCode, Message: httpError.Error(), Err: cause} | ||
default: | ||
return Error{BundleName: bundleName, Code: errCode, HTTPCode: -1, Message: cause.Error(), Err: cause} | ||
} | ||
} | ||
|
||
func (e Error) Error() string { | ||
return fmt.Sprintf("Bundle name: %s, Code: %s, HTTPCode: %d, Message: %s", e.BundleName, errCode, e.HTTPCode, e.Message) | ||
} | ||
|
||
func (e Error) Unwrap() error { | ||
return e.Err | ||
} |
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,145 @@ | ||
package bundle | ||
|
||
import ( | ||
"errors" | ||
"fmt" | ||
"testing" | ||
|
||
"github.com/open-policy-agent/opa/ast" | ||
"github.com/open-policy-agent/opa/download" | ||
) | ||
|
||
func TestErrors(t *testing.T) { | ||
errs := Errors{ | ||
NewBundleError("foo", fmt.Errorf("foo error")), | ||
NewBundleError("bar", fmt.Errorf("bar error")), | ||
} | ||
|
||
expected := "Bundle name: foo, Code: bundle_error, HTTPCode: -1, Message: foo error\nBundle name: bar, Code: bundle_error, HTTPCode: -1, Message: bar error" | ||
result := errs.Error() | ||
|
||
if result != expected { | ||
t.Errorf("Expected: %v \nbut got: %v", expected, result) | ||
} | ||
} | ||
|
||
func TestUnwrapSlice(t *testing.T) { | ||
fooErr := NewBundleError("foo", fmt.Errorf("foo error")) | ||
barErr := NewBundleError("bar", fmt.Errorf("bar error")) | ||
|
||
errs := Errors{fooErr, barErr} | ||
|
||
result := errs.Unwrap() | ||
|
||
if result[0].Error() != fooErr.Error() { | ||
t.Fatalf("expected %v \nbut got: %v", fooErr, result[0]) | ||
} | ||
if result[1].Error() != barErr.Error() { | ||
t.Fatalf("expected %v \nbut got: %v", barErr, result[1]) | ||
} | ||
} | ||
|
||
func TestUnwrap(t *testing.T) { | ||
serverHTTPError := NewBundleError("server", download.HTTPError{StatusCode: 500}) | ||
clientHTTPError := NewBundleError("client", download.HTTPError{StatusCode: 400}) | ||
astErrors := ast.Errors{ast.NewError(ast.ParseErr, ast.NewLocation(nil, "foo.rego", 100, 2), "blarg")} | ||
|
||
errs := Errors{serverHTTPError, clientHTTPError, NewBundleError("ast", astErrors)} | ||
|
||
// unwrap first bundle.Error | ||
var bundleError Error | ||
if !errors.As(errs, &bundleError) { | ||
t.Fatal("failed to unwrap Error") | ||
} | ||
if bundleError.Error() != serverHTTPError.Error() { | ||
t.Fatalf("expected: %v \ngot: %v", serverHTTPError, bundleError) | ||
} | ||
|
||
// unwrap first HTTPError | ||
var httpError download.HTTPError | ||
if !errors.As(errs, &httpError) { | ||
t.Fatal("failed to unwrap Error") | ||
} | ||
if httpError.Error() != serverHTTPError.Err.Error() { | ||
t.Fatalf("expected: %v \ngot: %v", serverHTTPError.Err, httpError) | ||
} | ||
|
||
// unwrap HTTPError from bundle.Error | ||
if !errors.As(bundleError, &httpError) { | ||
t.Fatal("failed to unwrap HTTPError") | ||
} | ||
if httpError.Error() != serverHTTPError.Err.Error() { | ||
t.Fatalf("expected: %v \nbgot: %v", serverHTTPError.Err, httpError) | ||
} | ||
|
||
var unwrappedAstErrors ast.Errors | ||
if !errors.As(errs, &unwrappedAstErrors) { | ||
t.Fatal("failed to unwrap ast.Errors") | ||
} | ||
if unwrappedAstErrors.Error() != astErrors.Error() { | ||
t.Fatalf("expected: %v \ngot: %v", astErrors, unwrappedAstErrors) | ||
} | ||
} | ||
|
||
func TestHTTPErrorWrapping(t *testing.T) { | ||
err := download.HTTPError{StatusCode: 500} | ||
bundleErr := NewBundleError("foo", err) | ||
|
||
if bundleErr.BundleName != "foo" { | ||
t.Fatalf("BundleName: expected: %v \ngot: %v", "foo", bundleErr.BundleName) | ||
} | ||
if bundleErr.HTTPCode != err.StatusCode { | ||
t.Fatalf("HTTPCode: expected: %v \ngot: %v", err.StatusCode, bundleErr.HTTPCode) | ||
} | ||
if bundleErr.Message != err.Error() { | ||
t.Fatalf("Message: expected: %v \ngot: %v", err.Error(), bundleErr.Message) | ||
} | ||
if bundleErr.Code != errCode { | ||
t.Fatalf("Code: expected: %v \ngot: %v", errCode, bundleErr.Code) | ||
} | ||
if bundleErr.Err != err { | ||
t.Fatalf("Err: expected: %v \ngot: %v", err, bundleErr.Err) | ||
} | ||
} | ||
|
||
func TestASTErrorsWrapping(t *testing.T) { | ||
err := ast.Errors{ast.NewError(ast.ParseErr, ast.NewLocation(nil, "foo.rego", 100, 2), "blarg")} | ||
bundleErr := NewBundleError("foo", err) | ||
|
||
if bundleErr.BundleName != "foo" { | ||
t.Fatalf("BundleName: expected: %v \ngot: %v", "foo", bundleErr.BundleName) | ||
} | ||
if bundleErr.HTTPCode != -1 { | ||
t.Fatalf("HTTPCode: expected: %v \ngot: %v", -1, bundleErr.HTTPCode) | ||
} | ||
if bundleErr.Message != err.Error() { | ||
t.Fatalf("Message: expected: %v \ngot: %v", err.Error(), bundleErr.Message) | ||
} | ||
if bundleErr.Code != errCode { | ||
t.Fatalf("Code: expected: %v \ngot: %v", errCode, bundleErr.Code) | ||
} | ||
if bundleErr.Err.Error() != err.Error() { | ||
t.Fatalf("Err: expected: %v \ngot: %v", err.Error(), bundleErr.Err.Error()) | ||
} | ||
} | ||
|
||
func TestGenericErrorWrapping(t *testing.T) { | ||
err := fmt.Errorf("foo error") | ||
bundleErr := NewBundleError("foo", err) | ||
|
||
if bundleErr.BundleName != "foo" { | ||
t.Fatalf("BundleName: expected: %v \ngot: %v", "foo", bundleErr.BundleName) | ||
} | ||
if bundleErr.HTTPCode != -1 { | ||
t.Fatalf("HTTPCode: expected: %v \ngot: %v", -1, bundleErr.HTTPCode) | ||
} | ||
if bundleErr.Message != err.Error() { | ||
t.Fatalf("Message: expected: %v \ngot: %v", err.Error(), bundleErr.Message) | ||
} | ||
if bundleErr.Code != errCode { | ||
t.Fatalf("Code: expected: %v \ngot: %v", errCode, bundleErr.Code) | ||
} | ||
if bundleErr.Err.Error() != err.Error() { | ||
t.Fatalf("Err: expected: %v \ngot: %v", err.Error(), bundleErr.Err.Error()) | ||
} | ||
} |
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