summaryrefslogtreecommitdiff
path: root/qpid/cpp/src
diff options
context:
space:
mode:
authorTed Ross <tross@apache.org>2009-11-11 17:33:33 +0000
committerTed Ross <tross@apache.org>2009-11-11 17:33:33 +0000
commitbe410c49703e072fc8ceed97179453ee007a11c1 (patch)
treef89781f3704aeb5247ff370d3e271923b9f03acc /qpid/cpp/src
parent7a86ab591654d744148560e29f7a53553baa0512 (diff)
downloadqpid-python-be410c49703e072fc8ceed97179453ee007a11c1.tar.gz
Added full SASL authentication and security layer for the Python client.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@834975 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src')
-rwxr-xr-xqpid/cpp/src/tests/acl.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/qpid/cpp/src/tests/acl.py b/qpid/cpp/src/tests/acl.py
index 2d776e9941..b27f2f1916 100755
--- a/qpid/cpp/src/tests/acl.py
+++ b/qpid/cpp/src/tests/acl.py
@@ -66,7 +66,7 @@ class ACLTests(TestBase010):
Test the deny all mode
"""
aclf = ACLFile()
- aclf.write('acl allow guest@QPID all all\n')
+ aclf.write('acl allow anonymous all all\n')
aclf.write('acl allow bob@QPID create queue\n')
aclf.write('acl deny all all')
aclf.close()
@@ -330,7 +330,7 @@ class ACLTests(TestBase010):
aclf.write('acl allow bob@QPID create queue name=q4\n')
aclf.write('acl allow bob@QPID delete queue name=q4\n')
aclf.write('acl allow bob@QPID create queue name=q5 maxqueuesize=1000 maxqueuecount=100\n')
- aclf.write('acl allow guest@QPID all all\n')
+ aclf.write('acl allow anonymous all all\n')
aclf.write('acl deny all all')
aclf.close()
@@ -581,7 +581,7 @@ class ACLTests(TestBase010):
aclf.write('acl allow bob@QPID unbind exchange name=amq.topic queuename=bar routingkey=foo.*\n')
aclf.write('acl allow bob@QPID access exchange name=myEx queuename=q1 routingkey=rk1.*\n')
aclf.write('acl allow bob@QPID delete exchange name=myEx\n')
- aclf.write('acl allow guest@QPID all all\n')
+ aclf.write('acl allow anonymous all all\n')
aclf.write('acl deny all all')
aclf.close()
@@ -740,7 +740,7 @@ class ACLTests(TestBase010):
aclf.write('acl allow bob@QPID consume queue name=q1\n')
aclf.write('acl allow bob@QPID consume queue name=q2\n')
aclf.write('acl allow bob@QPID create queue\n')
- aclf.write('acl allow guest@QPID all\n')
+ aclf.write('acl allow anonymous all\n')
aclf.write('acl deny all all')
aclf.close()
@@ -836,7 +836,7 @@ class ACLTests(TestBase010):
aclf.write('acl allow bob@QPID publish exchange name=amq.topic\n')
aclf.write('acl allow bob@QPID publish exchange name=myEx routingkey=rk2\n')
aclf.write('acl allow bob@QPID create exchange\n')
- aclf.write('acl allow guest@QPID all all \n')
+ aclf.write('acl allow anonymous all all \n')
aclf.write('acl deny all all')
aclf.close()