Skip to content
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

Conversation

shawn-hurley
Copy link
Member

@shawn-hurley shawn-hurley commented Jul 13, 2020

Description of the change:

  • adding sanity check before adding a bundle to check it the package/csv/version is already provided or if the exact bundle is already added.
  • exit code's now can be used to retrieve these specific error scenarios.
  • This is targeted at index add, but anything that uses the directory loader will get this change.

Motivation for the change:

Reviewer Checklist

  • Implementation matches the proposed design, or proposal is updated to match implementation
  • Sufficient unit test coverage
  • Sufficient end-to-end test coverage
  • Docs updated or added to /docs
  • Commit messages sensible and descriptive

Sorry, something went wrong.

gallettilance and others added 2 commits July 8, 2020 16:51

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
* Added case where bundle image is different but provides same info
* Added case where bundle was exactly the same
Copy link
Member

@gallettilance gallettilance left a 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?

@shawn-hurley shawn-hurley force-pushed the check-before-insert branch from a09b1e9 to 7f4d166 Compare July 15, 2020 20:48
@shawn-hurley
Copy link
Member Author

/retest

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
* adding testcases
* updated based on feedback
@shawn-hurley shawn-hurley force-pushed the check-before-insert branch from 7f4d166 to a21d9e9 Compare July 15, 2020 21:10
@@ -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() {
Copy link
Member

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()

Copy link
Member Author

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.

Copy link
Member

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.

Copy link
Member Author

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

@ecordell
Copy link
Member

/lgtm

@openshift-ci-robot openshift-ci-robot added the lgtm Indicates that a PR is ready to be merged. label Jul 16, 2020
Comment on lines 68 to 71
images := make(map[string]bool)
for _, image := range imagesToAdd {
images[image.bundle.BundleImage] = true
}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nit:

Suggested change
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{}{}
}

Copy link
Member

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.

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
* Cleaning up imports
* Updating names to be more clear
* code optimizations.
@shawn-hurley shawn-hurley force-pushed the check-before-insert branch from 37fc6e5 to 129c3f6 Compare July 17, 2020 20:34
@openshift-ci-robot openshift-ci-robot removed the lgtm Indicates that a PR is ready to be merged. label Jul 17, 2020
@kevinrizza
Copy link
Member

/lgtm
/approve

@openshift-ci-robot openshift-ci-robot added the lgtm Indicates that a PR is ready to be merged. label Jul 17, 2020
@openshift-ci-robot
Copy link

[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 /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@openshift-ci-robot openshift-ci-robot added the approved Indicates a PR has been approved by an approver from all required OWNERS files. label Jul 17, 2020
@openshift-bot
Copy link
Contributor

/retest

Please review the full test history for this PR and help us cut down flakes.

5 similar comments
@openshift-bot
Copy link
Contributor

/retest

Please review the full test history for this PR and help us cut down flakes.

@openshift-bot
Copy link
Contributor

/retest

Please review the full test history for this PR and help us cut down flakes.

@openshift-bot
Copy link
Contributor

/retest

Please review the full test history for this PR and help us cut down flakes.

@openshift-bot
Copy link
Contributor

/retest

Please review the full test history for this PR and help us cut down flakes.

@openshift-bot
Copy link
Contributor

/retest

Please review the full test history for this PR and help us cut down flakes.

@openshift-merge-robot openshift-merge-robot merged commit 3403f43 into operator-framework:master Jul 18, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
approved Indicates a PR has been approved by an approver from all required OWNERS files. lgtm Indicates that a PR is ready to be merged.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

8 participants