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

fix: allow keeping deleted CRDs in test with configuration #2687

Merged
merged 1 commit into from
Feb 17, 2025

Conversation

xstefank
Copy link
Collaborator

No description provided.

@@ -43,6 +43,8 @@ public class LocallyRunOperatorExtension extends AbstractOperatorExtension {

private static final Logger LOGGER = LoggerFactory.getLogger(LocallyRunOperatorExtension.class);
private static final int CRD_DELETE_TIMEOUT = 1000;
private static final LinkedList<AppliedCRD> appliedCRDs = new LinkedList<>();
private static final boolean deleteCRDs = Boolean.parseBoolean(System.getProperty("testsuite.deleteCRDs", "true"));
Copy link
Collaborator

Choose a reason for hiding this comment

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

Shouldn't be these rather here as other configs?
Config

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

I don't think we want to configure this per Test, but rather for the whole testsuite. I think that per test it can be confusing.

Copy link
Collaborator

Choose a reason for hiding this comment

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

Hmm, good point,
I'm working this this now:
#2688
And here the CRD's will have to be managed manually, but fur sure be at least one step where the CRD is updated. But that should be fine too, so yes, if we see that this canont cover such use cases when in particular tests user wants to manage use cases we can still add a property also to builder.

Copy link
Collaborator

@csviri csviri left a comment

Choose a reason for hiding this comment

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

LinkedList is not necessary for ordering in this case, but this is just a nit. So LGTM.

@xstefank
Copy link
Collaborator Author

@csviri refactored it to ArrayDeque. I think we can merge this.

@csviri
Copy link
Collaborator

csviri commented Feb 17, 2025

@xstefank This is just test, it has zero implications what data structure we use there, there fore in these places I usually prefer using the well known data structures like ArrayList. First time somebody going to read that part of "code will ask the question why is there a Dequeu, why is that so specific?". (So might be in this case also reason to make a comment about it). But fine by me.

let's wait until @metacosm approves it too, then we can merge. The agreement is both of us approve PRs (except documentation updates).

@xstefank
Copy link
Collaborator Author

just changed to LIFO as it makes more sense IMO.

@xstefank xstefank requested a review from metacosm February 17, 2025 13:29
@csviri
Copy link
Collaborator

csviri commented Feb 17, 2025

just changed to LIFO as it makes more sense IMO.

If we would like to be absolutely correct, Set should be used, to indicate that the order does not matter. IMHO.

@xstefank
Copy link
Collaborator Author

and it is Set :)

@@ -8,11 +8,16 @@
import java.nio.file.Files;
import java.nio.file.Path;
import java.time.Duration;
import java.util.ArrayDeque;
Copy link
Collaborator

Choose a reason for hiding this comment

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

Seems like imports need to be optimized…

@xstefank xstefank merged commit 8bdc402 into operator-framework:main Feb 17, 2025
57 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.

3 participants