AT&T 2.0.19 Code drop, stage 3
[aaf/authz.git] / authz-core / src / test / java / org / onap / aaf / authz / env / JU_AuthzTransFilter.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.authz.env;\r
24 \r
25 import static org.junit.Assert.*;\r
26 \r
27 import org.junit.Before;\r
28 import org.junit.Test;\r
29 import org.junit.runner.RunWith;\r
30 import org.mockito.Mock;\r
31 import org.onap.aaf.authz.env.AuthzEnv;\r
32 import org.onap.aaf.authz.env.AuthzTrans;\r
33 import org.onap.aaf.authz.env.AuthzTransFilter;\r
34 import org.powermock.api.mockito.PowerMockito;\r
35 import org.powermock.modules.junit4.PowerMockRunner;\r
36 \r
37 import org.onap.aaf.cadi.CadiException;\r
38 import org.onap.aaf.cadi.Connector;\r
39 import org.onap.aaf.cadi.TrustChecker;\r
40 \r
41 @RunWith(PowerMockRunner.class)  \r
42 public class JU_AuthzTransFilter {\r
43 AuthzTransFilter authzTransFilter;\r
44 @Mock\r
45 AuthzEnv authzEnvMock;\r
46 @Mock\r
47 Connector connectorMock;\r
48 @Mock\r
49 TrustChecker trustCheckerMock;\r
50 @Mock\r
51 AuthzTrans authzTransMock;\r
52 Object additionalTafLurs;\r
53         \r
54         @Before\r
55         public void setUp(){\r
56                 try {\r
57                         authzTransFilter = new AuthzTransFilter(authzEnvMock, connectorMock, trustCheckerMock, additionalTafLurs);\r
58                 } catch (CadiException e) {\r
59                         // TODO Auto-generated catch block\r
60                         e.printStackTrace();\r
61                 }\r
62         }\r
63         \r
64         @Test\r
65         public void test()\r
66         {\r
67                 //authzTransFilter.newTrans();\r
68                 assertTrue(true);\r
69         }\r
70         \r
71         @Test\r
72         public void testTallyHo(){\r
73                 PowerMockito.when(authzTransMock.info().isLoggable()).thenReturn(true);\r
74                 //if(trans.info().isLoggable())\r
75                 authzTransFilter.tallyHo(authzTransMock);\r
76                 \r
77         }\r
78         \r
79         \r
80 //      AuthzTrans at = env.newTrans();\r
81 //      at.setLur(getLur());\r
82 //      return at\r
83 }\r