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