Add tests for types of meta fault #3824
Merged
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.
Description
This adds compound tests for whether a fault is a transient error. Variants of this test show up in various locations
in client code so pull into the library. This also doubles as a reference for what transient error conditions exist as
not all of the client tests detail all of these error types.
Additionally this adds a test for whether an InvalidPowerState error is due to the VM already being in the target state.
Checking this is a common pattern when trying to map desired state to imperative API.
This is specifically for PowerOff as I don't yet have a need for the others and didn't want to make the test generic to
the point that it takes a target powerstate as an argument, both to keep callers concise and to avoid a caller needing
to extract possible values from the enum.
How Has This Been Tested?
New unit test, all unit tests passed
Guidelines
Please read and follow the
CONTRIBUTION
guidelines of this project.