[Spark] Spark UC test abstraction to run test on different env. #5702
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.
Which Delta project/connector is this regarding?
Description
Related issue is: #5624
How was this patch tested?
If we want to do the locally test, which means we set up the local OSS uc server for the testing purpose, then we use this command to run:
./build/sbt -DsparkVersion=3.5.7 "testOnly io.sparkuctest.UCDeltaTableDMLTest"If we want to run the same tests against the external UC server, then we can use this command:
In summary, with this abstracted
UnityCatalogExtension, we provided two extension implementations:LocalUCExtension, which means run all the tests locally.RemoteUCExtension, which means run the same tests remotelly.And the good point is: for the new tests developers, they never need to perceive the underlying setup, all they need is extending the
UCDeltaTableIntegrationBaseTest, and write the normal test codes.Does this PR introduce any user-facing changes?
No