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