-
Notifications
You must be signed in to change notification settings - Fork 252
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
Check before insert #384
Check before insert #384
Conversation
* Added case where bundle image is different but provides same info * Added case where bundle was exactly the same
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.
minor nits. What do you think of adding a unit test for this?
a09b1e9
to
7f4d166
Compare
/retest |
* adding testcases * updated based on feedback
7f4d166
to
a21d9e9
Compare
@@ -426,6 +505,18 @@ func TestImageLoading(t *testing.T) { | |||
} | |||
} | |||
|
|||
func checkAggErr(aggErr, wantErr error) bool { | |||
if a, ok := aggErr.(utilerrors.Aggregate); ok { | |||
for _, e := range a.Errors() { |
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.
if you pass t
here, you can just use require.EqualElements()
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.
I don't think that is true, I am looking through each error to see if one of them is the error that I want, not that all the errors are the one that I want.
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.
ah, I misread. require.Contains
would work, but it's not a big deal.
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.
hum looks that this actually compares error strings and not error types:
TestImageLoading/AddExactBundleAlreadyExists: populator_test.go:509:
Error Trace: populator_test.go:509
populator_test.go:489
Error: "[Bundle quay.io/prometheus/operator:0.14.0 already exists Bundle already added that provides package and csv]" does not contain ""
Test: TestImageLoading/AddExactBundleAlreadyExists
Just an FYI
/lgtm |
pkg/registry/populator.go
Outdated
images := make(map[string]bool) | ||
for _, image := range imagesToAdd { | ||
images[image.bundle.BundleImage] = true | ||
} |
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.
Nit:
images := make(map[string]bool) | |
for _, image := range imagesToAdd { | |
images[image.bundle.BundleImage] = true | |
} | |
images := make(map[string]struct{}) | |
for _, image := range imagesToAdd { | |
images[image.bundle.BundleImage] = struct{}{} | |
} |
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.
+1
@@ -14,6 +14,24 @@ var ( | |||
ErrPackageNotInDatabase = errors.New("Package not in database") | |||
) | |||
|
|||
// BundleImageAlreadyAddedErr is an error that describes a bundle is already added |
This comment was marked as resolved.
This comment was marked as resolved.
Sorry, something went wrong.
* Cleaning up imports * Updating names to be more clear * code optimizations.
37fc6e5
to
129c3f6
Compare
/lgtm |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: kevinrizza, shawn-hurley The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
/retest Please review the full test history for this PR and help us cut down flakes. |
5 similar comments
/retest Please review the full test history for this PR and help us cut down flakes. |
/retest Please review the full test history for this PR and help us cut down flakes. |
/retest Please review the full test history for this PR and help us cut down flakes. |
/retest Please review the full test history for this PR and help us cut down flakes. |
/retest Please review the full test history for this PR and help us cut down flakes. |
Description of the change:
Motivation for the change:
Reviewer Checklist
/docs