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

fix(opm-index-add) Throw error when a bundle is invalid #522

Closed

Conversation

anik120
Copy link
Contributor

@anik120 anik120 commented Nov 18, 2020

Description of the change:

With the introduction of #503, when a bundle from the list of bundles
being added with the opm index add command was invalid, opm was not
throwing an error, and was building the index with the valid bundles
instead, even when the permissive mode was not enabled. This PR
fixes the issue.

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.

With the introduction of operator-framework#503, when a bundle from the list of bundles
being added with the `opm index add` command was invalid, opm was not
throwing an error, and was building the index with the valid bundles
instead, even when the `permissive` mode was not enabled. This PR
fixes the issue.
@openshift-ci-robot
Copy link

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by: anik120
To complete the pull request process, please assign dinhxuanvu after the PR has been reviewed.
You can assign the PR to them by writing /assign @dinhxuanvu in a comment when ready.

The full list of commands accepted by this bot can be found 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

Copy link
Member

@dinhxuanvu dinhxuanvu left a comment

Choose a reason for hiding this comment

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

Looking good but just a quick comment.

@@ -142,7 +142,7 @@ func (r *ReplacesInputStream) Next() (*ImageInput, error) {
delete(r.packages, pkg)
}

return image, nil
return image, utilerrors.NewAggregate(errs)
Copy link
Member

Choose a reason for hiding this comment

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

Should we add packageErrs into the errs before return?

@codecov
Copy link

codecov bot commented Nov 18, 2020

Codecov Report

Merging #522 (e06fa3f) into master (fded0bf) will not change coverage.
The diff coverage is 100.00%.

Impacted file tree graph

@@           Coverage Diff           @@
##           master     #522   +/-   ##
=======================================
  Coverage   49.42%   49.42%           
=======================================
  Files          90       90           
  Lines        6286     6286           
=======================================
  Hits         3107     3107           
  Misses       2485     2485           
  Partials      694      694           
Impacted Files Coverage Δ
pkg/registry/input_stream.go 77.94% <100.00%> (ø)

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update fded0bf...73f57bc. Read the comment docs.

@@ -142,7 +142,7 @@ func (r *ReplacesInputStream) Next() (*ImageInput, error) {
delete(r.packages, pkg)
}

return image, nil
return image, utilerrors.NewAggregate(errs)
Copy link
Member

@njhale njhale Nov 18, 2020

Choose a reason for hiding this comment

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

this fix looks incorrect -- the way this should work is:

  • as long as we find a bundle that works for at least one package, return that "good" bundle and no error
  • if there are no "good" bundles left, return errors from bad bundles
  • if there are no bundles left, we're good, return nil

Copy link
Member

Choose a reason for hiding this comment

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

I've opened #523, which I believe fixes the regression. It also adds a test that fails before/succeeds after the change.

@anik120 PTAL, and let me know if you agree with the fix.

@anik120
Copy link
Contributor Author

anik120 commented Nov 19, 2020

Closing in favor of #523

@anik120 anik120 closed this Nov 19, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants