Conversation
Summary of ChangesHello, 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 significantly refactors and enhances the test framework's domain joining capabilities, particularly benefiting GDM-related test scenarios. By centralizing domain enrollment logic into a new helper method and integrating it across relevant topology controllers, the changes improve code reusability and robustness. Additionally, conditional execution of GDM topology setup and teardown based on client features, along with more resilient UI automation commands, contributes to a more flexible and reliable testing environment, especially for passwordless GDM tests. 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. Changelog
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.
Code Review
This pull request introduces several valuable improvements, primarily focused on refactoring domain joining logic and enhancing the GDM test utilities. Consolidating the realm join steps into a join_domain helper method is a significant step forward for code maintainability. The changes to the GDM utilities, such as adding retry logic, should improve test stability. I have provided a couple of suggestions to further enhance the robustness and maintainability of the new code.
b2ddabf to
44a20cd
Compare
ikerexxe
left a comment
There was a problem hiding this comment.
Just some minor issues inline
| if isinstance(provider, (IPAHost)) and result.rc != 0: | ||
| self.logger.info(f"Running realm join for IPA failed with:\n{result.stdout}\n{result.stderr}") | ||
| self.logger.info("Trying uninstall and join again.") | ||
| client.conn.exec(["ipa-client-install", "--uninstall", "-U"]) | ||
| client.conn.exec(["realm", "join", provider.domain], input=provider.adminpw) |
There was a problem hiding this comment.
Missing login for other providers like ADHost and SambaHost
There was a problem hiding this comment.
I wasn't sure if the other provides had similar but, I do realize I left this wide open to silent failure. Is there something I should retry on other providers to uninstall in case the join fails? Or just raise an exception here for all other providers if the join fails?
There was a problem hiding this comment.
Take a look at the update. I fixed it to attempt a realm leave --unattended before the join if not IPA.
With additional changes for the Passwordless GDM tests, the changes allow for better integration with default MHC configs with out pre-provisioning environments. GDM topology controller now joins IPA domain during setup. Additional check in GDMTopologyController for gdm feature so that we skip topology_setup is gdm is not available on the client. Consolidate realm join steps into a join_domain helper method in ProvisionedBackupTopologyController and call it from topology_setup in relevant topologies. Check in join_domain if already joined and leave before attempting a join. Add realmd.conf to join_domain to prevent realm from clobbering krb5.conf. This is seen when joining AD domains.
44a20cd to
cc58cad
Compare
With additional changes for the Passwordless GDM tests, the changes allow for better integration with default MHC configs with out pre-provisioning environments.
GDM topology controller now joins IPA domain during setup.
Additional check in GDMTopologyController for gdm feature so that we skip topology_setup is gdm is not available on the client.
Consolidate realm join steps into a join_domain helper method in ProvisionedBackupTopologyController and call it from topology_setup in relevant topologies.
Check in join_domain if already joined and leave before attempting a join.