55e5965e700f84ccadc575054acbbfafa619a940
[music.git] / src / test / java / org / onap / music / unittests / JsonResponseTest.java
1 /*
2  * ============LICENSE_START==========================================
3  * org.onap.music
4  * ===================================================================
5  *  Copyright (c) 2017 AT&T Intellectual Property
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  * 
19  * ============LICENSE_END=============================================
20  * ====================================================================
21  */
22
23 package org.onap.music.unittests;
24
25 import static org.junit.Assert.*;
26 import java.util.Map;
27 import org.junit.Test;
28 import org.onap.music.response.jsonobjects.JsonResponse;
29
30 public class JsonResponseTest {
31
32     JsonResponse result = null;
33     
34     @Test
35     public void testJsonResponseBooleanStringString() {
36         result = new JsonResponse(true,"error","version");
37         assertEquals("error",result.getError());
38     }
39
40     @Test
41     public void testJsonResponse() {
42         result = new JsonResponse();
43         assertFalse(result.getStatus());
44     }
45
46     @Test
47     public void testStatus() {
48         result = new JsonResponse();
49         result.setStatus(true);
50         assertTrue(result.getStatus());
51         result = new JsonResponse(false,"error","version");
52         assertFalse(result.getStatus());
53     }
54
55     @Test
56     public void testError() {
57         result = new JsonResponse();
58         result.setError("error");
59         assertTrue(result.getError().equals("error"));
60         result.setError("");
61         assertFalse(result.getError().equals("error"));
62     }
63
64     @Test
65     public void testVersion() {
66         result = new JsonResponse();
67         result.setVersion("version");
68         assertTrue(result.getVersion().equals("version"));
69         result.setVersion("");
70         assertFalse(result.getVersion().equals("version"));
71     }
72
73     @Test
74     public void testToMap() {
75         result = new JsonResponse(true,"error","version");
76         Map<String,Object> myMap = result.toMap();
77         assertTrue(myMap.containsKey("status"));
78         result = new JsonResponse(false,"","");
79         myMap = result.toMap();
80         assertTrue(myMap.containsKey("status"));
81     }
82
83 }