Sonar Fixes to increate Coverage on Unit tests
[music.git] / src / test / java / org / onap / music / unittests / jsonobjects / JsonDeleteTest.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 package org.onap.music.unittests.jsonobjects;
23
24 import static org.junit.Assert.*;
25 import java.util.ArrayList;
26 import java.util.HashMap;
27 import java.util.Map;
28 import org.junit.Before;
29 import org.junit.Test;
30 import org.onap.music.datastore.jsonobjects.JsonDelete;
31
32 public class JsonDeleteTest {
33     
34     JsonDelete jd = null;
35     
36     @Before
37     public void init() {
38         jd = new JsonDelete();
39     }
40     
41     
42     @Test
43     public void testGetConditions() {
44         Map<String,Object>  mapSo = new HashMap<>();
45         mapSo = new HashMap<>();
46         mapSo.put("key1","one");
47         mapSo.put("key2","two");
48         jd.setConditions(mapSo);
49         assertEquals("one",jd.getConditions().get("key1"));
50     }
51
52     @Test
53     public void testGetConsistencyInfo() {
54         Map<String,String>  mapSs = new HashMap<>();
55         mapSs = new HashMap<>();
56         mapSs.put("key3","three");
57         mapSs.put("key4","four");
58         jd.setConsistencyInfo(mapSs);
59         assertEquals("three",jd.getConsistencyInfo().get("key3"));
60     }
61
62     @Test
63     public void testGetColumns() {
64         ArrayList<String> ary = new ArrayList<>();
65         ary = new ArrayList<>();
66         ary.add("e1");
67         ary.add("e2");
68         ary.add("e3");
69         jd.setColumns(ary);
70         assertEquals("e1",jd.getColumns().get(0));
71     }
72
73     @Test
74     public void testGetTtl() {
75         jd.setTtl("2000");
76         assertEquals("2000",jd.getTtl());
77     }
78
79     @Test
80     public void testGetTimestamp() {
81         jd.setTimestamp("20:00");
82         assertEquals("20:00",jd.getTimestamp());
83
84     }
85
86 }