-
Notifications
You must be signed in to change notification settings - Fork 762
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 invalid behavior for the cloud build option for the test
and run
commands
#43941
base: master
Are you sure you want to change the base?
Fix invalid behavior for the cloud build option for the test
and run
commands
#43941
Conversation
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 fixes the invalid behavior of the cloud build option for the test and run commands by updating the conditions that govern test execution delegation and ensuring cloud-related flags are handled correctly. Key changes include:
- In RunCommand, setting the cloud option to an empty string to bypass cloud import.
- In TestCommand and TestProcessor, refactoring the logic to delegate test execution when the cloud flag is set to "docker".
- Updating test cases in TestCommandTest to validate behavior under different cloud options.
Reviewed Changes
Copilot reviewed 5 out of 5 changed files in this pull request and generated 1 comment.
Show a summary per file
File | Description |
---|---|
cli/ballerina-cli/src/test/java/io/ballerina/cli/cmd/TestCommandTest.java | Updates tests to use the USER_HOME constant and validates new cloud option behavior. |
cli/ballerina-cli/src/main/java/io/ballerina/cli/cmd/RunCommand.java | Sets the cloud option to an empty string for the run command, bypassing cloud-related imports. |
misc/testerina/modules/testerina-core/src/main/java/org/ballerinalang/testerina/core/TestProcessor.java | Refactors conditions to delegate tests based on a new helper method that checks for "docker" cloud option. |
cli/ballerina-cli/src/main/java/io/ballerina/cli/cmd/TestCommand.java | Refactors test task delegation by introducing an isTestingDelegated flag for enhanced clarity. |
cli/ballerina-cli/src/main/java/io/ballerina/cli/task/RunTestsTask.java | Removes the early exit for cloud builds to accommodate the updated test execution delegation logic. |
Comments suppressed due to low confidence (2)
cli/ballerina-cli/src/main/java/io/ballerina/cli/cmd/TestCommand.java:364
- [nitpick] The use of a hardcoded "docker" value in the isTestingDelegated flag assumes that only "docker" should delegate test execution. Consider verifying if other cloud values should be handled to avoid unintended behavior.
boolean isTestingDelegated = project.buildOptions().cloud().equals("docker");
cli/ballerina-cli/src/main/java/io/ballerina/cli/task/RunTestsTask.java:142
- The removal of the early return for non-empty cloud options in RunTestsTask means tests will now execute even for cloud builds. Ensure this change aligns with the intended behavior of delegating test execution appropriately.
//do not execute if cloud option is given, we only use the object to use the properties and methods in it
...ina/modules/testerina-core/src/main/java/org/ballerinalang/testerina/core/TestProcessor.java
Show resolved
Hide resolved
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #43941 +/- ##
=========================================
Coverage 75.05% 75.06%
- Complexity 57512 57523 +11
=========================================
Files 3540 3540
Lines 222373 222398 +25
Branches 28835 28836 +1
=========================================
+ Hits 166908 166938 +30
+ Misses 46201 46197 -4
+ Partials 9264 9263 -1 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Purpose
Fixes #43940
Approach
Passed hard-coded empty string for the cloud build option for the
run
command. This overrides any value passed for thecloud
option in the toml.Instead of checking if
cloud
option is present, checked if thecloud
option is available, before skipping tests.Samples
Remarks
Check List