-
Notifications
You must be signed in to change notification settings - Fork 1k
add cmdinit e2e test for initing karmada control plane with config file #7080
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
base: master
Are you sure you want to change the base?
Conversation
Summary of ChangesHello @rayo1uo, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request enhances the testing infrastructure for Karmada by introducing a robust, Go-based end-to-end test for the Highlights
🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console. Ignored Files
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
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.
Code Review
This pull request migrates the karmadactl init with config file test from a shell script to a Go e2e test, which is a great improvement for maintainability. The shell script hack/cli-testing-init-with-config.sh is removed and a new Go test file test/e2e/suites/init/init_with_config_test.go is added. The changes in test/e2e/suites/init/suite_test.go are good stylistic simplifications. I've found a critical issue in the new test file related to incorrect YAML formatting in the config template, which would cause the test to fail. Please see my detailed comment.
138f1a3 to
4c921b5
Compare
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.
Pull request overview
This PR migrates the karmadactl init with config file test from a bash script approach to the e2e test framework, consolidating testing infrastructure and removing duplicate CI workflows.
- Adds new e2e test (
init_with_config_test.go) for testing karmadactl init with configuration files - Removes the legacy bash script (
hack/cli-testing-init-with-config.sh) and corresponding GitHub workflow job - Simplifies helper functions in
suite_test.goby removing unnecessary error handling boilerplate
Reviewed changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated 3 comments.
| File | Description |
|---|---|
| test/e2e/suites/init/init_with_config_test.go | New e2e test for initializing Karmada control plane using config file |
| test/e2e/suites/init/suite_test.go | Simplified helper functions by directly returning error values |
| hack/cli-testing-init-with-config.sh | Removed legacy bash-based test script (migrated to e2e) |
| .github/workflows/installation-cli.yaml | Removed init-config job that used the deprecated bash script |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
445d346 to
4f192eb
Compare
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.
Pull request overview
Copilot reviewed 4 out of 4 changed files in this pull request and generated 1 comment.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Signed-off-by: rayo1uo <[email protected]>
4f192eb to
d066251
Compare
|
Thanks |
|
/lgtm cancel |
|
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #7080 +/- ##
=======================================
Coverage 46.55% 46.55%
=======================================
Files 700 700
Lines 48091 48091
=======================================
+ Hits 22389 22391 +2
+ Misses 24020 24018 -2
Partials 1682 1682
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
|
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: The full list of commands accepted by this bot can be found here. DetailsNeeds approval from an approver in each of these files:Approvers can indicate their approval by writing |
Signed-off-by: rayo1uo <[email protected]>
5a9314d to
4d3550d
Compare
|
Hi @zhzhuang-zju , ready for review again. Thanks~ Also, regarding the screenshot, I think 'init with config' needs to be removed from the repo settings as it's stuck in pending, which has been removed from workflow yaml.
|

What type of PR is this?
/kind cleanup
What this PR does / why we need it:
Currently, it supports testing the installation capability of karmadactl init in e2e. The tests for CI Test on Kubernetes and CI init with config file can now be migrated to the e2e module.
Which issue(s) this PR fixes:
Part of #6887
Special notes for your reviewer:
Does this PR introduce a user-facing change?: