You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by gs...@apache.org on 2013/10/15 14:42:21 UTC

svn commit: r1532311 - in /qpid/trunk/qpid/cpp/src/tests: reject_release.py swig_python_tests

Author: gsim
Date: Tue Oct 15 12:42:20 2013
New Revision: 1532311

URL: http://svn.apache.org/r1532311
Log:
QPID-5229: tests for reject and release over 1.0

Added:
    qpid/trunk/qpid/cpp/src/tests/reject_release.py
Modified:
    qpid/trunk/qpid/cpp/src/tests/swig_python_tests

Added: qpid/trunk/qpid/cpp/src/tests/reject_release.py
URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/cpp/src/tests/reject_release.py?rev=1532311&view=auto
==============================================================================
--- qpid/trunk/qpid/cpp/src/tests/reject_release.py (added)
+++ qpid/trunk/qpid/cpp/src/tests/reject_release.py Tue Oct 15 12:42:20 2013
@@ -0,0 +1,65 @@
+#
+# 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 RejectReleaseTests (VersionTest):
+    """
+    Tests for reject and release with qpidd
+    """
+    def test_reject(self):
+        name = str(uuid4())
+        snd = self.ssn.sender("%s; {create:always, node:{properties:{alternate-exchange:amq.fanout}}}" % name)
+        rcv = self.ssn.receiver(name)
+        rcv2 = self.ssn.receiver("amq.fanout")
+
+        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
+            self.ssn.reject(msg)
+
+        for expected in msgs:
+            msg = rcv2.fetch(0)
+            assert msg.content == expected.content
+
+    def test_release(self):
+        snd = self.ssn.sender("#")
+        rcv = self.ssn.receiver(snd.target)
+
+        msgs = [Message(content=s, subject = s) for s in ['a','b','c','d']]
+
+        for m in msgs: snd.send(m)
+
+        msg = rcv.fetch(0)
+        assert msg.content == "a"
+        self.ssn.release(msg)
+
+        msg = rcv.fetch(0)
+        assert msg.content == "a"
+        self.ssn.acknowledge(msg)
+
+        msg = rcv.fetch(0)
+        assert msg.content == "b"
+        self.ssn.release(msg)
+

Modified: qpid/trunk/qpid/cpp/src/tests/swig_python_tests
URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/cpp/src/tests/swig_python_tests?rev=1532311&r1=1532310&r2=1532311&view=diff
==============================================================================
--- qpid/trunk/qpid/cpp/src/tests/swig_python_tests (original)
+++ qpid/trunk/qpid/cpp/src/tests/swig_python_tests Tue Oct 15 12:42:20 2013
@@ -53,7 +53,7 @@ export PYTHONPATH=$PYTHONPATH:$PYTHONPAT
 export QPID_USE_SWIG_CLIENT=1
 $QPID_PYTHON_TEST -m qpid.tests.messaging.message -m qpid_tests.broker_0_10.priority -m qpid_tests.broker_0_10.lvq -m qpid_tests.broker_0_10.new_api -b localhost:$QPID_PORT -I $srcdir/failing-amqp0-10-python-tests || FAILED=1
 if [[ -a $AMQP_LIB ]] ; then
-    $QPID_PYTHON_TEST --define="protocol_version=amqp1.0" -m qpid_tests.broker_1_0 -m qpid_tests.broker_0_10.new_api -m assertions -b localhost:$QPID_PORT -I $srcdir/failing-amqp1.0-python-tests || FAILED=1
+    $QPID_PYTHON_TEST --define="protocol_version=amqp1.0" -m qpid_tests.broker_1_0 -m qpid_tests.broker_0_10.new_api -m assertions -m reject_release -b localhost:$QPID_PORT -I $srcdir/failing-amqp1.0-python-tests || FAILED=1
 fi
 stop_broker
 if [[ $FAILED -eq 1 ]]; then



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org