Merge "[AAI] Fix doc config files"
[aai/aai-common.git] / aai-els-onap-logging / src / test / java / org / onap / aai / logging / ErrorObjectNotFoundExceptionTest.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2018 AT&T 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 package org.onap.aai.logging;
22
23 import static org.junit.Assert.*;
24
25 import java.io.IOException;
26
27 import org.junit.Test;
28
29 public class ErrorObjectNotFoundExceptionTest {
30
31     @Test
32     public void defaultExceptionTest() {
33         ErrorObjectNotFoundException e = new ErrorObjectNotFoundException();
34         assertTrue(e instanceof Exception);
35     }
36
37     @Test
38     public void errorObjectNotFoundExceptionWithMessageTest() {
39         ErrorObjectNotFoundException e = new ErrorObjectNotFoundException("Error Message");
40         assertTrue(e instanceof Exception);
41         assertEquals("Error Message", e.getMessage());
42     }
43
44     @Test
45     public void errorObjectNotFoundExceptionWithCauseTest() {
46         ErrorObjectNotFoundException e = new ErrorObjectNotFoundException(new ArithmeticException());
47         assertTrue(e instanceof Exception);
48         assertTrue(e.getCause() instanceof ArithmeticException);
49     }
50
51     @Test
52     public void errorObjectNotFoundExceptionWithMsgCauseTest() {
53         ErrorObjectNotFoundException e = new ErrorObjectNotFoundException("Error Message", new ArithmeticException());
54         assertTrue(e instanceof Exception);
55         assertTrue(e.getCause() instanceof ArithmeticException);
56         assertEquals("Error Message", e.getMessage());
57     }
58
59     @Test
60     public void errorObjectNotFoundExceptionTest() {
61
62         ErrorObjectNotFoundException e =
63                 new ErrorObjectNotFoundException("Error Message", new ArithmeticException(), true, true);
64         assertTrue(e instanceof Exception);
65         assertTrue(e.getCause() instanceof ArithmeticException);
66         assertEquals("Error Message", e.getMessage());
67         e.addSuppressed(new IOException("Test IO Exception"));
68         assertTrue((e.getSuppressed())[0] instanceof IOException);
69         assertEquals("Test IO Exception", (e.getSuppressed())[0].getMessage());
70
71         ErrorObjectNotFoundException e1 =
72                 new ErrorObjectNotFoundException("Error Message", new ArithmeticException(), false, true);
73         e1.addSuppressed(new IOException("Test IO Exception"));
74         assertTrue((e1.getSuppressed() == null) || e1.getSuppressed().length == 0);
75
76     }
77
78     @Test
79     public void errorObjectNotFoundExceptionStackTraceTest() {
80
81         ErrorObjectNotFoundException e1 =
82                 new ErrorObjectNotFoundException("Error Message", new ArithmeticException(), true, true);
83         try {
84             throw e1;
85         } catch (ErrorObjectNotFoundException e) {
86             StackTraceElement[] stackTrace = e.getStackTrace();
87             assertNotNull(stackTrace);
88             assertTrue(stackTrace.length > 0);
89         }
90
91         ErrorObjectNotFoundException e2 =
92                 new ErrorObjectNotFoundException("Error Message", new ArithmeticException(), true, false);
93         try {
94             throw e2;
95         } catch (ErrorObjectNotFoundException e) {
96             StackTraceElement[] stackTrace = e.getStackTrace();
97             assertTrue(stackTrace == null || stackTrace.length == 0);
98         }
99
100     }
101     /*
102      * public ErrorObjectNotFoundException(String message, Throwable cause, boolean enableSuppression,
103      * boolean writableStackTrace) {
104      * super(message, cause, enableSuppression, writableStackTrace);
105      * // TODO Auto-generated constructor stub
106      * }
107      */
108 }