diff options
| author | Ted Ross <tross@apache.org> | 2012-07-26 14:38:53 +0000 |
|---|---|---|
| committer | Ted Ross <tross@apache.org> | 2012-07-26 14:38:53 +0000 |
| commit | 636830f7161ee1bc772e7d96716cdb3264002cb7 (patch) | |
| tree | 3073c079723ccd3c4279afc4e20999a905be8896 /qpid/cpp/src/tests/ssl_test | |
| parent | f5707c7969f5bac6700c37c946dbfb0eb9a8d7ef (diff) | |
| download | qpid-python-636830f7161ee1bc772e7d96716cdb3264002cb7.tar.gz | |
QPID-3175 - Added SSL/x.509-auth capability to Python clients and Python tools
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1366020 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/tests/ssl_test')
| -rwxr-xr-x | qpid/cpp/src/tests/ssl_test | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/qpid/cpp/src/tests/ssl_test b/qpid/cpp/src/tests/ssl_test index 91ff8eec1e..19a316a483 100755 --- a/qpid/cpp/src/tests/ssl_test +++ b/qpid/cpp/src/tests/ssl_test @@ -148,6 +148,11 @@ URL=$TEST_HOSTNAME:$PORT MSG=`./qpid-receive -b $URL --connection-options '{transport:ssl,heartbeat:2}' -a "foo;{create:always}" --messages 1` test "$MSG" = "hello again" || { echo "receive failed '$MSG' != 'hello again'"; exit 1; } +## Test using the Python client +echo "Testing Non-Authenticating with Python Client..." +URL=amqps://$TEST_HOSTNAME:$PORT +if `$top_srcdir/src/tests/ping_broker -b $URL`; then echo " Passed"; else { echo " Failed"; exit 1; }; fi + #### Client Authentication tests start_authenticating_broker |
