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