[
https://issues.apache.org/jira/browse/QPIDIT-75?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15890441#comment-15890441
]
Chuck Rolke commented on QPIDIT-75:
-----------------------------------
I believe that this is an issue with 2.0.0 artemis broker.
* Running the interop tests always hangs in a ProtonCpp->ProtonCpp combo
* Running against Qpidd passes repeatedly
* Putting in a ProtonCpp Receiver on_container_start usleep(250000) gets the
test to pass repeatedly. Patch posted below.
I don't see anything in the protocol traces that is wrong or bad about
ProtonCpp.
{noformat}
(M=83fc5) ratchet /home/chug/git/qpid-interop-test> git diff
diff --git a/shims/qpid-proton-cpp/src/qpidit/amqp_types_test/Receiver.cpp
b/shims/qpid-proton-cpp/src/qpidit/amqp_types_test/Receiver.cpp
index b439ac6..8ed5558 100644
--- a/shims/qpid-proton-cpp/src/qpidit/amqp_types_test/Receiver.cpp
+++ b/shims/qpid-proton-cpp/src/qpidit/amqp_types_test/Receiver.cpp
@@ -23,6 +23,7 @@
#include <iostream>
#include <json/json.h>
+#include <unistd.h>
#include "proton/connection.hpp"
#include "proton/container.hpp"
#include "proton/default_container.hpp"
@@ -58,6 +59,7 @@ namespace qpidit
}
void Receiver::on_container_start(proton::container &c) {
+ usleep(250000);
std::ostringstream oss;
oss << _brokerUrl << "/" << _queueName;
c.open_receiver(oss.str());
diff --git a/src/python/qpid_interop_test/amqp_types_test.py
b/src/python/qpid_interop_test/amqp_types_test.py
index c6c8287..6adf33d 100755
--- a/src/python/qpid_interop_test/amqp_types_test.py
+++ b/src/python/qpid_interop_test/amqp_types_test.py
@@ -271,6 +271,7 @@ class AmqpPrimitiveTypes(TestTypeMap):
'apache-activemq-artemis': 'decimal32 and decimal64 sent
byte reversed: PROTON-1160',
'qpid-dispatch-router': 'decimal32 and decimal64 sent
byte reversed: PROTON-1160',},
'decimal128': {'qpid-cpp': 'decimal128 not supported on qpid-cpp
broker: QPIDIT-3, QPID-6328',
+ 'apache-activemq-artemis': 'decimal32 and decimal64
sent byte reversed: PROTON-1160',
'qpid-dispatch-router': 'router with qpid or activemq
broker',},
'char': {'qpid-cpp': 'char not supported on qpid-cpp broker: QPIDIT-4,
QPID-6328',
'apache-activemq-artemis': 'char types > 16 bits truncated on
Artemis: ENTMQ-1685',
{noformat}
> Install QPIDIT correctly in a Docker image
> ------------------------------------------
>
> Key: QPIDIT-75
> URL: https://issues.apache.org/jira/browse/QPIDIT-75
> Project: Apache QPID IT
> Issue Type: Test
> Components: Installation
> Reporter: Jiri Danek
> Priority: Minor
> Attachments: Dockerfile
>
>
> I checked out QPID-IT and wanted to run it for myself. I decided to use
> Fedora 25 in docker, because I wanted to have a reproducible setup.
> I created a Dockerfile which installs prerequisites and QPID-IT. When I run
> tests, it always freezes after few tests.
> Is there anything wrong about the install?
> Steps to use the Dockerfile
> 1) place the Dockerfile in the top directory of qpid-interop-test
> 2) {{% docker build -t interop .}}
> 3) {{% docker run --rm -it interop bash -c "/artemis200i0/bin/artemis-service
> start; sleep 10; export PYTHONPATH=/usr/lib64/proton/bindings/python/; export
> QIT_INSTALL_PREFIX=/usr; src/python/qpid_interop_test/amqp_types_test.py
> --exclude-shim RheaJs"}}
> {noformat}
> Starting artemis-service
> artemis-service is now running (14)
> WARNING: AMQP DotNetLite shims not installed
> Test Broker: apache-activemq-artemis v.2.0.0-SNAPSHOT on <platform not found>
> test_binary_ProtonCpp->ProtonCpp (__main__.BinaryTestCase) ... ok
> test_binary_ProtonCpp->ProtonPython (__main__.BinaryTestCase) ... ok
> test_binary_ProtonPython->ProtonCpp (__main__.BinaryTestCase) ... ok
> test_binary_ProtonPython->ProtonPython (__main__.BinaryTestCase) ... ok
> test_boolean_ProtonCpp->ProtonCpp (__main__.BooleanTestCase) ...
> {noformat}
> And it stays stuck for quite long time. The output is the same every time I
> run this. I did not wait for long enough to see if it gets unstuck, I admit.
> If I run this with the 1.5.3 broker, meaning in step 3) I do {{% docker run
> --rm -it interop bash -c "/artemis153i0/bin/artemis-service start; sleep 10;
> export PYTHONPATH=/usr/lib64/proton/bindings/python/; export
> QIT_INSTALL_PREFIX=/usr; src/python/qpid_interop_test/amqp_types_test.py
> --exclude-shim RheaJs"}} then the tests seem to succeed, so maybe it is just
> incompatible with Artemis 2.0.0...
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]