AT&T 2.0.19 Code drop, stage 3
[aaf/authz.git] / auth / auth-cass / src / test / java / com / att / dao / aaf / test / JU_HistoryDAO.java
diff --git a/auth/auth-cass/src/test/java/com/att/dao/aaf/test/JU_HistoryDAO.java b/auth/auth-cass/src/test/java/com/att/dao/aaf/test/JU_HistoryDAO.java
new file mode 100644 (file)
index 0000000..11d8835
--- /dev/null
@@ -0,0 +1,153 @@
+/**
+ * ============LICENSE_START====================================================
+ * org.onap.aaf
+ * ===========================================================================
+ * Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.
+ * ===========================================================================
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * 
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * ============LICENSE_END====================================================
+ *
+ */
+
+package com.att.dao.aaf.test;
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertNotNull;
+import static org.junit.Assert.assertTrue;
+
+import java.nio.ByteBuffer;
+import java.security.SecureRandom;
+import java.util.List;
+
+import org.junit.Test;
+import org.onap.aaf.auth.dao.cass.HistoryDAO;
+import org.onap.aaf.auth.layer.Result;
+
+public class JU_HistoryDAO  extends AbsJUCass {
+       
+       @Test
+       public void testCreate() throws Exception {
+               HistoryDAO historyDAO = new HistoryDAO(trans, cluster, AUTHZ);
+               HistoryDAO.Data data = createHistoryData();
+               
+               try {
+                       historyDAO.create(trans,data);                  
+                       Thread.sleep(200);// History Create is Async
+                       Result<List<HistoryDAO.Data>> records = historyDAO.readByUser(trans,data.user,data.yr_mon);
+                       assertTrue(records.isOKhasData());
+                       for(HistoryDAO.Data d : records.value) {
+                               assertHistory(data, d);
+                       }
+               } finally {
+                       historyDAO.close(trans);
+               }
+       }
+       
+       @Test
+       public void tesReadByUser() throws Exception {
+               HistoryDAO historyDAO = new HistoryDAO(trans,cluster, AUTHZ);
+               HistoryDAO.Data data = createHistoryData();
+               
+               try {
+                       historyDAO.create(trans,data);
+                       Thread.sleep(200);// History Create is Async
+                       Result<List<HistoryDAO.Data>> records = historyDAO.readByUser(trans, data.user,data.yr_mon);
+                       assertTrue(records.isOKhasData());
+                       for(HistoryDAO.Data d : records.value) {
+                               assertHistory(data, d);
+                       }
+               } finally {
+                       historyDAO.close(trans);
+               }
+       }
+       
+/*
+       @Test
+       public void readByUserAndMonth() throws Exception {
+               HistoryDAO historyDAO = new HistoryDAO(trans,cluster, AUTHZ);
+               HistoryDAO.Data data = createHistoryData();
+               
+               try {
+                       historyDAO.create(trans,data);                  
+                       Thread.sleep(200);// History Create is Async
+                       Result<List<HistoryDAO.Data>> records = historyDAO.readByUserAndMonth(trans,
+                                       data.user, Integer.valueOf(String.valueOf(data.yr_mon).substring(0, 4)),
+                                       Integer.valueOf(String.valueOf(data.yr_mon).substring(4, 6)));
+                       assertTrue(records.isOKhasData());
+                       for(HistoryDAO.Data d : records.value) {
+                               assertHistory(data, d);
+                       }
+               } finally {
+                       historyDAO.close(trans);
+               }
+       }
+*/     
+       //TODO readadd this
+//     @Test
+//     public void readByUserAndDay() throws Exception {
+//             HistoryDAO historyDAO = new HistoryDAO(trans, cluster, AUTHZ);
+//             HistoryDAO.Data data = createHistoryData();
+//             
+//             try {
+//                     historyDAO.create(trans, data);         
+//                     Thread.sleep(200);// History Create is Async
+//                     
+//                     String dayTime = String.valueOf(data.day_time);
+//                     String day = null;
+//                     if (dayTime.length() < 8)
+//                             day = dayTime.substring(0, 1);
+//                     else 
+//                             day = dayTime.substring(0, 2);
+//                     
+//                     List<HistoryDAO.Data> records = historyDAO.readByUserBetweenDates(trans,
+//                                                     data.user, Integer.valueOf(String.valueOf(data.yr_mon).substring(0, 4)),
+//                                                     Integer.valueOf(String.valueOf(data.yr_mon).substring(4, 6)),
+//                                                     Integer.valueOf(day), 0);
+//                     assertEquals(1,records.size());
+//                     for(HistoryDAO.Data d : records) {
+//                             assertHistory(data, d);
+//                     }
+//             } finally {
+//                     historyDAO.close(trans);
+//             }
+//     }
+       private HistoryDAO.Data createHistoryData() {
+               HistoryDAO.Data data = HistoryDAO.newInitedData();
+               SecureRandom random = new SecureRandom();
+               data.user = "test" + random.nextInt();
+               data.action = "add";
+               data.target = "history";
+               data.memo = "adding a row into history table";
+//             data.detail().put("id", "test");
+//             data.detail().put("name", "test");
+               //String temp = "Test Blob Message";
+               data.reconstruct = ByteBuffer.wrap("Temp Blob Message".getBytes());             
+               return data;
+       }
+       
+       private void assertHistory(HistoryDAO.Data ip, HistoryDAO.Data op) {
+               assertEquals(ip.yr_mon, op.yr_mon);             
+//             assertEquals(ip.day_time, op.day_time);         
+               assertEquals(ip.user, op.user);         
+               assertEquals(ip.action, op.action);
+               assertEquals(ip.target, op.target);
+               assertEquals(ip.memo, op.memo);
+               //TODO : have to see if third party assert utility can be used
+//             assertTrue(CollectionUtils.isEqualCollection(ip.detail, op.detail));
+//             for (String key : ip.detail().keySet()) {
+//                     assertNotNull(op.detail().get(key));
+//             }
+               assertNotNull(op.reconstruct);
+       }
+       
+}