Sonar Fixes, Formatting
[aaf/authz.git] / auth / auth-cass / src / test / java / org / onap / aaf / auth / dao / JU_CassAccess.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.io.IOException;
28 import java.util.ArrayList;
29 import java.util.List;
30
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.CassAccess;
36 import org.onap.aaf.misc.env.APIException;
37 import org.onap.aaf.misc.env.Env;
38 import org.powermock.modules.junit4.PowerMockRunner;
39
40 //import org.onap.aaf.auth.dao.CassAccess.Resettable;
41 import com.datastax.driver.core.Cluster.Builder;
42
43 @RunWith(PowerMockRunner.class)
44 public class JU_CassAccess {
45     CassAccess cassAccess;
46
47     public static final String KEYSPACE = "authz";
48     public static final String CASSANDRA_CLUSTERS = "cassandra.clusters";
49     public static final String CASSANDRA_CLUSTERS_PORT = "cassandra.clusters.port";
50     public static final String CASSANDRA_CLUSTERS_USER_NAME = "cassandra.clusters.user";
51     public static final String CASSANDRA_CLUSTERS_PASSWORD = "cassandra.clusters.password";
52     public static final String CASSANDRA_RESET_EXCEPTIONS = "cassandra.reset.exceptions";
53     public static final String LATITUDE = "LATITUDE";
54     public static final String LONGITUDE = "LONGITUDE";
55     //private static final List<Resettable> resetExceptions = new ArrayList<>();
56     public static final String ERR_ACCESS_MSG = "Accessing Backend";
57     private static Builder cb = null;
58     @Mock
59     Env envMock;
60     String prefix=null;
61
62     @Before
63     public void setUp(){
64         cassAccess = new CassAccess();
65     }
66
67 //
68 //    @Test(expected=APIException.class)
69 //    public void testCluster() throws APIException, IOException {
70 ////        cassAccess.cluster(envMock, prefix);
71 //
72 //    }
73
74 }