summaryrefslogtreecommitdiff
path: root/qpid/python/qpid_tests/broker_1_0/general.py
diff options
context:
space:
mode:
Diffstat (limited to 'qpid/python/qpid_tests/broker_1_0/general.py')
-rw-r--r--qpid/python/qpid_tests/broker_1_0/general.py81
1 files changed, 81 insertions, 0 deletions
diff --git a/qpid/python/qpid_tests/broker_1_0/general.py b/qpid/python/qpid_tests/broker_1_0/general.py
new file mode 100644
index 0000000000..a5b9779add
--- /dev/null
+++ b/qpid/python/qpid_tests/broker_1_0/general.py
@@ -0,0 +1,81 @@
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+#
+
+from qpid.tests.messaging.implementation import *
+from qpid.tests.messaging import VersionTest
+
+class GeneralTests (VersionTest):
+ """
+ Miscellaneous tests for core AMQP 1.0 messaging behaviour.
+ """
+ def test_request_response(self):
+ snd_request = self.ssn.sender("#")
+ rcv_response = self.ssn.receiver("#")
+
+ #send request
+ snd_request.send(Message(reply_to=rcv_response.source, id="a1", content="request"))
+
+ #receive request
+ rcv_request = self.ssn.receiver(snd_request.target)
+ request = rcv_request.fetch(5)
+ assert request.content == "request" and request.id == "a1", request
+ #send response
+ snd_response = self.ssn.sender(request.reply_to)
+ snd_response.send(Message(correlation_id=request.id, content="response"))
+
+ #receive response
+ response = rcv_response.fetch(5)
+ assert response.content == "response" and response.correlation_id == "a1", response
+
+ self.ssn.acknowledge()
+
+
+ def test_browse(self):
+ snd = self.ssn.sender("#")
+ rcv = self.ssn.receiver("%s; {mode: browse}" % snd.target)
+
+ msgs = [Message(content=s, subject = s) for s in ['a','b','c','d']]
+
+ for m in msgs: snd.send(m)
+
+ for expected in msgs:
+ msg = rcv.fetch(0)
+ assert msg.content == expected.content
+ try:
+ assert msg.properties.get('x-amqp-delivery-count') == 0, (msg.properties.get('x-amqp-delivery-count'))
+ except KeyError, e: None #default is 0
+ self.ssn.acknowledge(msg)
+ rcv.close()
+
+ rcv = self.ssn.receiver(snd.target)
+ for expected in msgs:
+ msg = rcv.fetch(0)
+ assert msg.content == expected.content
+ self.ssn.acknowledge(msg)
+
+ def test_anonymous_relay(self):
+ snd = self.ssn.sender("<null>")
+ rcv = self.ssn.receiver("#")
+
+ snd.send(Message(id="a1", content="my-message", properties={'x-amqp-to':rcv.source}))
+
+ request = rcv.fetch(5)
+ assert request.content == "my-message" and request.id == "a1", request
+
+ self.ssn.acknowledge()