citrus icon indicating copy to clipboard operation
citrus copied to clipboard

Message-tracing: is it possible to have all messages stored?

Open olha-bastieieva opened this issue 8 years ago • 0 comments

Hi,

In my test case I have http-server which mocks services, and the whole test case structure looks like:

http().client.post() // initialize start process for system under test
http().client.response() 
http().server.recieve() // mocked service receives request from system under test
http().server.respond()
...
http().server.recieve()
http().server.respond()

I tried to use tracing of messages (http://www.citrusframework.org/reference/html/message-tracing.html) to debug my test case, and added both and interceptor for my client and server, but saved messages file contains only messages related to part client.post - client.response, and doesn't contain messages for server.recieve - server.respond. Is it possible to have all messages tracked?

olha-bastieieva avatar Jan 20 '17 10:01 olha-bastieieva