i'm trying to use wiremock to facilitate mocking a variety external apis in tests via recordings/replay (something like ruby's
vcr library). what would be the simplest set of wiremock extensions (or better yet, built-in functionality) to capture and pass something like a uuid through a sequence of requests obtained via recording, such that the recording can be played back in a uuid-independent way.
would a
StubRequestFilterV2
be suitable for doing something like this? one that re-writes the body the of the requests using information passed to the transformers via the specific test?
(oops posted in the wrong spot, also details in thread)