-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
[ST] Refactor methods in AbstractST #9661
Conversation
@strimzi-ci run tests --cluster-type=ocp --cluster-version=4.14 --install-type=bundle --profile=acceptance |
|
✔️ Test Summary ✔️TEST_PROFILE: acceptance |
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.
Thanks a lot for the PR :)
Few comments. I know that most of the things are not from you, but in case we are refactoring these classes, we should also consider removing old stuff, doing the things in more "modern" way, and check if everything is really needed (or correctly named).
systemtest/src/main/java/io/strimzi/systemtest/utils/StUtils.java
Outdated
Show resolved
Hide resolved
systemtest/src/main/java/io/strimzi/systemtest/utils/StUtils.java
Outdated
Show resolved
Hide resolved
systemtest/src/main/java/io/strimzi/systemtest/utils/VerificationUtils.java
Outdated
Show resolved
Hide resolved
systemtest/src/main/java/io/strimzi/systemtest/utils/StUtils.java
Outdated
Show resolved
Hide resolved
systemtest/src/main/java/io/strimzi/systemtest/utils/VerificationUtils.java
Outdated
Show resolved
Hide resolved
systemtest/src/main/java/io/strimzi/systemtest/utils/VerificationUtils.java
Outdated
Show resolved
Hide resolved
systemtest/src/main/java/io/strimzi/systemtest/utils/VerificationUtils.java
Outdated
Show resolved
Hide resolved
systemtest/src/main/java/io/strimzi/systemtest/utils/VerificationUtils.java
Outdated
Show resolved
Hide resolved
systemtest/src/test/java/io/strimzi/systemtest/connect/ConnectST.java
Outdated
Show resolved
Hide resolved
systemtest/src/test/java/io/strimzi/systemtest/operators/user/UserST.java
Outdated
Show resolved
Hide resolved
systemtest/src/test/java/io/strimzi/systemtest/mirrormaker/MirrorMakerST.java
Outdated
Show resolved
Hide resolved
systemtest/src/test/java/io/strimzi/systemtest/mirrormaker/MirrorMakerST.java
Outdated
Show resolved
Hide resolved
c83dffc
to
eafc0ef
Compare
/azp run regression |
Azure Pipelines successfully started running 1 pipeline(s). |
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.
LGTM, Assuming the test pass.
Signed-off-by: jkalinic <[email protected]>
eafc0ef
to
3ac3ea2
Compare
Signed-off-by: jkalinic <[email protected]>
/azp run regression |
Azure Pipelines successfully started running 1 pipeline(s). |
Tests pass, only one test which fails is now common failure - testCruiseControlDuringBrokerScaleUpAndDown which is not caused by this PR and is being worked on |
Type of change
Description
This pull request serves as a follow-up to the refactoring of AbstractST. In this iteration, the focus is on moving methods that aren't extensively utilized by most tests. By relocating these methods to more appropriate locations, we aim to enhance code organization and ensure that AbstractST contains only the most relevant and commonly used methods.
Checklist