add few junits
[aaf/authz.git] / auth / auth-cass / src / test / java / org / onap / aaf / auth / direct / test / JU_DirectRegistrar.java
1 /**
2  * ============LICENSE_START====================================================
3  * org.onap.aaf
4  * ===========================================================================
5  * Copyright (c) 2018 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 package org.onap.aaf.auth.direct.test;
22
23 import static org.mockito.MockitoAnnotations.initMocks;
24
25 import org.junit.Before;
26 import org.junit.Test;
27 import org.junit.runner.RunWith;
28 import org.mockito.Mock;
29 import org.mockito.Mockito;
30 import org.mockito.runners.MockitoJUnitRunner;
31 import org.onap.aaf.auth.dao.cass.LocateDAO;
32 import org.onap.aaf.auth.dao.cass.LocateDAO.Data;
33 import org.onap.aaf.auth.direct.DirectRegistrar;
34 import org.onap.aaf.auth.env.AuthzEnv;
35 import org.onap.aaf.auth.env.AuthzTrans;
36 import org.onap.aaf.auth.layer.Result;
37 import org.onap.aaf.cadi.Access;
38 import org.onap.aaf.cadi.CadiException;
39 import org.onap.aaf.cadi.config.Config;
40
41
42 @RunWith(MockitoJUnitRunner.class) 
43 public class JU_DirectRegistrar {
44
45         @Mock
46         LocateDAO ldao;
47         
48 //      @Mock
49 //      Data locate;
50         
51         @Mock
52         Access access;
53         
54         @Mock
55         AuthzEnv env;
56         
57 //      @Mock
58         AuthzTrans trans;
59         
60         @Before
61         public void setUp() throws Exception {
62                 initMocks(this);
63         }
64         
65         @Test
66         public void testUpdate() {
67                 DirectRegistrar registrarObj=null;
68                 try {
69                         Mockito.doReturn("20").when(access).getProperty(Config.CADI_LATITUDE,null);
70                         Mockito.doReturn("20").when(access).getProperty(Config.CADI_LONGITUDE,null);
71                         Mockito.doReturn("20").when(access).getProperty(Config.AAF_LOCATOR_CONTAINER,"");
72                         registrarObj = new DirectRegistrar( access, ldao, 9080);
73                 } catch (CadiException e) {
74                         // TODO Auto-generated catch block
75                         e.printStackTrace();
76                 }
77                 org.onap.aaf.auth.layer.Result<Void> retVal1 = new Result<Void>(null,0,"test",new String[0]);
78                 Mockito.doReturn(trans).when(env).newTransNoAvg();
79 //              Mockito.doReturn(retVal1).when(ldao).update(trans,locate);
80                 registrarObj.update(env);
81 //              System.out.println(retVal1);
82         }
83         
84         
85         
86 }