handling several messages in parallel in one test case
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-16-2011
01:02 AM
11-16-2011
01:02 AM
handling several messages in parallel in one test case
Hello,
In our current project the interface handles more than one process in parallel.
Additinally the requests expected can occure in different sequences.
That means: the test case expects request A and request B, but the sequence they can occure is not really predictable for the interface.
As I understand SoapUI can handle test cases only sequencially but not handle messages in parallel.
How can I handle with that problem?
Greetings
Andi Kollenbach
In our current project the interface handles more than one process in parallel.
Additinally the requests expected can occure in different sequences.
That means: the test case expects request A and request B, but the sequence they can occure is not really predictable for the interface.
As I understand SoapUI can handle test cases only sequencially but not handle messages in parallel.
How can I handle with that problem?
Greetings
Andi Kollenbach
3 REPLIES 3
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-16-2011
02:06 AM
11-16-2011
02:06 AM
Hi Andi,
You could create two testcases, one for each request and then run the containing testsuite it parallell mode!?
regards!
/Ole
SmartBear Software
Did my reply answer your question? Give Kudos or Accept it as a Solution to help others. ⬇️⬇️⬇️
You could create two testcases, one for each request and then run the containing testsuite it parallell mode!?
regards!
/Ole
SmartBear Software
Did my reply answer your question? Give Kudos or Accept it as a Solution to help others. ⬇️⬇️⬇️
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-17-2011
01:33 AM
11-17-2011
01:33 AM
Hi,
thanks for the hint.
The execution of test cases in parallel is feasible only when test case 1 can trigger test case 2 so that both test cases can run parallelly.
The only way to do so is writing an appropriate Groovy script.
I'd like to suggest a feature for starting a test case by a dedicated test step template.
Greetings
Andi
thanks for the hint.
The execution of test cases in parallel is feasible only when test case 1 can trigger test case 2 so that both test cases can run parallelly.
The only way to do so is writing an appropriate Groovy script.
I'd like to suggest a feature for starting a test case by a dedicated test step template.
Greetings
Andi
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-17-2011
02:03 AM
11-17-2011
02:03 AM
Hi,
I'm not sure I understand how you mean - running the two TestCases in parallel will start them at the same time without any inter-dependencies, isn't that what you needed?
Another alternative would be to have a groovy script that executes the two requests "manually" (ie by submitting corresponding request objects), this can be done asynchronously... but then you would have to assert the responses manually, etc
regards!
/Ole
SmartBear Software
Did my reply answer your question? Give Kudos or Accept it as a Solution to help others. ⬇️⬇️⬇️
I'm not sure I understand how you mean - running the two TestCases in parallel will start them at the same time without any inter-dependencies, isn't that what you needed?
Another alternative would be to have a groovy script that executes the two requests "manually" (ie by submitting corresponding request objects), this can be done asynchronously... but then you would have to assert the responses manually, etc
regards!
/Ole
SmartBear Software
Did my reply answer your question? Give Kudos or Accept it as a Solution to help others. ⬇️⬇️⬇️
