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