80ce0ca498ad7d85d23a045f940dcee31cc53b22
[aaf/authz.git] / auth / auth-batch / src / test / java / org / onap / aaf / auth / actions / test / JU_ActionDAO.java
1 /**
2  * ============LICENSE_START====================================================
3  * org.onap.aaf
4  * ===========================================================================
5  * Copyright (c) 2018 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.actions.test;
23
24 import static org.junit.Assert.*;
25 import org.junit.After;
26 import org.junit.Before;
27 import org.junit.Test;
28 import org.mockito.Mock;
29 import org.mockito.Mockito;
30 import org.onap.aaf.auth.actions.ActionDAO;
31 import org.onap.aaf.auth.env.AuthzTrans;
32 import org.onap.aaf.auth.layer.Result;
33 import org.onap.aaf.misc.env.APIException;
34
35 import com.datastax.driver.core.Cluster;
36 import com.datastax.driver.core.Configuration;
37 import com.datastax.driver.core.Cluster.Initializer;
38 import com.datastax.driver.core.Host.StateListener;
39
40 import static org.mockito.Mockito.*;
41
42 import java.io.IOException;
43 import java.net.InetSocketAddress;
44 import java.util.Collection;
45 import java.util.List;
46
47 import org.junit.Test;
48
49 public class JU_ActionDAO {
50         
51         AuthzTrans aTrans;
52         Cluster cluster;
53         ActionDAOStub actionDAOStub;
54         ActionDAOStub actionDAOStub1;
55
56         private class ActionDAOStub extends ActionDAO {
57
58                 public ActionDAOStub(AuthzTrans trans, ActionDAO predecessor) {
59                         super(trans, predecessor);
60                         // TODO Auto-generated constructor stub
61                 }
62
63                 public ActionDAOStub(AuthzTrans trans, Cluster cluster, boolean dryRun) throws APIException, IOException {
64                         super(trans, cluster, dryRun);
65                         // TODO Auto-generated constructor stub
66                 }
67
68                 @Override
69                 public Result exec(AuthzTrans trans, Object data, Object t) {
70                         // TODO Auto-generated method stub
71                         return null;
72                 }
73                 
74         }
75         
76         @Before
77         public void setUp() throws APIException, IOException {
78 //              Cluster.Initializer cInit = mock(Cluster.Initializer.class);
79 //              Cluster.Builder cBuild = new Cluster.Builder();
80 //              cBuild.addContactPoint("test");
81 //              cBuild.build();
82 //              cluster.buildFrom(cBuild);
83 //              cluster.builder();
84 //              cluster.init();
85 //              cluster.builder().getContactPoints();
86                 
87
88                 
89 //              aTrans = mock(AuthzTrans.class);
90 //              cluster = mock(Cluster.class);
91 //              actionDAOStub = new ActionDAOStub(aTrans,cluster,true);
92 //              actionDAOStub1 = new ActionDAOStub(aTrans, actionDAOStub);
93         }
94
95 }