summaryrefslogtreecommitdiffstats
path: root/auth/auth-core/src/test/java/org/onap/aaf/auth/env/test/JU_AuthzTransImpl.java
blob: f4481ed499081ccfbf3ce0a2f9a554cd69e768c7 (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
/*******************************************************************************
 * ============LICENSE_START====================================================
 * * org.onap.aaf
 * * ===========================================================================
 * * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
 * * ===========================================================================
 * * Licensed 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.
 * * ============LICENSE_END====================================================
 * *
 * *
 ******************************************************************************/

package org.onap.aaf.auth.env.test;

import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.when;

import java.security.Principal;
import java.util.Date;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.Mock;
import org.onap.aaf.auth.env.AuthzEnv;
import org.onap.aaf.auth.env.AuthzTransImpl;
import org.onap.aaf.auth.env.AuthzTrans.REQD_TYPE;
import org.onap.aaf.auth.org.Organization;
import org.onap.aaf.auth.org.OrganizationFactory;
import org.onap.aaf.cadi.Lur;
import org.onap.aaf.cadi.Permission;
import org.onap.aaf.misc.env.Env;
import org.onap.aaf.misc.env.LogTarget;
import org.powermock.modules.junit4.PowerMockRunner;

import junit.framework.Assert;

@RunWith(PowerMockRunner.class)
public class JU_AuthzTransImpl {

    AuthzTransImpl authzTransImpl;
    @Mock
    AuthzEnv authzEnvMock;
    AuthzTransImpl trans1;
    
    private Organization org=null;
    private AuthzTransImpl mockAuthzTransImpl;
    private static HttpServletRequest req;
    private static HttpServletResponse res;
    private Lur lur1 = mock(Lur.class);
    
    @Before
    public void setUp(){
        authzTransImpl = new AuthzTransImpl(authzEnvMock);
        req = mock(HttpServletRequest.class);
        authzTransImpl.set(req);
        when(req.getParameter("request")).thenReturn("NotNull");
        authzTransImpl.set(req);
        when(req.getParameter("request")).thenReturn("");
        authzTransImpl.set(req);    
    }
    
    @Test
    public void testOrg() {
        Organization result=null;
        result = authzTransImpl.org();
        OrganizationFactory test = mock(OrganizationFactory.class);
        //result = OrganizationFactory.obtain(authzTransImpl.env(), authzTransImpl.user());
        authzTransImpl.org();
        //when(test).thenReturn(null);
        //assertTrue(true);    
    }
    
    @Mock
    LogTarget logTargetMock;
    
    @Test
    public void testLogAuditTrail(){
        
        when(logTargetMock.isLoggable()).thenReturn(false);
        authzTransImpl.logAuditTrail(logTargetMock);
        when(logTargetMock.isLoggable()).thenReturn(true);
        Env delegate = mock(Env.class);
        //when(logTargetMock.isLoggable()).thenReturn(true);//TODO: Figure this out
        //authzTransImpl.logAuditTrail(logTargetMock);
    }
    
//    @Test                            //TODO:Fix this AAF-111
//    public void testSetUser() {
//        Principal user = mock(Principal.class);
//        authzTransImpl.setUser(user);
//        Principal user1 = authzTransImpl.getUserPrincipal();
//        String username = user1.getName();
//        Assert.assertNotNull(user1);
//    }
    
//    @Test                            //TODO:Fix this AAF-111
//    public void testUser() {
//        Assert.assertEquals("n/a", authzTransImpl.user());
//        Principal user = mock(Principal.class); //Unsure how to modify name
//        when(user.toString()).thenReturn("name");
//        when(user.getName()).thenReturn("name");
//        authzTransImpl.setUser(user);
//        Assert.assertEquals("name", authzTransImpl.user());
//    }
//    
    @Test
    public void testRequested() {
        REQD_TYPE user = REQD_TYPE.move;
        REQD_TYPE user1 = REQD_TYPE.future;
        HttpServletRequest req = mock(HttpServletRequest.class);
        String p = user1.name();
        boolean boolUser = authzTransImpl.requested(user);
        Assert.assertEquals(false, boolUser);
        Assert.assertNotNull(p);
        authzTransImpl.requested(user,true);
        when(authzTransImpl.requested(user)).thenReturn(null);
        Assert.assertEquals(true, authzTransImpl.requested(user));
    /*    String p1 = req.getParameter(user1.name());  //unable to access private method call in all instances
        when(req.getParameter(user1.name())).thenReturn("test");
        authzTransImpl.requested(user,false);
        */
        
        
    }
    
    @Test
    public void testFish() {
        mockAuthzTransImpl = mock(AuthzTransImpl.class);
        Permission p = mock(Permission.class);
        authzTransImpl.fish(p);
        String str = "Test";
        lur1.createPerm(str);
        when(p.match(p)).thenReturn(true);
        authzTransImpl.setLur(lur1);
        authzTransImpl.fish(p);
    }
    
    @Test
    public void testSetVariables() { //TODO: refactor this better
        Assert.assertNull(authzTransImpl.agent());
        Assert.assertNull(authzTransImpl.ip());
        Assert.assertNull(authzTransImpl.path());
        Assert.assertNotNull(authzTransImpl.port());
        Assert.assertNull(authzTransImpl.meth());
        Assert.assertNull(authzTransImpl.getUserPrincipal());
        Assert.assertNotNull(authzTransImpl.user());
    }
    
    @Test
    public void testNow() {
        Date date = authzTransImpl.now();
        Assert.assertEquals(date,authzTransImpl.now());
        when(authzTransImpl.now()).thenReturn(null);
    }
    
}