AT&T 2.0.19 Code drop, stage 3
[aaf/authz.git] / auth / auth-cass / src / test / java / org / onap / aaf / auth / dao / JU_CachedDAO.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.dao;
23
24 import static org.junit.Assert.*;
25
26 import java.util.ArrayList;
27 import java.util.List;
28
29 import org.junit.Assert;
30 import org.junit.Before;
31 import org.junit.Test;
32 import org.junit.runner.RunWith;
33 import org.mockito.Mock;
34 import org.onap.aaf.auth.dao.CIDAO;
35 import org.onap.aaf.auth.dao.CachedDAO;
36 import org.onap.aaf.auth.dao.DAO;
37 import org.onap.aaf.misc.env.Trans;
38 import org.powermock.modules.junit4.PowerMockRunner;
39
40 @RunWith(PowerMockRunner.class)
41 public class JU_CachedDAO {
42         CachedDAO cachedDAO;
43         @Mock
44         DAO daoMock;
45         @Mock
46         CIDAO<Trans> ciDAOMock; 
47         int segsize=1;
48         Object[ ] objs = new Object[2];
49         
50         @Before
51         public void setUp(){
52                 objs[0] = "helo";
53                 objs[1] = "polo";
54                 cachedDAO = new CachedDAO(daoMock, ciDAOMock, segsize, segsize);
55         }
56                 
57         @Test
58         public void testKeyFromObjs(){
59                 String result = cachedDAO.keyFromObjs(objs);
60                 System.out.println("value of resut " +result);
61                 assertTrue(true);
62         }
63         
64 }