5124a5069df78267fc726cc18c5fca50aab1521c
[aaf/authz.git] / auth / auth-core / src / test / java / org / onap / aaf / auth / org / test / JU_OrganizationFactory.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
23 package org.onap.aaf.auth.org.test;
24
25 import org.junit.Before;
26 import org.junit.Test;
27 import org.junit.runner.RunWith;
28 import org.mockito.Mock;
29 import static org.mockito.Mockito.mock;
30 import org.onap.aaf.auth.env.AuthzEnv;
31 import org.onap.aaf.auth.env.AuthzTrans;
32 import org.onap.aaf.auth.org.OrganizationException;
33 import org.onap.aaf.auth.org.OrganizationFactory;
34 import org.onap.aaf.misc.env.APIException;
35 import org.onap.aaf.misc.env.impl.BasicEnv;
36 import org.powermock.api.mockito.PowerMockito;
37 import org.powermock.modules.junit4.PowerMockRunner;
38
39 @RunWith(PowerMockRunner.class)
40 public class JU_OrganizationFactory {
41     private static final String ORG_SLOT = null;
42     OrganizationFactory organizationFactory;
43     BasicEnv bEnv;
44     @Mock
45     AuthzEnv authzEnvMock;
46     String orgClass="orgclass";
47     String orgNS="orgns";
48     @Before
49     public void setUp(){
50         organizationFactory = new OrganizationFactory();
51         bEnv = new BasicEnv();
52     }
53
54     @SuppressWarnings("static-access")
55     @Test
56     public void testInit() throws OrganizationException {
57         organizationFactory.init(bEnv);
58     }
59
60     @SuppressWarnings("static-access")                //TODO:Fix this once real input is available AAF-111
61     @Test
62     public void testObtain() throws OrganizationException{
63         PowerMockito.when(authzEnvMock.getProperty("Organization."+orgNS)).thenReturn("notnull");
64         //organizationFactory.obtain(authzEnvMock, orgNS);
65     }
66
67     @Test
68     public void testGet() throws OrganizationException {  //TODO: Fix with when then return on fail
69         AuthzTrans trans = mock(AuthzTrans.class);
70         //organizationFactory.get(trans);
71     }
72 }