Sonar Fix: NotifyApprovals.java
[aaf/authz.git] / auth / auth-batch / src / test / java / org / onap / aaf / auth / batch / reports / bodies / JU_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 java.util.ArrayList;
26 import java.util.Collections;
27 import java.util.List;
28
29 import org.junit.Assert;
30 import org.junit.Test;
31 import org.onap.aaf.auth.batch.reports.Notify;
32 import org.onap.aaf.auth.env.AuthzTrans;
33
34 public class JU_AbsCredBodyTest {
35
36     @Test
37     public void testUserWithValue() {
38         List<String> row = new ArrayList<>();
39         row.add("test");
40         row.add("user");
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("user", absCredBody.user(row));
48     }
49
50     @Test
51     public void testUserWithoutValue() {
52         //String testStr = "test";
53         List<String> row = Collections.emptyList();
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 }