Hi there,
I’m trying to test the behavior of my incoming and outgoing message mutator implementations. The testing library provides mocks/fakes for basically all type of contexts, but I’m not sure why there isn’t one for the MutateOutgoingTransportMessageContext. I would have expected a TestableMutateOutgoingTransportMessageContext. What am I missing? Is there an alternative way of testing those?
thanks for your response. It looks like this works for Behaviors, is there anything similar for Message Mutators inheriting from IMutateOutgoingTransportMessages?
This is essentially what I’m trying to do:
var mutator= new AddCurrentPrincipalToOutgoingHeadersMutator(_userPrincipalAccessor.Object);
await mutator.MutateOutgoing(<what_to_put_here>);
But I can’t find a testable context for this scenario.
Tamara and I worked on a solution that may work well for you.
I added an example with a custom TestableOutgoingMessageMutatorContext factory that can easily create the context you requested. The sample also shows you how to use it in a test.