a2e96f2e9b6e9d379eb380194b4617064c4320aa
[aaf/authz.git] / authz-cass / src / test / java / org / onap / aaf / dao / aaf / test / JU_CacheInfoDAO.java
1 /*******************************************************************************\r
2  * ============LICENSE_START====================================================\r
3  * * org.onap.aaf\r
4  * * ===========================================================================\r
5  * * Copyright © 2017 AT&T Intellectual Property. All rights reserved.\r
6  * * ===========================================================================\r
7  * * Licensed under the Apache License, Version 2.0 (the "License");\r
8  * * you may not use this file except in compliance with the License.\r
9  * * You may obtain a copy of the License at\r
10  * * \r
11  *  *      http://www.apache.org/licenses/LICENSE-2.0\r
12  * * \r
13  *  * Unless required by applicable law or agreed to in writing, software\r
14  * * distributed under the License is distributed on an "AS IS" BASIS,\r
15  * * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
16  * * See the License for the specific language governing permissions and\r
17  * * limitations under the License.\r
18  * * ============LICENSE_END====================================================\r
19  * *\r
20  * * ECOMP is a trademark and service mark of AT&T Intellectual Property.\r
21  * *\r
22  ******************************************************************************/\r
23 package org.onap.aaf.dao.aaf.test;\r
24 \r
25 import java.io.IOException;\r
26 import java.util.Date;\r
27 \r
28 import org.junit.Test;\r
29 import org.onap.aaf.authz.env.AuthzTrans;\r
30 import org.onap.aaf.authz.layer.Result;\r
31 import org.onap.aaf.dao.CIDAO;\r
32 import org.onap.aaf.dao.DAOException;\r
33 import org.onap.aaf.dao.aaf.cass.CacheInfoDAO;\r
34 import org.onap.aaf.dao.aaf.cass.RoleDAO;\r
35 import org.onap.aaf.dao.aaf.cass.Status;\r
36 \r
37 import org.onap.aaf.inno.env.APIException;\r
38 import org.onap.aaf.inno.env.util.Chrono;\r
39 \r
40 import junit.framework.Assert;\r
41 \r
42 \r
43 public class JU_CacheInfoDAO extends AbsJUCass {\r
44 \r
45         @Test\r
46         public void test() throws DAOException, APIException, IOException {\r
47                 CIDAO<AuthzTrans> id = new CacheInfoDAO(trans, cluster, AUTHZ);\r
48                 Date date  = new Date();\r
49                 \r
50                 id.touch(trans, RoleDAO.TABLE,1);\r
51                 try {\r
52                         Thread.sleep(3000);\r
53                 } catch (InterruptedException e) {\r
54                 }\r
55                 Result<Void> rid = id.check(trans);\r
56                 Assert.assertEquals(rid.status,Status.OK);\r
57                 Date[] dates = CacheInfoDAO.info.get(RoleDAO.TABLE);\r
58                 if(dates.length>0 && dates[1]!=null) {\r
59                         System.out.println(Chrono.dateStamp(dates[1]));\r
60                         System.out.println(Chrono.dateStamp(date));\r
61                         Assert.assertTrue(Math.abs(dates[1].getTime() - date.getTime())<20000); // allow for 4 seconds, given Remote DB\r
62                 }\r
63         }\r
64 \r
65 }\r