Mass removal of all Tabs (Style Warnings)
[aaf/authz.git] / auth / auth-cass / src / test / java / org / onap / aaf / auth / dao / JU_CassDAOImpl.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 org.junit.Before;
27 import org.junit.Test;
28 import org.junit.runner.RunWith;
29 import org.mockito.Mock;
30 import org.onap.aaf.auth.dao.CassDAOImpl;
31 import org.onap.aaf.auth.dao.Loader;
32 import org.onap.aaf.auth.env.AuthzTrans;
33 import org.onap.aaf.misc.env.Data;
34 import org.onap.aaf.misc.env.Trans;
35 import org.onap.aaf.misc.env.TransStore;
36 import org.powermock.api.mockito.PowerMockito;
37 import org.powermock.modules.junit4.PowerMockRunner;
38
39 import com.datastax.driver.core.Cluster;
40 import com.datastax.driver.core.ConsistencyLevel;
41
42 @RunWith(PowerMockRunner.class)
43 public class JU_CassDAOImpl {
44
45 public static final String CASS_READ_CONSISTENCY="cassandra.readConsistency";
46 public static final String CASS_WRITE_CONSISTENCY="cassandra.writeConsistency";
47
48 CassDAOImpl cassDAOImpl;
49
50
51 @Mock
52 TransStore transStoreMock;
53 @SuppressWarnings("rawtypes")
54 Class dcMock;
55 @SuppressWarnings("rawtypes")
56 Loader loaderMock;
57 Cluster clusterMock;
58 Class<Data> classDataMock;
59 ConsistencyLevel consistencyLevelMock;
60 Trans transMock;
61
62 @Mock
63 AuthzTrans authzTransMock;
64
65
66
67     @SuppressWarnings({ "rawtypes", "unchecked" })
68     @Before
69     public void setUp()
70     {
71         String name = "name";
72         String keySpace = "keySpace";
73         String table = "table";
74         cassDAOImpl = new CassDAOImpl(transStoreMock, name, clusterMock, keySpace, classDataMock, table, consistencyLevelMock, consistencyLevelMock);
75     }
76
77     //TODO: Gabe [JUnit] Visibility issue
78     @Test 
79     public void testReadConsistency() {
80         String table = "users";
81         PowerMockito.when(authzTransMock.getProperty(CASS_READ_CONSISTENCY+'.'+table)).thenReturn("TWO");
82         ConsistencyLevel consistencyLevel = cassDAOImpl.readConsistency(authzTransMock, table);
83         System.out.println("Consistency level" + consistencyLevel.name());
84         assertEquals("TWO", consistencyLevel.name());
85     }
86     
87     @Test 
88     public void testWriteConsistency() {
89         String table = "users";
90         PowerMockito.when(authzTransMock.getProperty(CASS_WRITE_CONSISTENCY+'.'+table)).thenReturn(null);
91         ConsistencyLevel consistencyLevel = cassDAOImpl.writeConsistency(authzTransMock, table);
92         System.out.println("Consistency level" + consistencyLevel.name());
93         assertEquals("ONE", consistencyLevel.name());
94     }
95     
96 }