I have a spring webflow that I would like to test that certain values make it to the model that gets handed to the end-state. During the flow I would just check the flowscope variables, but after the flow is complete these are no longer available. Is there another way to test the data that is populated in the model after the flow has ended?

I was using this to create the test but it only covers testing during the flow.

link|improve this question
feedback

1 Answer

I wasn't able to find a complete answer for this, but here is what I have found.

As long as the webflow has one view state so you can get the flowScope then you can use that for testing.

assertFlowExecutionActive();
// Save the flowScope for testing later
MutableAttributeMap flowScope = getFlowScope();
// do other stuff to bring on the end-state
assertFlowExecutionEnded();
// then test the flowScope
assertThat(flowScope.getString("someVar"), equalTo("someOutcome"));

The model has at least the flowScope passed to it. I don't know what else is passed, but at least you can test some of the items.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.