Update Batch from Testing
[aaf/authz.git] / auth / auth-batch / src / test / java / org / onap / aaf / auth / batch / actions / test / JU_URFuturePrintTest.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 package org.onap.aaf.auth.batch.actions.test;
22
23 import static org.junit.Assert.assertEquals;
24 import static org.mockito.Mockito.when;
25 import static org.mockito.MockitoAnnotations.initMocks;
26
27 import java.util.Calendar;
28
29 import org.junit.Before;
30 import org.junit.Test;
31 import org.mockito.Mock;
32 import org.onap.aaf.auth.batch.actions.URFuturePrint;
33 import org.onap.aaf.auth.batch.helpers.UserRole;
34 import org.onap.aaf.auth.env.AuthzTrans;
35 import org.onap.aaf.auth.layer.Result;
36 import org.onap.aaf.misc.env.LogTarget;
37
38 public class JU_URFuturePrintTest {
39         @Mock
40         private AuthzTrans trans;
41         @Mock
42         LogTarget target;
43
44         @Before
45         public void setUp() throws Exception {
46                 initMocks(this);
47                 when(trans.info()).thenReturn(target);
48         }
49
50         @Test
51         public void testURFuturePrint() {
52                 URFuturePrint print = new URFuturePrint("Info Text");
53                 UserRole ur = new UserRole("user", "ns", "rname", Calendar.getInstance().getTime());
54                 assertEquals(Result.ok().status, print.exec(trans, ur, "text").status);
55         }
56
57 }