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

🌱 Decompose RegistryV1ToHelmChart function #1735

Merged
merged 3 commits into from
Feb 12, 2025

Conversation

perdasilva
Copy link
Contributor

@perdasilva perdasilva commented Feb 10, 2025

Description

Refactor RegistryV1ToHelmChart function in the rukpak/convert package by taking out the code that parses a bundle filesystem into a RegistryV1 object and putting it into its own function ParseFS. This facilitates manipulation of bundles in other activities, e.g. tooling/CLI

Reviewer Checklist

  • API Go Documentation
  • Tests: Unit Tests (and E2E Tests, if appropriate)
  • Comprehensive Commit Messages
  • Links to related GitHub Issue(s)

Sorry, something went wrong.

@openshift-ci openshift-ci bot added the do-not-merge/work-in-progress Indicates that a PR should not merge because it is a work in progress. label Feb 10, 2025
Copy link

netlify bot commented Feb 10, 2025

Deploy Preview for olmv1 ready!

Name Link
🔨 Latest commit 6cf4dbe
🔍 Latest deploy log https://app.netlify.com/sites/olmv1/deploys/67acb66b5183a60008a25f46
😎 Deploy Preview https://deploy-preview-1735--olmv1.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

Copy link

codecov bot commented Feb 10, 2025

Codecov Report

Attention: Patch coverage is 59.37500% with 13 lines in your changes missing coverage. Please review.

Project coverage is 67.45%. Comparing base (c9fb138) to head (6cf4dbe).
Report is 1 commits behind head on main.

Files with missing lines Patch % Lines
...l/operator-controller/rukpak/convert/registryv1.go 59.37% 9 Missing and 4 partials ⚠️
Additional details and impacted files
@@            Coverage Diff             @@
##             main    #1735      +/-   ##
==========================================
+ Coverage   67.34%   67.45%   +0.11%     
==========================================
  Files          61       61              
  Lines        5236     5245       +9     
==========================================
+ Hits         3526     3538      +12     
+ Misses       1449     1446       -3     
  Partials      261      261              
Flag Coverage Δ
e2e 52.15% <50.00%> (-0.05%) ⬇️
unit 55.00% <37.50%> (+<0.01%) ⬆️

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@perdasilva perdasilva marked this pull request as ready for review February 10, 2025 15:51
@perdasilva perdasilva requested a review from a team as a code owner February 10, 2025 15:51
@openshift-ci openshift-ci bot removed the do-not-merge/work-in-progress Indicates that a PR should not merge because it is a work in progress. label Feb 10, 2025
@perdasilva perdasilva changed the title 🌱 Factor FS to RegistryV1 code out of helm conversion 🌱 Decompose RegistryV1ToHelmChart function Feb 10, 2025
@tmshort
Copy link
Contributor

tmshort commented Feb 10, 2025

broken unit test due to removal of function.

Copy link
Contributor

@camilamacedo86 camilamacedo86 left a comment

Choose a reason for hiding this comment

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

Some lint issues otherwise it seems LGTM to me 👍

@perdasilva
Copy link
Contributor Author

broken unit test due to removal of function.

Sorry about that. Shot from the hip as I was getting rushed off to dinner. I've fixed it up by removing the unit test. The test below it performs the same test. I also moved it to the test package to help us avoid testing private functions in the future.

@perdasilva perdasilva force-pushed the refactor-render branch 2 times, most recently from 0fb3c14 to 0bc6f80 Compare February 11, 2025 08:56
require.Error(t, err)
require.Nil(t, plainBundle)
}

func TestRegistryV1SuiteGeneratePropagateCsvAnnotations(t *testing.T) {
Copy link
Contributor Author

Choose a reason for hiding this comment

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

Removed TestRegistryV1SuiteGeneratePropagateCsvAnnotations since it was testing an unexported function and the behavior is also tested on line 489

Copy link
Contributor

Choose a reason for hiding this comment

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

I think I got your change 👍

@perdasilva perdasilva force-pushed the refactor-render branch 2 times, most recently from 042a261 to e36a985 Compare February 11, 2025 12:48
spec:
installModes:
- type: AllNamespaces
supported: true
Copy link
Contributor

Choose a reason for hiding this comment

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

I can see here that we still using the same mock from what was removed csv.Spec.InstallModes = []v1alpha1.InstallMode{{Type: v1alpha1.InstallModeTypeMultiNamespace, Supported: true}}

Name: fmt.Sprintf("object-%x.json", hash[0:8]),
Data: jsonData,
})
}
Copy link
Contributor

Choose a reason for hiding this comment

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

👍 I can see that we are doing mainly the same just/refac/cleanup

camilamacedo86
camilamacedo86 previously approved these changes Feb 11, 2025
Copy link
Contributor

@camilamacedo86 camilamacedo86 left a comment

Choose a reason for hiding this comment

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

/lgtm

@openshift-ci openshift-ci bot added the lgtm Indicates that a PR is ready to be merged. label Feb 11, 2025
@perdasilva perdasilva added this pull request to the merge queue Feb 11, 2025
@github-merge-queue github-merge-queue bot removed this pull request from the merge queue due to failed status checks Feb 11, 2025
@perdasilva perdasilva added this pull request to the merge queue Feb 11, 2025
@github-merge-queue github-merge-queue bot removed this pull request from the merge queue due to failed status checks Feb 11, 2025
@openshift-ci openshift-ci bot removed the lgtm Indicates that a PR is ready to be merged. label Feb 11, 2025
@LalatenduMohanty
Copy link
Member

@perdasilva #1737 got merged, so this PR need a rebase.

@openshift-merge-robot openshift-merge-robot added the needs-rebase Indicates a PR cannot be merged because it has merge conflicts with HEAD. label Feb 11, 2025
@openshift-merge-robot openshift-merge-robot removed the needs-rebase Indicates a PR cannot be merged because it has merge conflicts with HEAD. label Feb 12, 2025
joelanford
joelanford previously approved these changes Feb 12, 2025
Per Goncalves da Silva added 2 commits February 12, 2025 15:12
Signed-off-by: Per Goncalves da Silva <pegoncal@redhat.com>
Signed-off-by: Per Goncalves da Silva <pegoncal@redhat.com>
Signed-off-by: Per G. da Silva <pegoncal@redhat.com>
Copy link
Contributor

@camilamacedo86 camilamacedo86 left a comment

Choose a reason for hiding this comment

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

/lgtm

When pass in the CI ( flake )

@openshift-ci openshift-ci bot added the lgtm Indicates that a PR is ready to be merged. label Feb 12, 2025
@openshift-ci openshift-ci bot removed the lgtm Indicates that a PR is ready to be merged. label Feb 12, 2025
Copy link

openshift-ci bot commented Feb 12, 2025

New changes are detected. LGTM label has been removed.

@perdasilva perdasilva added this pull request to the merge queue Feb 12, 2025
Merged via the queue into operator-framework:main with commit f8fac24 Feb 12, 2025
21 of 22 checks passed
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

6 participants