My application has a two completly seperated application servers.
They speak with each others in various models for instance.
A puts a file in a Folder
B listen and reads the file, create a response FILE in a new Folder
A picks up the “response” file.
Same thing with JMS:
A publish something
B will listen and Reply
Now, I want to test this with application A only so that I have some sort of dynamic stub simulating B that is triggered when my real application A is creating the file or the Topic.
Any framworks that can support this?
I saw Mactor, but it looks like a dead project, any other sugegstions?
To solve this requirment, to perform relativly good level of integration testing with external system we have no control over. We used Jmeter.
Jmeter has the capability to listen on a JMS resource, wait for a request and act upon it, we used a set of stubs to represents the logic of the real system that way.