Changes for Checkstyle 8.32
[policy/models.git] / models-base / src / test / java / org / onap / policy / models / base / ExceptionsTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2019 Nordix Foundation.
4  *  Modifications Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
5  * ================================================================================
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *
18  * SPDX-License-Identifier: Apache-2.0
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.policy.models.base;
23
24 import static org.junit.Assert.assertEquals;
25 import static org.junit.Assert.assertNotNull;
26
27 import java.io.IOException;
28 import javax.ws.rs.core.Response;
29 import org.junit.Test;
30 import org.onap.policy.models.errors.concepts.ErrorResponse;
31
32 public class ExceptionsTest {
33
34     private static final String STRING_TEXT = "String";
35     private static final String MESSAGE = "Message";
36
37     @Test
38     public void test() {
39         assertNotNull(new PfModelException(Response.Status.OK, MESSAGE));
40         assertNotNull(new PfModelException(Response.Status.OK, MESSAGE, STRING_TEXT));
41         assertNotNull(new PfModelException(Response.Status.OK, MESSAGE, new IOException()));
42         assertNotNull(new PfModelException(Response.Status.OK, MESSAGE, new IOException(), STRING_TEXT));
43
44         String key = "A String";
45         PfModelException ae =
46                 new PfModelException(Response.Status.OK, MESSAGE, new IOException("IO exception message"), key);
47         ErrorResponse errorResponse = ae.getErrorResponse();
48         assertEquals("Message\nIO exception message", String.join("\n", errorResponse.getErrorDetails()));
49         assertEquals(key, ae.getObject());
50
51         assertNotNull(new PfModelRuntimeException(Response.Status.OK, MESSAGE));
52         assertNotNull(new PfModelRuntimeException(Response.Status.OK, MESSAGE, STRING_TEXT));
53         assertNotNull(new PfModelRuntimeException(Response.Status.OK, MESSAGE, new IOException()));
54         assertNotNull(new PfModelRuntimeException(Response.Status.OK, MESSAGE, new IOException(), STRING_TEXT));
55
56         String rkey = "A String";
57         PfModelRuntimeException re = new PfModelRuntimeException(Response.Status.OK, "Runtime Message",
58                 new IOException("IO runtime exception message"), rkey);
59         errorResponse = re.getErrorResponse();
60         assertEquals("Runtime Message\nIO runtime exception message",
61                 String.join("\n", errorResponse.getErrorDetails()));
62         assertEquals(key, re.getObject());
63     }
64 }