summaryrefslogtreecommitdiff
path: root/java/systests/src/main/java/org/apache/qpid/server/security/acl/ExternalACLJMXTest.java
blob: b823690002c737408b4f488548c81efaebb2a4f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
/*
 *  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.
 */
package org.apache.qpid.server.security.acl;

import java.util.Arrays;
import java.util.List;

import org.apache.qpid.AMQConnectionClosedException;
import org.apache.qpid.AMQException;
import org.apache.qpid.AMQSecurityException;
import org.apache.qpid.protocol.AMQConstant;
import org.apache.qpid.test.utils.JMXTestUtils;

/**
 * Tests that ACL entries that apply to AMQP objects also apply when those objects are accessed via JMX.
 */
public class ExternalACLJMXTest extends AbstractACLTestCase
{
    private JMXTestUtils _jmx;
    
    private static final String QUEUE_NAME = "kipper";
    private static final String EXCHANGE_NAME = "amq.kipper";
    
    @Override
    public String getConfig()
    {
        return "config-systests-aclv2.xml";
    }

    @Override
    public List<String> getHostList()
    {
        return Arrays.asList("test");
    }

    @Override
    public void setUp() throws Exception
    {
        _jmx = new JMXTestUtils(this, "admin", "admin");
        _jmx.setUp();
        super.setUp();
        _jmx.open();
    }
    
    @Override
    public void tearDown() throws Exception
    {
        _jmx.close();
        super.tearDown();
    }

    // test-externalacljmx.txt
    // create queue owner=client # success
    public void testCreateClientQueueSuccess() throws Exception
    {   
        //Queue Parameters
        String queueOwner = "client";
        
        _jmx.createQueue("test", QUEUE_NAME, queueOwner, true);
    }

    // test-externalacljmx.txt
    // create queue owner=client # failure
    public void testCreateServerQueueFailure() throws Exception
    {   
        //Queue Parameters
        String queueOwner = "server";
        
        try
        {
            _jmx.createQueue("test", QUEUE_NAME, queueOwner, true);
            
            fail("Queue create should fail");
        }
        catch (Exception e)
        {
            assertNotNull("Cause is not set", e.getCause());
            assertEquals("Cause message incorrect",
                    "org.apache.qpid.AMQSecurityException: Permission denied: queue-name 'kipper' [error code 403: access refused]", e.getCause().getMessage());
        }
    }

    // no create queue acl in file # failure
    public void testCreateQueueFailure() throws Exception
    {   
        //Queue Parameters
        String queueOwner = "guest";
        
        try
        {
            _jmx.createQueue("test", QUEUE_NAME, queueOwner, true);
            
            fail("Queue create should fail");
        }
        catch (Exception e)
        {
            assertNotNull("Cause is not set", e.getCause());
            assertEquals("Cause message incorrect",
                    "org.apache.qpid.AMQSecurityException: Permission denied: queue-name 'kipper' [error code 403: access refused]", e.getCause().getMessage());
        }
    }

    // test-externalacljmx.txt
    // allow create exchange name=amq.kipper.success
    public void testCreateExchangeSuccess() throws Exception
    {   
        _jmx.createExchange("test", EXCHANGE_NAME + ".success", "direct", true);
    }

    // test-externalacljmx.txt
    // deny create exchange name=amq.kipper.failure
    public void testCreateExchangeFailure() throws Exception
    {   
        try
        {
            _jmx.createExchange("test", EXCHANGE_NAME + ".failure", "direct", true);
            
            fail("Exchange create should fail");
        }
        catch (Exception e)
        {
            assertNotNull("Cause is not set", e.getCause());
            assertEquals("Cause message incorrect",
                    "org.apache.qpid.AMQSecurityException: Permission denied: exchange-name 'amq.kipper.failure' [error code 403: access refused]", e.getCause().getMessage());
        }
    }

    // test-externalacljmx.txt
    // allow create exchange name=amq.kipper.success
    // allow delete exchange name=amq.kipper.success
    public void testDeleteExchangeSuccess() throws Exception
    {   
        _jmx.createExchange("test", EXCHANGE_NAME + ".success", "direct", true);
        _jmx.unregisterExchange("test", EXCHANGE_NAME + ".success");
    }

    // test-externalacljmx-deleteexchangefailure.txt
    // allow create exchange name=amq.kipper.delete
    // deny delete exchange name=amq.kipper.delete
    public void testDeleteExchangeFailure() throws Exception
    {   
        _jmx.createExchange("test", EXCHANGE_NAME + ".delete", "direct", true);
        try
        {
            _jmx.unregisterExchange("test", EXCHANGE_NAME + ".delete");
            
            fail("Exchange delete should fail");
        }
        catch (Exception e)
        {
            assertNotNull("Cause is not set", e.getCause());
            assertEquals("Cause message incorrect",
                    "org.apache.qpid.AMQSecurityException: Permission denied [error code 403: access refused]", e.getCause().getMessage());
        }
    }
    
    /**
     * admin user has JMX right but not AMQP
     */
    public void setUpCreateQueueJMXRights() throws Exception
    {
        writeACLFile("test",
                "ACL ALLOW admin EXECUTE METHOD component=\"VirtualHost.VirtualHostManager\" name=\"createNewQueue\"",
			    "ACL DENY admin CREATE QUEUE");
    }
    
    public void testCreateQueueJMXRights() throws Exception
    {
        try
        {
            _jmx.createQueue("test", QUEUE_NAME, "admin", true);
            
            fail("Queue create should fail");
        }
        catch (Exception e)
        {
            assertNotNull("Cause is not set", e.getCause());
            assertEquals("Cause message incorrect",
                    "org.apache.qpid.AMQSecurityException: Permission denied: queue-name 'kipper' [error code 403: access refused]", e.getCause().getMessage());
        }
    }

    /**
     * admin user has AMQP right but not JMX
     */
    public void setUpCreateQueueAMQPRights() throws Exception
    {
        writeACLFile("test",
	    		"ACL DENY admin EXECUTE METHOD component=\"VirtualHost.VirtualHostManager\" name=\"createNewQueue\"",
	    		"ACL ALLOW admin CREATE QUEUE");
    }
    
    public void testCreateQueueAMQPRights() throws Exception
    {
        try
        {
            _jmx.createQueue("test", QUEUE_NAME, "admin", true);
            
            fail("Queue create should fail");
        }
        catch (Exception e)
        {
            assertEquals("Cause message incorrect", "Permission denied: Execute createNewQueue", e.getMessage());
        }
    }

    /**
     * admin has both JMX and AMQP rights
     */
    public void setUpCreateQueueJMXAMQPRights() throws Exception
    {
        writeACLFile("test",
                    "ACL ALLOW admin EXECUTE METHOD component=\"VirtualHost.VirtualHostManager\" name=\"createNewQueue\"",
                    "ACL ALLOW admin CREATE QUEUE");
    }
    
    public void testCreateQueueJMXAMQPRights() throws Exception
    {
        try
        {
            _jmx.createQueue("test", QUEUE_NAME, "admin", true);
        }
        catch (Exception e)
        {
            fail("Queue create should succeed: " + e.getCause().getMessage());
        }
    }
}