04f597f9b204ae68fc9db97213dba0c519caa5f4
[so.git] / adapters / mso-requests-db-adapter / src / test / java / org / onap / so / adapters / requestsdb / exceptions / MsoRequestsDbExceptionTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2018 TechMahindra
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 package org.onap.so.adapters.requestsdb.exceptions;
21
22 import org.junit.Assert;
23 import org.junit.Test;
24
25 public class MsoRequestsDbExceptionTest {
26     @Test
27     public void testConstructorWithMessaqge() throws Exception {
28         String message = "testing message";
29         MsoRequestsDbException msoRequestsDbException = new MsoRequestsDbException(message);
30         Assert.assertTrue(msoRequestsDbException.getCause() == null);
31         Assert.assertEquals(message, msoRequestsDbException.getLocalizedMessage());
32         Assert.assertEquals(message, msoRequestsDbException.getMessage());
33     }
34
35     @Test
36     public void testConstructorWithThrowable() throws Exception {
37         String message = "testing message";
38         Throwable throwable = new Throwable(message);
39         MsoRequestsDbException msoRequestsDbException = new MsoRequestsDbException(throwable);
40         Assert.assertEquals(throwable, msoRequestsDbException.getCause());
41         Assert.assertTrue(msoRequestsDbException.getLocalizedMessage().contains(message));
42         Assert.assertTrue(msoRequestsDbException.getMessage().contains(message));
43     }
44
45     @Test
46     public void testConstructorWithMessageAndThrowable() throws Exception {
47         String message = "testing message";
48         String tMessage = "throwable message";
49         Throwable throwable = new Throwable(tMessage);
50         MsoRequestsDbException msoRequestsDbException = new MsoRequestsDbException(message, throwable);
51         Assert.assertEquals(throwable, msoRequestsDbException.getCause());
52         Assert.assertTrue(msoRequestsDbException.getLocalizedMessage().contains(message));
53         Assert.assertTrue(msoRequestsDbException.getMessage().contains(message));
54     }
55
56     /* test method */
57     @Test
58     public void testGetFaultInfo() {
59         MsoRequestsDbExceptionBean faultInfo = new MsoRequestsDbExceptionBean();
60         MsoRequestsDbException soRequestsDbException = new MsoRequestsDbException("message");
61         soRequestsDbException.setFaultInfo(faultInfo);
62         Assert.assertNotNull(soRequestsDbException.getFaultInfo());
63         Assert.assertEquals(soRequestsDbException.getFaultInfo(), faultInfo);
64     }
65
66 }