Merge "fixed sonar issue in RestMusicDataAPI"
[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.main.ResultType;
29 import org.onap.music.response.jsonobjects.JsonResponse;
30
31 public class JsonResponseTest {
32
33     JsonResponse result = null;
34     
35     @Test
36     public void testJsonResponseBooleanStringString() {
37         result = new JsonResponse(ResultType.SUCCESS).setError("error").setMusicVersion("version");
38         assertEquals("error",result.getError());
39     }
40
41     @Test
42     public void testStatus() {
43         result = new JsonResponse(ResultType.SUCCESS);
44         result.setStatus(ResultType.SUCCESS);
45         assertEquals(ResultType.SUCCESS, result.getStatus());
46         result = new JsonResponse(ResultType.FAILURE).setError("error").setMusicVersion("version");
47         assertEquals(ResultType.FAILURE, result.getStatus());
48     }
49
50     @Test
51     public void testError() {
52         result = new JsonResponse(ResultType.FAILURE);
53         result.setError("error");
54         assertTrue(result.getError().equals("error"));
55         result.setError("");
56         assertFalse(result.getError().equals("error"));
57     }
58
59     @Test
60     public void testVersion() {
61         result = new JsonResponse(ResultType.SUCCESS);
62         result.setMusicVersion("version");
63         assertTrue(result.getMusicVersion().equals("version"));
64         result.setMusicVersion("");
65         assertFalse(result.getMusicVersion().equals("version"));
66     }
67
68     @Test
69     public void testToMap() {
70         result = new JsonResponse(ResultType.SUCCESS).setError("error").setMusicVersion("1.0");
71         Map<String,Object> myMap = result.toMap();
72         assertTrue(myMap.containsKey("status"));
73         assertEquals(ResultType.SUCCESS, myMap.get("status"));
74         assertEquals("error", myMap.get("error"));
75         assertEquals("1.0", myMap.get("version"));
76         
77         result = new JsonResponse(ResultType.FAILURE);
78         myMap = result.toMap();
79         assertTrue(myMap.containsKey("status"));
80         assertEquals(ResultType.FAILURE, myMap.get("status"));
81     }
82
83 }