Merge "Add internal classes to models-pdp"
[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
32 public class ExceptionsTest {
33
34     @Test
35     public void test() {
36         assertNotNull(new PfModelException(Response.Status.OK, "Message"));
37         assertNotNull(new PfModelException(Response.Status.OK, "Message", "String"));
38         assertNotNull(new PfModelException(Response.Status.OK, "Message", new IOException()));
39         assertNotNull(new PfModelException(Response.Status.OK, "Message", new IOException(), "String"));
40
41         String key = "A String";
42         PfModelException ae =
43                 new PfModelException(Response.Status.OK, "Message", new IOException("IO exception message"), key);
44         assertEquals("Message\ncaused by: Message\ncaused by: IO exception message", ae.getCascadedMessage());
45         assertEquals(key, ae.getObject());
46
47         assertNotNull(new PfModelRuntimeException(Response.Status.OK, "Message"));
48         assertNotNull(new PfModelRuntimeException(Response.Status.OK, "Message", "String"));
49         assertNotNull(new PfModelRuntimeException(Response.Status.OK, "Message", new IOException()));
50         assertNotNull(new PfModelRuntimeException(Response.Status.OK, "Message", new IOException(), "String"));
51
52         String rkey = "A String";
53         PfModelRuntimeException re = new PfModelRuntimeException(Response.Status.OK, "Runtime Message",
54                 new IOException("IO runtime exception message"), rkey);
55         assertEquals("Runtime Message\ncaused by: Runtime Message\ncaused by: IO runtime exception message",
56                 re.getCascadedMessage());
57         assertEquals(key, re.getObject());
58     }
59 }