Junit test file for AbsCredBody.java
[aaf/authz.git] / auth / auth-batch / src / test / java / org / onap / aaf / auth / batch / reports / bodies / AbsCredBodyTest.java
1 /**
2  * ============LICENSE_START====================================================
3  * org.onap.aaf
4  * ===========================================================================
5  * Copyright (c) 2019 IBM 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
23 package org.onap.aaf.auth.batch.reports.bodies;
24
25 import org.junit.Assert;
26 import org.junit.Test;
27 import org.onap.aaf.auth.batch.reports.Notify;
28 import org.onap.aaf.auth.env.AuthzTrans;
29
30 import java.util.Collections;
31 import java.util.List;
32
33 import static org.junit.Assert.*;
34
35 public class AbsCredBodyTest {
36
37     @Test
38     public void testUserWithValue() {
39         String testStr = "test";
40         List<String> row = Collections.singletonList(testStr);
41         AbsCredBody absCredBody = new AbsCredBody("") {
42             @Override
43             public String body(AuthzTrans trans, Notify n, String id) {
44                 return null;
45             }
46         };
47         Assert.assertEquals(testStr, absCredBody.user(row));
48     }
49
50     @Test
51     public void testUserWithoutValue() {
52         //String testStr = "test";
53         List<String> row = Collections.EMPTY_LIST;
54         AbsCredBody absCredBody = new AbsCredBody("") {
55             @Override
56             public String body(AuthzTrans trans, Notify n, String id) {
57                 return null;
58             }
59         };
60         Assert.assertNull(absCredBody.user(row));
61     }
62 }