-
Notifications
You must be signed in to change notification settings - Fork 880
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor: move functional test suite scaffolding code to FunctionalTe…
…stBase (#7085) ## What changed? <!-- Describe what has changed in this PR --> Main change is: move functional test suite scaffolding code to `FunctionalTestBase`. Most of the scaffolding code and test helpers (more to move) are now in `FunctionalTestBase`. Hierarchy is the following: ``` - FunctionalTestBase - base for all functional tests - FunctionalTestSuite - has TaskPoller in it and should be used as base for all non-SDK based tests - many test suites such as TestUpdateWorkflowSuite. - ... - ... - FunctionalTestSdkSuite - has SdkClient and SdkWorker in it and should be used as base for all SDK based tests - many test suites such as UpdateWorkflowSdkSuite - ... - ... - some test suites which don't need neither task poller nor SDK. Such as TLSFunctionalSuite ``` Few minor refactorings: - replace `SetDynamicConfigOverrides` method with `WithDynamicConfigOverrides` option for `SetupTestCluster()` method. More DC cleanups are needed there. - Many renames for better readability. - Left few TODOs for myself, for later. ## Why? <!-- Tell your future self why have you made these changes --> ## How did you test it? <!-- How have you verified this change? Tested locally? Added a unit test? Checked in staging env? --> Run it. ## Potential risks <!-- Assuming the worst case, what can be broken when deploying this change to production? --> No risks. ## Documentation <!-- Have you made sure this change doesn't falsify anything currently stated in `docs/`? If significant new behavior is added, have you described that in `docs/`? --> No. ## Is hotfix candidate? <!-- Is this PR a hotfix candidate or does it require a notification to be sent to the broader community? (Yes/No) --> No.
- Loading branch information
Showing
70 changed files
with
449 additions
and
937 deletions.
There are no files selected for viewing
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
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
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
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
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
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
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
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
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
Oops, something went wrong.