Mass removal of all Tabs (Style Warnings)
[aaf/authz.git] / auth / auth-cmd / src / test / java / org / onap / aaf / auth / cmd / test / perm / JU_Describe.java
1 /*******************************************************************************
2  * ============LICENSE_START====================================================
3  * * org.onap.aaf
4  * * ===========================================================================
5  * * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
6  * * ===========================================================================
7  * * Licensed under the Apache License, Version 2.0 (the "License");
8  * * you may not use this file except in compliance with the License.
9  * * You may obtain a copy of the License at
10  * * 
11  *  *      http://www.apache.org/licenses/LICENSE-2.0
12  * * 
13  *  * Unless required by applicable law or agreed to in writing, software
14  * * distributed under the License is distributed on an "AS IS" BASIS,
15  * * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * * See the License for the specific language governing permissions and
17  * * limitations under the License.
18  * * ============LICENSE_END====================================================
19  * *
20  * *
21  ******************************************************************************/
22 package org.onap.aaf.auth.cmd.test.perm;
23
24 import static org.mockito.Matchers.any;
25 import static org.mockito.Mockito.when;
26
27 import org.junit.Before;
28
29 import java.io.ByteArrayOutputStream;
30 import java.io.PrintStream;
31 import java.io.Writer;
32 import java.net.HttpURLConnection;
33 import java.net.URI;
34 import java.net.URISyntaxException;
35
36 import org.junit.Test;
37 import org.junit.runner.RunWith;
38 import org.mockito.Mock;
39 import org.mockito.MockitoAnnotations;
40 import org.mockito.runners.MockitoJUnitRunner;
41 import org.onap.aaf.auth.cmd.AAFcli;
42 import org.onap.aaf.auth.env.AuthzEnv;
43 import org.onap.aaf.cadi.CadiException;
44 import org.onap.aaf.cadi.Locator;
45 import org.onap.aaf.cadi.LocatorException;
46 import org.onap.aaf.cadi.PropAccess;
47 import org.onap.aaf.cadi.SecuritySetter;
48 import org.onap.aaf.cadi.client.Future;
49 import org.onap.aaf.cadi.client.Rcli;
50 import org.onap.aaf.misc.env.APIException;
51
52 import org.onap.aaf.auth.cmd.perm.Describe;
53 import org.onap.aaf.auth.cmd.perm.Perm;
54 import org.onap.aaf.auth.cmd.role.Role;
55 import org.onap.aaf.auth.cmd.test.HMangrStub;
56
57 @RunWith(MockitoJUnitRunner.class)
58 public class JU_Describe {
59
60     @Mock private SecuritySetter<HttpURLConnection> ssMock;
61     @Mock private Locator<URI> locMock;
62     @Mock private Writer wrtMock;
63     @Mock private Rcli<HttpURLConnection> clientMock;
64     @Mock private Future<String> futureMock;
65
66     private PropAccess access;
67     private HMangrStub hman;    
68     private AuthzEnv aEnv;
69     private AAFcli aafcli;
70     
71     private Describe desc;
72     
73     @Before
74     public void setUp () throws NoSuchFieldException, SecurityException, Exception, IllegalAccessException {
75         MockitoAnnotations.initMocks(this);
76
77         when(clientMock.create(any(), any(), any(String.class))).thenReturn(futureMock);
78         when(clientMock.delete(any(), any(), any(String.class))).thenReturn(futureMock);
79         when(clientMock.update(any(), any(), any(String.class))).thenReturn(futureMock);
80
81         hman = new HMangrStub(access, locMock, clientMock);
82         access = new PropAccess(new PrintStream(new ByteArrayOutputStream()), new String[0]);
83         aEnv = new AuthzEnv();
84         aafcli = new AAFcli(access, aEnv, wrtMock, hman, null, ssMock);
85
86         Role role = new Role(aafcli);
87         Perm perm = new Perm(role);
88
89         desc = new Describe(perm);
90     }
91     
92     @Test
93     public void testExecError() throws APIException, LocatorException, CadiException, URISyntaxException {
94         desc._exec(0, new String[] {"grant","ungrant","setTo","grant","ungrant","setTo"});
95     }
96     
97     @Test
98     public void testExecSuccess1() throws APIException, LocatorException, CadiException, URISyntaxException {
99         when(futureMock.code()).thenReturn(202);
100         desc._exec(0, new String[] {"grant","ungrant","setTo","grant","ungrant","setTo"});
101     }
102     
103     @Test
104     public void testExecSuccess2() throws APIException, LocatorException, CadiException, URISyntaxException {
105         when(futureMock.get(any(Integer.class))).thenReturn(true);
106         desc._exec(0, new String[] {"grant","ungrant","setTo","grant","ungrant","setTo"});
107     }
108     
109     @Test
110     public void testDetailedHelp() {
111         StringBuilder sb = new StringBuilder();
112         desc.detailedHelp(0, sb);
113     }
114 }