summaryrefslogtreecommitdiff
path: root/qpid/java/perftests/etc/testdefs
diff options
context:
space:
mode:
authorKeith Wall <kwall@apache.org>2012-07-17 14:09:37 +0000
committerKeith Wall <kwall@apache.org>2012-07-17 14:09:37 +0000
commit0e22d4ab6aaa6d300eb150dde3a4702cace043c5 (patch)
treedd8c8db6732ac2650384db5e79376777ea181902 /qpid/java/perftests/etc/testdefs
parent1b11ea556b73c4374a1c93d8707dc9aa57b209e1 (diff)
downloadqpid-python-0e22d4ab6aaa6d300eb150dde3a4702cace043c5.tar.gz
QPID-4143: tweaked topic test config to introduce a start delay on message production, allowing the consumers enough time to implicitly create the queues (unfortunately the Qpid client can't explicitly create topics).
Also improved error reporting and increased time outs to better cope with large scale tests. Applied patch from Philip Harvey <phil@philharveyonline.com> git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1362502 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java/perftests/etc/testdefs')
-rw-r--r--qpid/java/perftests/etc/testdefs/Topic-AckModes.js3
-rw-r--r--qpid/java/perftests/etc/testdefs/Topic-NumberOfConsumers.js3
-rw-r--r--qpid/java/perftests/etc/testdefs/Topic-NumberOfTopics.js3
-rw-r--r--qpid/java/perftests/etc/testdefs/Topic-Persistence.js1
4 files changed, 7 insertions, 3 deletions
diff --git a/qpid/java/perftests/etc/testdefs/Topic-AckModes.js b/qpid/java/perftests/etc/testdefs/Topic-AckModes.js
index 0ad519aa50..5c4dee88e3 100644
--- a/qpid/java/perftests/etc/testdefs/Topic-AckModes.js
+++ b/qpid/java/perftests/etc/testdefs/Topic-AckModes.js
@@ -30,7 +30,8 @@ var jsonObject = {
{
"_name": "Producer",
"_destinationName": topicName,
- "_maximumDuration": duration
+ "_maximumDuration": duration,
+ "_startDelay": 2000 // gives the consumers time to implicitly create the topic
}
]
}
diff --git a/qpid/java/perftests/etc/testdefs/Topic-NumberOfConsumers.js b/qpid/java/perftests/etc/testdefs/Topic-NumberOfConsumers.js
index 9351987115..751b8b1528 100644
--- a/qpid/java/perftests/etc/testdefs/Topic-NumberOfConsumers.js
+++ b/qpid/java/perftests/etc/testdefs/Topic-NumberOfConsumers.js
@@ -26,7 +26,8 @@ for(i=0; i < numbersOfConsumers.length ; i++)
{
"_name": "Producer1",
"_destinationName": topicName,
- "_maximumDuration": duration
+ "_maximumDuration": duration,
+ "_startDelay": 2000 // gives the consumers time to implicitly create the topic
}
]
}
diff --git a/qpid/java/perftests/etc/testdefs/Topic-NumberOfTopics.js b/qpid/java/perftests/etc/testdefs/Topic-NumberOfTopics.js
index 227650a16d..89e5ecf56c 100644
--- a/qpid/java/perftests/etc/testdefs/Topic-NumberOfTopics.js
+++ b/qpid/java/perftests/etc/testdefs/Topic-NumberOfTopics.js
@@ -29,7 +29,8 @@ for(i=0; i < numbersOfTopics.length ; i++)
{
"_name": "Producer-__INDEX",
"_destinationName": topicName,
- "_maximumDuration": duration
+ "_maximumDuration": duration,
+ "_startDelay": 2000 // gives the consumers time to implicitly create the topic
}
]
}
diff --git a/qpid/java/perftests/etc/testdefs/Topic-Persistence.js b/qpid/java/perftests/etc/testdefs/Topic-Persistence.js
index d843d37861..fd92560fc3 100644
--- a/qpid/java/perftests/etc/testdefs/Topic-Persistence.js
+++ b/qpid/java/perftests/etc/testdefs/Topic-Persistence.js
@@ -32,6 +32,7 @@ var jsonObject = {
"_name": "Producer",
"_destinationName": topicName,
"_maximumDuration": duration,
+ "_startDelay": 2000 // gives the consumers time to implicitly create the topic
}
]
}