-
Notifications
You must be signed in to change notification settings - Fork 2
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
Improve test config change handling (#164) #177
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
MarioFuchsTT
force-pushed
the
i164_improve-test-config-change-handling
branch
from
October 4, 2024 10:32
f59a966
to
92b5f33
Compare
MartinGroscheTT
requested changes
Oct 9, 2024
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.
- use multiple
@QueryParameter
withinTestConfig.groovy
to show the user the relationship between both parameters andKEEP
FormValidation doCheckTbcPath(@QueryParameter("tbcPath") String tbcPatch, @QueryParameter("tcfPath") String tcfPath) { // check implememntation to WARN the user if one of the parameter is KEEP and the other is not }
- using the snippet generator it is not possible to set tbc or tcf empty, find a way to make it possible so the user can unload the configuration via snippet generator (Hint: use Optional Block)
src/test/groovy/de/tracetronic/jenkins/plugins/ecutestexecution/steps/RunPackageStepIT.groovy
Outdated
Show resolved
Hide resolved
src/test/groovy/de/tracetronic/jenkins/plugins/ecutestexecution/steps/RunPackageStepIT.groovy
Outdated
Show resolved
Hide resolved
MarioFuchsTT
force-pushed
the
i164_improve-test-config-change-handling
branch
from
October 21, 2024 08:12
7ea33e4
to
d315fb2
Compare
MartinGroscheTT
requested changes
Oct 28, 2024
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.
- currently the snippet generator allows both
ttRunPackage testCasePath: 'test.pkg', testConfig: [forceConfigurationReload: true, tbcPath: 'test.tbc', tcfPath: 'test.tcf']
- this should be tested
...in/resources/de/tracetronic/jenkins/plugins/ecutestexecution/configs/TestConfig/config.jelly
Outdated
Show resolved
Hide resolved
...in/resources/de/tracetronic/jenkins/plugins/ecutestexecution/configs/TestConfig/config.jelly
Outdated
Show resolved
Hide resolved
...in/resources/de/tracetronic/jenkins/plugins/ecutestexecution/configs/TestConfig/config.jelly
Outdated
Show resolved
Hide resolved
...sources/de/tracetronic/jenkins/plugins/ecutestexecution/configs/TestConfig/config.properties
Outdated
Show resolved
Hide resolved
MartinGroscheTT
requested changes
Oct 29, 2024
src/main/groovy/de/tracetronic/jenkins/plugins/ecutestexecution/configs/TestConfig.groovy
Outdated
Show resolved
Hide resolved
src/main/groovy/de/tracetronic/jenkins/plugins/ecutestexecution/configs/TestConfig.groovy
Outdated
Show resolved
Hide resolved
MartinGroscheTT
approved these changes
Nov 5, 2024
src/main/groovy/de/tracetronic/jenkins/plugins/ecutestexecution/configs/TestConfig.groovy
Outdated
Show resolved
Hide resolved
src/main/groovy/de/tracetronic/jenkins/plugins/ecutestexecution/configs/TestConfig.groovy
Show resolved
Hide resolved
MartinGroscheTT
requested changes
Nov 5, 2024
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.
ups
MartinGroscheTT
requested changes
Nov 11, 2024
src/test/groovy/de/tracetronic/jenkins/plugins/ecutestexecution/ETV2ContainerTest.groovy
Outdated
Show resolved
Hide resolved
MartinGroscheTT
force-pushed
the
i164_improve-test-config-change-handling
branch
from
November 15, 2024 09:11
875e834
to
2912487
Compare
MarioFuchsTT
commented
Nov 15, 2024
src/test/groovy/de/tracetronic/jenkins/plugins/ecutestexecution/util/ValidationUtilTest.groovy
Outdated
Show resolved
Hide resolved
- remove keep - ajust jelly, avdanvedDocs, and tests
- ensure either load configuration or keep configuration in snippet generator - adjust jelly and properties file - sync tests
- enhance configOption handler in TestConfig - sync tests
- provide console log for configOption and sync related tests - provide test for behavior of keeping tbc/tcf paths empty
- adapt Docs - add help information in jelly - provide TestConfig tests
MartinGroscheTT
force-pushed
the
i164_improve-test-config-change-handling
branch
from
November 15, 2024 11:15
56dc5b0
to
12c7672
Compare
MartinGroscheTT
approved these changes
Nov 15, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Resolves #164