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